Rename files for Feature #1393: Redesign of Hybrid API
[charm.git] / examples / multiphaseSharedArrays / Makefile
blob81025960013819238041cc0d5601cac5151d39b1
1 DIRS = \
2 simpletest \
3 simpleTestVarsize \
5 TESTDIRS = $(DIRS)
7 all: $(foreach i,$(DIRS),build-$i)
9 test: $(foreach i,$(TESTDIRS),test-$i)
11 clean: $(foreach i,$(DIRS),clean-$i)
12 rm -f TAGS #*#
13 rm -f core *~
15 $(foreach i,$(DIRS),build-$i):
16 $(MAKE) -C $(subst build-,,$@) all OPTS='$(OPTS)'
18 $(foreach i,$(DIRS),test-$i):
19 $(MAKE) -C $(subst test-,,$@) test OPTS='$(OPTS)' TESTOPTS='$(TESTOPTS)'
21 $(foreach i,$(DIRS),clean-$i):
22 $(MAKE) -C $(subst clean-,,$@) clean OPTS='$(OPTS)'