ZC EM Bcast Post API: Add examples for each registration mode
[charm.git] / examples / charm++ / zerocopy / Makefile
blob918a0153aa48a935cd38eadedaeca8bd9cccf102
1 DIRS = \
2 direct_api \
3 entry_method_api \
4 entry_method_bcast_api \
5 entry_method_post_api \
6 entry_method_bcast_post_api \
7 large_readonly \
9 TESTDIRS = $(DIRS)
11 all: $(foreach i,$(DIRS),build-$i)
13 test: $(foreach i,$(TESTDIRS),test-$i)
15 clean: $(foreach i,$(DIRS),clean-$i)
16 rm -f TAGS #*#
17 rm -f core *~
19 $(foreach i,$(DIRS),build-$i):
20 $(MAKE) -C $(subst build-,,$@) all OPTS='$(OPTS)'
22 $(foreach i,$(DIRS),test-$i):
23 $(MAKE) -C $(subst test-,,$@) test OPTS='$(OPTS)' TESTOPTS='$(TESTOPTS)'
25 $(foreach i,$(DIRS),clean-$i):
26 $(MAKE) -C $(subst clean-,,$@) clean OPTS='$(OPTS)'