Makefile 285 Bytes
Newer Older
Michael Shigorin's avatar
Michael Shigorin committed
1 2 3
# step 3: copy package lists and groups referenced in distro configuration
#         (and only those!) over to $(BUILDDIR)

4 5 6 7
ifndef BUILDDIR
$(error BUILDDIR not defined)
endif

8
# sequential execution, no reason to haste
Michael Shigorin's avatar
Michael Shigorin committed
9
all:
10 11
	@for dir in lists groups; do \
		$(MAKE) -C $$dir; \
12
	done