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/] [Makefile] - Rev 2
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 usb-fpga-1.15 usb-fpga-1.15y usb-fpga-2.16
.PHONY: default all clean distclean avr avrclean avrdistclean
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
avr:
set -e; for i in $(DIRS); do make -C $$i avr; done
avrclean:
set -e; for i in $(DIRS); do make -C $$i avrclean; done
avrdistclean:
set -e; for i in $(DIRS); do make -C $$i avrdistclean; done
Go to most recent revision | Compare with Previous | Blame | View Log