c2f70e5c10
- image.in/functions.mk: rework kpackage() + it takes two arguments explicitly now: this adds some noise for "generic" invocations but is rather less messy with recently introduced STAGE1_KFLAVOUR (which in its turn is rather cleaner than messing with KFLAVOURS, especially since soemthing changed in presumably apt and we can't rely on kernel packages being installed in the order formed). - BUILDDIR/DEBUG related fixes + Makefile: BUILDDIR initialization moved to distro.mk - build.log += git info
26 lines
511 B
Makefile
26 lines
511 B
Makefile
# step 3: copy the needed subprofiles to $(BUILDDIR)
|
|
|
|
ifndef BUILDDIR
|
|
$(error BUILDDIR not defined)
|
|
endif
|
|
|
|
include $(BUILDDIR)/distcfg.mk
|
|
|
|
all:
|
|
@for dir in $(SUBPROFILES); do \
|
|
rsync -a $$dir/ $(BUILDDIR)/$$dir/ && \
|
|
type -t git >&/dev/null && \
|
|
cd $(BUILDDIR)/$$dir/ && \
|
|
git add . && \
|
|
git commit -qam "$@/$$dir"; \
|
|
cd - >&/dev/null; \
|
|
done ||:
|
|
|
|
clean:
|
|
@for dir in $(SUBPROFILES); do \
|
|
if [ -n "$$dir" ]; then \
|
|
rm -rf $(BUILDDIR)/$$dir && \
|
|
mkdir -p $(BUILDDIR)/$$dir; \
|
|
fi; \
|
|
done
|