|
@@ -415,38 +415,38 @@ endif # ! ifeq ($(strip $(ADK_HAVE_DOT_CONFIG)),y)
|
|
# build all targets and combinations
|
|
# build all targets and combinations
|
|
bulk:
|
|
bulk:
|
|
while read target libc fs; do \
|
|
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); \
|
|
echo === building $$target $$libc $$fs on $$(date); \
|
|
$(GMAKE) prereq && \
|
|
$(GMAKE) prereq && \
|
|
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs defconfig; \
|
|
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs defconfig; \
|
|
$(GMAKE) VERBOSE=1 all; \
|
|
$(GMAKE) VERBOSE=1 all; \
|
|
rm .config; \
|
|
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
|
|
done <${TOPDIR}/target/bulk.lst
|
|
|
|
|
|
bulkall:
|
|
bulkall:
|
|
while read target libc fs; do \
|
|
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); \
|
|
echo === building $$target $$libc $$fs on $$(date); \
|
|
$(GMAKE) prereq && \
|
|
$(GMAKE) prereq && \
|
|
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allconfig; \
|
|
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allconfig; \
|
|
$(GMAKE) VERBOSE=1 all; \
|
|
$(GMAKE) VERBOSE=1 all; \
|
|
rm .config; \
|
|
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
|
|
done <${TOPDIR}/target/bulk.lst
|
|
|
|
|
|
bulkallmod:
|
|
bulkallmod:
|
|
while read target libc fs; do \
|
|
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); \
|
|
echo === building $$target $$libc $$fs on $$(date); \
|
|
$(GMAKE) prereq && \
|
|
$(GMAKE) prereq && \
|
|
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allmodconfig; \
|
|
$(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allmodconfig; \
|
|
$(GMAKE) VERBOSE=1 all; \
|
|
$(GMAKE) VERBOSE=1 all; \
|
|
rm .config; \
|
|
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
|
|
done <${TOPDIR}/target/bulk.lst
|
|
|
|
|
|
menu .menu: $(wildcard ${TOPDIR}/package/*/Makefile)
|
|
menu .menu: $(wildcard ${TOPDIR}/package/*/Makefile)
|