summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-02-05 18:37:31 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-02-05 18:37:31 +0100
commit12bd67aad8ab427c1b1e5f13d108f4c05a8bd4e7 (patch)
tree3d180ea66057da7d2e23ec5ca07b76f47347e29a /Makefile
parentf88c1fde18146fd1bf543399da0f6584c3fd4a81 (diff)
Makefile: Fix secsize/funsize invocation
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