a9e161b40d
Also included: - reworked syslinux feature inclusion - syslinux: s/textprompt/prompt/ - README++
14 lines
305 B
Makefile
14 lines
305 B
Makefile
# copy package lists referenced in distro configuration
|
|
# over to build dir
|
|
|
|
include $(BUILDDIR)/.config.mk
|
|
|
|
all: debug
|
|
@[ -n "$(GROUPS)" ] && { \
|
|
mkdir -p $(BUILDDIR)/pkg/groups && \
|
|
cp -at $(BUILDDIR)/pkg/groups/ -- $(addsuffix .directory,$(GROUPS)); \
|
|
} ||:
|
|
|
|
debug:
|
|
@echo "** GROUPS: $(GROUPS)"
|