You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
345 B
14 lines
345 B
3 years ago
|
# step 3: copy package lists and groups as well as installation profiles
|
||
|
# referenced in distro configuration (and only those!)
|
||
|
# over to $(BUILDDIR)
|
||
|
|
||
|
ifndef BUILDDIR
|
||
|
$(error BUILDDIR not defined)
|
||
|
endif
|
||
|
|
||
|
# sequential execution, no reason to haste
|
||
|
all:
|
||
|
@for dir in lists groups profiles; do \
|
||
|
$(MAKE) -C $$dir || exit; \
|
||
|
done
|