From ccc0183cee7c410d668a0b1a9153b061a4785e42 Mon Sep 17 00:00:00 2001 From: neoraider Date: Fri, 13 Apr 2007 19:52:00 +0000 Subject: Fehler im Makefile entfernt --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c7fe375..bbab11a 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ FILES := $(patsubst %.cpp,%,$(wildcard *.cpp)) all: robocup.elf; -include $(FILES:%=%.d) +-include $(FILES:%=%.d) robocup.hex: robocup.elf @@ -17,10 +17,7 @@ robocup.elf: $(FILES:%=%.o) avr-g++ -c -mmcu=atmega32 -o $@ $< %.d: %.cpp - @set -e; rm -f $@; \ - avr-g++ -M -mmcu=atmega32 -MF $@.$$$$ $<; \ - sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ - rm -f $@.$$$$ + avr-g++ -M -mmcu=atmega32 -MF $@ -MT $(patsubst %.cpp,%.o,$<) -MT $@ $< program: robocup.hex sudo avrdude -P usb -c avrisp2 -p m32 -U $< -- cgit v1.2.3