1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-07 23:36:22 +03: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