diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-02-05 18:37:31 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-02-05 18:37:31 +0100 |
commit | 12bd67aad8ab427c1b1e5f13d108f4c05a8bd4e7 (patch) | |
tree | 3d180ea66057da7d2e23ec5ca07b76f47347e29a /Makefile | |
parent | f88c1fde18146fd1bf543399da0f6584c3fd4a81 (diff) |
Makefile: Fix secsize/funsize invocation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |