From 834241eb737720ba7ec1a15f81bc29ace5fdb12c Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 28 Nov 2010 17:25:36 +0100 Subject: finetune bulk targets --- mk/build.mk | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'mk') 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; \ -- cgit v1.2.3