mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2024-12-12 18:59:21 +02:00
622f59856f
for this example
18 lines
257 B
Makefile
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
|