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

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

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