##// END OF EJS Templates
Fixed Makefile. Now correctly forward targets to subfolders
Jeandet Alexis -
r645:cc8f80f527e5 default draft
parent child
Show More
@@ -1,23 +1,10
1 SUBDIRS=Validation_IIR_f0_LFR \
2 Validation_IIR_f1_LFR \
3 Validation_LFR_Filters
4
5 SUBDIRS_distclean:=$(SUBDIRS)
6 SUBDIRS_test:=$(SUBDIRS)
7
8 .PHONY: distclean test $(SUBDIRS)
1 SUBDIRS := $(shell find ./ -maxdepth 1 -mindepth 1 -type d)
9 2
10 all:
11 echo ""
12
13 test: $(SUBDIRS_test)
3 all :
14 4
15 distclean: $(SUBDIRS_distclean)
16
17 $(SUBDIRS_distclean):
18 $(MAKE) -C $@ distclean
19
20 $(SUBDIRS_test):
21 $(MAKE) -C $@ test
5 .PHONY: force
22 6
23 7
8 %:
9 -for d in $(SUBDIRS); do (cd $$d; $(MAKE) $@ ); done
10
General Comments 0
You need to be logged in to leave comments. Login now