From df712fdeb379cf32393bc6fd0cff3e102ee574d2 Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Thu, 6 Aug 2015 11:27:33 +0200 Subject: [PATCH] fixing avr-size command in Makefile --- pt100/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.43.0