URL
https://opencores.org/ocsvn/usb_fpga_1_11/usb_fpga_1_11/trunk
Subversion Repositories usb_fpga_1_11
[/] [usb_fpga_1_11/] [trunk/] [examples/] [all/] [Makefile] - Rev 6
Compare with Previous | Blame | View Log
DIRS=ucecho debug.PHONY: default all clean distclean avr avrclean avrdistcleandefault:@echo "This makefile is intended to clean up the project or to build all examples in this subdirectory"@echo "Usage: make all | clean | distclean"all:set -e; for i in $(DIRS); do make -C $$i all; doneclean:set -e; for i in $(DIRS); do make -C $$i clean; donedistclean:set -e; for i in $(DIRS); do make -C $$i distclean; doneavr:set -e; for i in $(DIRS); do make -C $$i avr; doneavrclean:set -e; for i in $(DIRS); do make -C $$i avrclean; doneavrdistclean:set -e; for i in $(DIRS); do make -C $$i avrdistclean; done
