mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-04 23:05:21 +02:00
a6c65c7dd2
- 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
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
|