all: main.hex %.hex: %.elf avr-objcopy -O ihex $< $@ %.elf: %.o crtatmega3208.o avr-gcc -mmcu=atmega3208 -L../toolchain/lib -o $@ $< %.o: %.c avr-gcc -c -D__AVR_DEV_LIB_NAME__=m3208 -I../toolchain/include -mmcu=atmega3208 -O3 -o $@ $< crtatmega3208.o: ../toolchain/lib/crtatmega3208.o cp --reflink=auto $< $@