summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2aea16c..ee9c0a5 100644
--- a/Makefile
+++ b/Makefile
@@ -57,9 +57,9 @@ program: build/main.hex #main.eep
${AVRFLASH} -p ${MCU} -c ${AVRDUDE_PROGRAMMER} ${AVRFLAGS}
secsize: build/main.elf
- ${AVROBJDUMP} -hw -j.text -j.bss -j.data main.elf
+ ${AVROBJDUMP} -hw -j.text -j.bss -j.data $<
funsize: build/main.elf
- ${AVRNM} --print-size --size-sort main.elf
+ ${AVRNM} --print-size --size-sort $<
.PHONY: all program secsize funsize