From c0c929acb5c12c805d0e4a8ed560629a6918ec97 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sun, 22 Feb 2009 16:15:56 +0100 Subject: [PATCH] Changed the Makefile for gmake. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 906c8f1..4417d3f 100644 --- a/Makefile +++ b/Makefile @@ -15,13 +15,13 @@ program: kokare.hex avrdude -q -p m88 -U flash:w:kokare.hex .elf.hex: - avr-objcopy -O ihex -R .eeprom $> $@ + avr-objcopy -O ihex -R .eeprom $^ $@ #%.ehex: %.elf # avr-objcopy -O ihex -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 $< $@ kokare.elf: kokare.o - avr-gcc $> -o $@ $(MLDFLAGS) -lm + avr-gcc $^ -o $@ $(MLDFLAGS) -lm .c.o: avr-gcc -c $(MCFLAGS) $< -o $@ -- 2.11.0