From: Philipp Klaus Date: Thu, 6 Aug 2015 09:27:33 +0000 (+0200) Subject: fixing avr-size command in Makefile X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=df712fdeb379cf32393bc6fd0cff3e102ee574d2;p=avr.git fixing avr-size command in Makefile --- diff --git a/pt100/Makefile b/pt100/Makefile index 73d8224..39c1d30 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 = ~/bin/avr-size +SIZE = avr-size NM = avr-nm AVRDUDE = avrdude REMOVE = rm -f @@ -151,7 +151,7 @@ program: $(TARGET).hex $(TARGET).eep size: - $(SIZE) -C --mcu=$(MCU) $(TARGET).elf + $(SIZE) $(TARGET).elf #-C --mcu=$(MCU) # Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB. COFFCONVERT=$(OBJCOPY) --debugging \