Added more verbosity.

This commit is contained in:
Michael Keller 2018-07-22 12:08:31 +12:00 committed by GitHub
parent 5c16c50826
commit 2293462324
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -486,9 +486,10 @@ targets-by-mcu:
$(V1) for target in $(VALID_TARGETS); do \ $(V1) for target in $(VALID_TARGETS); do \
TARGET_MCU_TYPE=$$($(MAKE) -s TARGET=$${target} target-mcu); \ TARGET_MCU_TYPE=$$($(MAKE) -s TARGET=$${target} target-mcu); \
if [ "$${TARGET_MCU_TYPE}" = "$${MCU_TYPE}" ]; then \ if [ "$${TARGET_MCU_TYPE}" = "$${MCU_TYPE}" ]; then \
echo "Building target $${target}..."; \
$(MAKE) TARGET=$${target}; \ $(MAKE) TARGET=$${target}; \
if [ $$? -ne 0 ]; then \ if [ $$? -ne 0 ]; then \
echo "Building $${target} failed, aborting."; \ echo "Building target $${target} failed, aborting."; \
exit 1; \ exit 1; \
fi; \ fi; \
fi; \ fi; \