From 5f3a1b262970f7423bc83a2f6eabcd1d4d7c65af Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 8 Aug 2010 08:30:42 +0000 Subject: Fix invocations of avr-size in all makefiles broken on unpatched *nix systems, due to the recent update to the latest WinAVR makefile template. --- Demos/Host/LowLevel/GenericHIDHost/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Demos/Host/LowLevel/GenericHIDHost/makefile') diff --git a/Demos/Host/LowLevel/GenericHIDHost/makefile b/Demos/Host/LowLevel/GenericHIDHost/makefile index d8fcddf77..e9dbab5a2 100644 --- a/Demos/Host/LowLevel/GenericHIDHost/makefile +++ b/Demos/Host/LowLevel/GenericHIDHost/makefile @@ -489,7 +489,10 @@ end: # Display size of file. HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex -ELFSIZE = $(SIZE) --mcu=$(MCU) --format=avr $(TARGET).elf +ELFSIZE = $(SIZE) $(MCU_FLAG) $(FORMAT_FLAG) $(TARGET).elf +MCU_FLAG = $(shell $(SIZE) --help | grep -- --mcu > /dev/null && echo --mcu=$(MCU) ) +FORMAT_FLAG = $(shell $(SIZE) --help | grep -- --format=.*avr > /dev/null && echo --format=avr ) + sizebefore: @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \ -- cgit v1.2.3