URL
https://opencores.org/ocsvn/usb_fpga_2_14/usb_fpga_2_14/trunk
Subversion Repositories usb_fpga_2_14
[/] [usb_fpga_2_14/] [trunk/] [default/] [Makefile] - Rev 2
Compare with Previous | Blame | View Log
DIRS=DefaultUpdater usb-fpga-2.01 usb-fpga-2.04 usb-fpga-2.13 usb-fpga-2.14 usb-fpga-2.16 usb-fpga-2.18
.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:
set -e; for i in $(DIRS); do make -C $$i all; done
clean:
set -e; for i in $(DIRS); do make -C $$i clean; done
distclean:
set -e; for i in $(DIRS); do make -C $$i distclean; done