mkimage-profiles/pkg.in/Makefile
Michael Shigorin eaa41979b1 pkg.in: mention profiles as well
The comment was incomplete since commit
1f13b3a039.
2018-06-25 09:55:13 +03:00

14 lines
345 B
Makefile

# 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