From: Ian Jackson Date: Thu, 9 Aug 2012 18:03:31 +0000 (+0100) Subject: Refresh of makefile-avr-size X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c0bc8debf435b9b6ffd7dc2ac6153e0314764a87;p=marlin.git Refresh of makefile-avr-size --- diff --git a/Marlin/Makefile b/Marlin/Makefile index a85111d..940bb16 100644 --- a/Marlin/Makefile +++ b/Marlin/Makefile @@ -221,7 +221,8 @@ endif # Display size of file. HEXSIZE = $(SIZE) --target=$(FORMAT) applet/$(TARGET).hex -ELFSIZE = $(SIZE) applet/$(TARGET).elf +ELFSIZE = $(SIZE) --mcu=$(MCU) -C applet/$(TARGET).elf; \ + $(SIZE) applet/$(TARGET).elf sizebefore: $P if [ -f applet/$(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(HEXSIZE); echo; fi