1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2024-12-12 18:59:21 +02:00
nn-usb-fpga/plasma/Makefile
2010-04-30 22:21:55 -05:00

18 lines
257 B
Makefile

TARGET = bootldr
DIRS = tools bootldr logic gpio
all:
for n in $(DIRS); do $(MAKE) -C $$n || exit 1; done
tool:
make -C tools
logic:
make -C logic
bootldr: tool
make -C bootldr
clean:
for n in $(DIRS); do $(MAKE) -C $$n clean || exit 1; done