From 12bd67aad8ab427c1b1e5f13d108f4c05a8bd4e7 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 5 Feb 2016 18:37:31 +0100 Subject: Makefile: Fix secsize/funsize invocation --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3