1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 02:39:49 +03:00
eda-tools/boom/manu/Makefile
Werner Almesberger a6c65c7dd2 manu/Makefile: run a recursive make on all subdirectories
- boom/boom-config.in: new command "manu" to list the manufacturers
- manu/Makefile: run make for targets "all", "test", "sane", and "spotless"
  on each manufacturer directory
2010-10-30 19:12:29 -03:00

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