MCU=atmega8

all:  logger.S
	avr-gcc -mmcu=${MCU} -c logger.S 
	avr-ld -mavr2 logger.o -o logger.elf
	avr-objcopy -O ihex logger.elf logger.hex

