Die WINAVR Directory habe ich im Makefile geändert (also in dem Makefile in dem Verzeichnis, das ich bei den Tools des Programmers Notepads eingegeben habe). Das gesammt Makefile sieht nun so aus:

Code:
###############################################################################
# Makefile for the project AsuroLib
###############################################################################

## General Flags
PROJECT = AsuroLib
MCU = atmega8
TARGET = AsuroLib.elf
CC = avr-gcc.exe
AR = avr-ar
OBJDUMP = avr-objdump

## Options common to compile, link and assembly rules
COMMON = -mmcu=$(MCU)

## Compile options common for all C compilation units.
CFLAGS = $(COMMON)
CFLAGS += -Wall -gdwarf-2 -Os -I./inc
CFLAGS += -MD -MP -MT $(*F).o -MF dep/$(@F).d 

## Assembly specific flags
ASMFLAGS = $(COMMON)
ASMFLAGS += -x assembler-with-cpp -Wa,-gdwarf2

## Linker flags
LDFLAGS = $(COMMON)
LDFLAGS += 


## Intel Hex file production flags
HEX_FLASH_FLAGS = -R .eeprom

HEX_EEPROM_FLAGS = -j .eeprom
HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load"
HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0


## Objects that must be built in order to link
OBJECTS = globals.o adc.o encoder.o encoder_low.o i2c.o leds.o lcd.o\
				 	motor.o motor_low.o print.o rc5.o sound.o switches.o\
				  time.o uart.o version.o 

## Objects explicitly added by the user
LINKONLYOBJECTS = 

# Define directories, if needed.
DIRAVR = C:/Programme/WinAVR
#DIRAVR = /usr/local/avr
DIRAVRBIN = $(DIRAVR)/bin
DIRAVRUTILS = $(DIRAVR)/utils/bin
DIRINC = .
DIRLIB = $(DIRAVR)/avr/lib

LIB = asuro
LIBFILE = lib$(LIB).a
HEADER = asuro.h

## Build
all: $(LIBFILE)
	rm -rf *.o *~

%.o: %.c
	$(CC) $(INCLUDES) $(CFLAGS) -c  $<

$(LIBFILE): $(OBJECTS)
	$(AR) cru $(LIBFILE) $(OBJECTS)

## Clean target
clean:
	rm -rf *.o *~ $(LIBFILE)
	rm -rf *.lst *.map $(EXTRA_CLEAN_FILES)
	rm -rf dep/*.d

install:
	cp $(LIBFILE) $(DIRLIB)/$(LIBFILE)
	cp inc/$(HEADER) $(DIRINC)/$(HEADER)

lst: $(OBJECTS:%.o=%.lst)


%.lst: %.o
	$(OBJDUMP) -h -S $< > $@

## Other dependencies
-include $(shell mkdir dep 2>/dev/null) $(wildcard dep/*)
und die asuro.h ist auch in C:\Programme\Asuro\AsuroLib\lib\inc.

Ich blick einfach nicht durch. Also: im Makefile (bei mir in C:\Programme\Asuro) steht, wo das WinAVR-Verzeichnis ist. Darin sucht er dann nach der libasuro.a - wie es im Makefile zu erkennen ist. und in dieser libasuro.a sind alle anderen dinge, die er zum compillieren braucht. Aber was macht jetzt die asuro.h? Sorry, dass ich so doof frage, aber ich verstehe das system noch nicht so ganz und bin deswegen auch nicht in der Lage den Fehler zu finden.