transmit: bsp-1-led.transmit # Datei, die übertragen werden soll
%.transmit: %.hex
avrdude -p m8 -c ponyser -P /dev/ttyS0 -v -U flash:w:$*.hex
%.hex: %.o
avr-objcopy -O ihex -R .eeprom $*.o $*.hex
%.o: %.c
avr-gcc -mmcu=atmega8 -I. -Wall -Wstrict-prototypes -Wundef -std=gnu99 $*.c -o $*.o