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/] [Makefile] - Rev 3
Go to most recent revision | Compare with Previous | Blame | View Log
DIRS=all usb-fpga-1.2 usb-1.0 usb-fpga-1.11 usb-xmega-1.0
.PHONY: default all clean distclean
default:
@echo "This makefile is intended to clean up the project or to build all examples"
@echo "Usage: make all | clean | distclean"
all:
for i in $(DIRS); do make -C $$i all; done
clean:
for i in $(DIRS); do make -C $$i clean; done
distclean: clean
for i in $(DIRS); do make -C $$i distclean; done
Go to most recent revision | Compare with Previous | Blame | View Log