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/] [Makefile] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
DIRS=bmp examples java libusbJava-src
.PHONY: default all docs clean distclean
default:
@echo "This makefile is intended to clean up the project or to build the utilties and examples"
@echo "Usage: make all | docs | clean | distclean"
all:
make -C java all
make -C examples all
docs:
make -C docs all
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