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:
17
plasma/Makefile
Normal file
17
plasma/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user