]> jspc29.x-matter.uni-frankfurt.de Git - avr.git/commitdiff
fixing avr-size command in Makefile
authorPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Thu, 6 Aug 2015 09:27:33 +0000 (11:27 +0200)
committerPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Thu, 6 Aug 2015 09:27:33 +0000 (11:27 +0200)
pt100/Makefile

index 73d8224e8c83a4db2a18e9ee3e387357687834bf..39c1d30242cb680234f97220d3200fb2da5f13a8 100644 (file)
@@ -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 \