mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-22 16:37:09 +02: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:
parent
6ba3a5667a
commit
a6c65c7dd2
@ -30,6 +30,8 @@ while [ "$1" ]; do
|
|||||||
for n in $DIST; do echo "$base/dist/$n/db/all.dsc"; done;;
|
for n in $DIST; do echo "$base/dist/$n/db/all.dsc"; done;;
|
||||||
chr)
|
chr)
|
||||||
for n in $MANU; do echo "$base/manu/$n/$n.chr"; done;;
|
for n in $MANU; do echo "$base/manu/$n/$n.chr"; done;;
|
||||||
|
manu)
|
||||||
|
echo $MANU;;
|
||||||
*)
|
*)
|
||||||
usage;;
|
usage;;
|
||||||
esac
|
esac
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user