mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-06 01:11:54 +02:00
12 lines
192 B
Makefile
12 lines
192 B
Makefile
|
DIRS = $(shell ../boom-config manu)
|
||
|
|
||
|
.PHONY: all test sane spotless $(DIRS)
|
||
|
|
||
|
all: $(DIRS)
|
||
|
|
||
|
$(DIRS):
|
||
|
$(MAKE) -C $@
|
||
|
|
||
|
test sane spotless:
|
||
|
for n in $(DIRS); do $(MAKE) -C $$n $@ || exit 1; done
|