Added more verbosity.
This commit is contained in:
parent
5c16c50826
commit
2293462324
3
Makefile
3
Makefile
|
@ -486,9 +486,10 @@ targets-by-mcu:
|
|||
$(V1) for target in $(VALID_TARGETS); do \
|
||||
TARGET_MCU_TYPE=$$($(MAKE) -s TARGET=$${target} target-mcu); \
|
||||
if [ "$${TARGET_MCU_TYPE}" = "$${MCU_TYPE}" ]; then \
|
||||
echo "Building target $${target}..."; \
|
||||
$(MAKE) TARGET=$${target}; \
|
||||
if [ $$? -ne 0 ]; then \
|
||||
echo "Building $${target} failed, aborting."; \
|
||||
echo "Building target $${target} failed, aborting."; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
fi; \
|
||||
|
|
Loading…
Reference in New Issue