1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-04-21 12:27:27 +03:00

Fixing some errors on Makefiles

This commit is contained in:
Carlos Camargo
2010-04-28 09:31:38 -05:00
parent 7c3f455d5d
commit b12a749b16
4 changed files with 21 additions and 4 deletions

17
plasma/Makefile Normal file
View File

@@ -0,0 +1,17 @@
TARGET = bootldr
DIRS = tools bootldr logic
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