1 # Temporary hack that needs to be removed / replaced
2 -include ..
/include/conv-mach-opt.mak
3 OPTS
+= $(OPTSATBUILDTIME
)
21 all: $(foreach i
,$(DIRS
),build-
$i)
23 test: $(foreach i
,$(TESTDIRS
),test-
$i)
25 bgtest
: $(foreach i
,$(filter $(BGDIRS
),$(TESTDIRS
)),bgtest-
$i)
27 syncfttest causalfttest mpisyncfttest mlogfttest
: $(foreach i
,$(filter $(FTDIRS
),$(TESTDIRS
)),test-
$i)
29 clean: $(foreach i
,$(DIRS
),clean-
$i)
33 $(foreach i
,$(DIRS
),build-
$i):
34 $(MAKE
) -C
$(subst build-
,,$@
) all OPTS
='$(OPTS)'
36 $(foreach i
,$(DIRS
),test-
$i):
37 $(MAKE
) -C
$(subst test-
,,$@
) test OPTS
='$(OPTS)' TESTOPTS
='$(TESTOPTS)'
39 $(foreach i
,$(DIRS
),bgtest-
$i):
40 $(MAKE
) -C
$(subst bgtest-
,,$@
) bgtest OPTS
='$(OPTS)' TESTOPTS
='$(TESTOPTS)'
42 $(foreach i
,$(DIRS
),clean-
$i):
43 $(MAKE
) -C
$(subst clean-
,,$@
) clean OPTS
='$(OPTS)'
46 test-charm
: test-charm
++