summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-28 17:25:36 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-28 17:25:36 +0100
commit834241eb737720ba7ec1a15f81bc29ace5fdb12c (patch)
tree4c6a04e6d038b9417dc7766ba12453fd7107c3f3 /mk
parentdb40ed98b297d0550c6971b096c87bf0debf59b1 (diff)
finetune bulk targets
Diffstat (limited to 'mk')
-rw-r--r--mk/build.mk18
1 files changed, 9 insertions, 9 deletions
diff --git a/mk/build.mk b/mk/build.mk
index 5e3ef8173..0569a4570 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -460,12 +460,12 @@ endif # ! ifeq ($(strip $(ADK_HAVE_DOT_CONFIG)),y)
# build all targets and combinations
bulk:
- @while read target libc fs; do \
+ @while read target libc fs hw; do \
mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \
( \
- echo === building $$target $$libc $$fs on $$(date); \
+ echo === building $$target $$hw $$libc $$fs on $$(date); \
$(GMAKE) prereq && \
- $(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs defconfig; \
+ $(GMAKE) TARGET=$$target HW=$$hw LIBC=$$libc FS=$$fs defconfig; \
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit;fi; \
rm .config; \
) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \
@@ -473,12 +473,12 @@ bulk:
done <${TOPDIR}/target/bulkdef.lst
bulkall:
- @while read target libc fs; do \
+ @while read target libc fs hw; do \
mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \
( \
- echo === building $$target $$libc $$fs on $$(date); \
+ echo === building $$target $$hw $$libc $$fs on $$(date); \
$(GMAKE) prereq && \
- $(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allconfig; \
+ $(GMAKE) TARGET=$$target HW=$$hw LIBC=$$libc FS=$$fs allconfig; \
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit;fi; \
rm .config; \
) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \
@@ -486,12 +486,12 @@ bulkall:
done <${TOPDIR}/target/bulk.lst
bulkallmod:
- @while read target libc fs; do \
+ @while read target libc fs hw; do \
mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \
( \
- echo === building $$target $$libc $$fs on $$(date); \
+ echo === building $$target $$hw $$libc $$fs on $$(date); \
$(GMAKE) prereq && \
- $(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allmodconfig; \
+ $(GMAKE) TARGET=$$target HW=$$hw LIBC=$$libc FS=$$fs allmodconfig; \
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit;fi; \
rm .config; \
) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \