summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-21 10:15:53 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-21 10:15:53 +0100
commit08c3724108f33060956438bff670ee1135f473b1 (patch)
tree349ab0db303777b1cf2346d55a90364318e3b96d /mk
parent6ef4e0a6d3454a9d9ca955ddad78d9d51a7305c7 (diff)
use TARGET_CROSS, minor indentation fixes
Diffstat (limited to 'mk')
-rw-r--r--mk/build.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/mk/build.mk b/mk/build.mk
index f6e438508..879bdc04b 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -415,38 +415,38 @@ endif # ! ifeq ($(strip $(ADK_HAVE_DOT_CONFIG)),y)
# build all targets and combinations
bulk:
while read target libc fs; do \
- mkdir -p $(TOPDIR)/bin/$$target_$$libc; \
+ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \
( \
echo === building $$target $$libc $$fs on $$(date); \
$(GMAKE) prereq && \
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs defconfig; \
$(GMAKE) VERBOSE=1 all; \
rm .config; \
- ) 2>&1 | tee $(TOPDIR)/bin/$$target_$$libc/$$target-$$libc-$$fs.log; \
+ ) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \
done <${TOPDIR}/target/bulk.lst
bulkall:
while read target libc fs; do \
- mkdir -p $(TOPDIR)/bin/$$target_$$libc; \
+ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \
( \
echo === building $$target $$libc $$fs on $$(date); \
$(GMAKE) prereq && \
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allconfig; \
$(GMAKE) VERBOSE=1 all; \
rm .config; \
- ) 2>&1 | tee $(TOPDIR)/bin/$$target_$$libc/$$target-$$libc-$$fs.log; \
+ ) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \
done <${TOPDIR}/target/bulk.lst
bulkallmod:
while read target libc fs; do \
- mkdir -p $(TOPDIR)/bin/$$target_$$libc; \
+ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \
( \
echo === building $$target $$libc $$fs on $$(date); \
$(GMAKE) prereq && \
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allmodconfig; \
$(GMAKE) VERBOSE=1 all; \
rm .config; \
- ) 2>&1 | tee $(TOPDIR)/bin/$$target_$$libc/$$target-$$libc-$$fs.log; \
+ ) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \
done <${TOPDIR}/target/bulk.lst
menu .menu: $(wildcard ${TOPDIR}/package/*/Makefile)