summaryrefslogtreecommitdiff
path: root/pwm_appl
diff options
context:
space:
mode:
Diffstat (limited to 'pwm_appl')
-rw-r--r--pwm_appl/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/pwm_appl/Makefile b/pwm_appl/Makefile
index 0a23034..bbbb5ad 100644
--- a/pwm_appl/Makefile
+++ b/pwm_appl/Makefile
@@ -57,6 +57,10 @@ HEX_EEPROM_FLAGS = -j .eeprom
HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load"
HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0x01 --no-change-warnings
+## AVR size flags
+#AVR_SIZE_FLAGS ?= -C --mcu=${MCU}
+AVR_SIZE_FLAGS ?= --format=sysv
+
## Include Directories
INCLUDES = -I. -I..
@@ -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