mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2024-12-13 02:55:21 +02:00
18 lines
252 B
Makefile
18 lines
252 B
Makefile
|
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
|