From 7817d6e7e777cd648de2f91337c43574447c5b85 Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Fri, 7 Aug 2015 09:03:51 +0200 Subject: [PATCH] use avr-size on /d/salt in Makefile --- pt100/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.43.0