all: compile flash

compile:
	avr-gcc -mmcu=atmega8 -o hello.elf hello.S
	avr-objcopy -j .text -j .data -O ihex hello.elf hello.hex
flash:
	avrdude -p m8 -c dragon_isp -U flash:w:hello.hex
clean:
	rm hello.elf hello.hex
