mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-04-21 12:27:27 +03:00
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
This commit is contained in:
11
boom/manu/Makefile
Normal file
11
boom/manu/Makefile
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user