summaryrefslogtreecommitdiff
path: root/usb_boot
diff options
context:
space:
mode:
authorAndreas Auras <yak54@gmx.net>2010-11-12 13:58:23 +0100
committerAndreas Auras <yak54@gmx.net>2010-11-12 13:58:23 +0100
commita9fd3ff0b95b45ea419c701448270a061b28c570 (patch)
tree5b796fa71b7925f19b0bdd2599ae8f0a03c5d59b /usb_boot
parent832c1b23892a6c12b826c58decce805fdae1affe (diff)
downloaddf10ch-atmolight-controller-a9fd3ff0b95b45ea419c701448270a061b28c570.tar.gz
df10ch-atmolight-controller-a9fd3ff0b95b45ea419c701448270a061b28c570.tar.bz2
Migrate avr-size call to newer avr suite
Diffstat (limited to 'usb_boot')
-rw-r--r--usb_boot/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/usb_boot/Makefile b/usb_boot/Makefile
index db3beb5..81e7e8e 100644
--- a/usb_boot/Makefile
+++ b/usb_boot/Makefile
@@ -57,6 +57,10 @@ HEX_FLASH_FLAGS = -R .eeprom -R .fuse -R .lock -R .signature
HEX_EEPROM_FLAGS = -j .eeprom
HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load"
+## AVR size flags
+#AVR_SIZE_FLAGS ?= -C --mcu=${MCU}
+AVR_SIZE_FLAGS ?= --format=sysv
+
## Include Directories
INCLUDES = -I. -I.. -I$(USBDRV)
@@ -98,7 +102,7 @@ $(TARGET): $(OBJECTS)
size: ${TARGET}
@echo
- @avr-size -C --mcu=${MCU} ${TARGET}
+ @avr-size ${AVR_SIZE_FLAGS} ${TARGET}
## Clean target
.PHONY: clean