From e20771d28264125586c6cff7cc4a6b4d51e69110 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Thu, 8 Jul 2010 20:04:05 -0400 Subject: more codeblocks fixes; verbose build output --- support/make/build-targets.mk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'support/make') 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): -- cgit v1.2.3