aboutsummaryrefslogtreecommitdiffstats
path: root/support/make/build-targets.mk
diff options
context:
space:
mode:
Diffstat (limited to 'support/make/build-targets.mk')
-rw-r--r--support/make/build-targets.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/support/make/build-targets.mk b/support/make/build-targets.mk
index a7f2446..01097a7 100644
--- a/support/make/build-targets.mk
+++ b/support/make/build-targets.mk
@@ -8,10 +8,13 @@ $(BUILD_PATH)/$(BOARD).elf: $(BUILDDIRS) $(TGT_BIN) $(BUILD_PATH)/main.o
$(BUILD_PATH)/$(BOARD).bin: $(BUILD_PATH)/$(BOARD).elf
$(SILENT_OBJCOPY) $(OBJCOPY) -v -Obinary $(BUILD_PATH)/$(BOARD).elf $@ 1>/dev/null
$(SILENT_DISAS) $(DISAS) -d $(BUILD_PATH)/$(BOARD).elf > $(BUILD_PATH)/$(BOARD).disas
- @echo
+ @echo " "
+ @echo "Object file sizes:"
@find $(BUILD_PATH) -iname *.o | xargs $(SIZE) -t > $(BUILD_PATH)/$(BOARD).sizes
+ @cat $(BUILD_PATH)/$(BOARD).sizes
+ @echo " "
@echo "Final Size:"
- $(SIZE) $<
+ @$(SIZE) $<
@echo $(MAPLE_TARGET) > $(BUILD_PATH)/build-type
$(BUILDDIRS):