From: Philipp Klaus Date: Fri, 7 Aug 2015 07:03:51 +0000 (+0200) Subject: use avr-size on /d/salt in Makefile X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=7817d6e7e777cd648de2f91337c43574447c5b85;p=avr.git use avr-size on /d/salt in Makefile --- diff --git a/pt100/Makefile b/pt100/Makefile index 39c1d30..0df2e23 100644 --- a/pt100/Makefile +++ b/pt100/Makefile @@ -115,7 +115,7 @@ AVRDUDE_FLAGS = $(AVRDUDE_BASIC) $(AVRDUDE_NO_VERIFY) $(AVRDUDE_VERBOSE) $(AVRDU CC = avr-gcc OBJCOPY = avr-objcopy OBJDUMP = avr-objdump -SIZE = avr-size +SIZE = /d/salt/bin/avr-size NM = avr-nm AVRDUDE = avrdude REMOVE = rm -f @@ -151,7 +151,7 @@ program: $(TARGET).hex $(TARGET).eep size: - $(SIZE) $(TARGET).elf + $(SIZE) -C --mcu=$(MCU) $(TARGET).elf #-C --mcu=$(MCU) # Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB. COFFCONVERT=$(OBJCOPY) --debugging \