URL
https://opencores.org/ocsvn/usb_fpga_2_16/usb_fpga_2_16/trunk
Subversion Repositories usb_fpga_2_16
[/] [usb_fpga_2_16/] [trunk/] [examples/] [usb-fpga-1.11/] [1.11b/] [lightshow/] [avr/] [Makefile] - Rev 2
Compare with Previous | Blame | View Log
AVRGCC=avr-gcc -std=gnu99 -save-temps -mmcu=atxmega128a1 -O2
OBJ2HEX=avr-objcopy
all: lightshow.ihx
%.obj : %.c
$(AVRGCC) $< -o $@
%.ihx : %.obj
$(OBJ2HEX) -R .eeprom -O ihex $< $@
clean:
rm -f *.o *.i *.s *.obj *.old *.bak *~
distclean:
rm -f *.ihx