1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-11-06 01:11:54 +02:00
eda-tools/boom/manu/Makefile

12 lines
192 B
Makefile
Raw Normal View History

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