source: CIVL/examples/experimental/Makefile@ 685276de

1.23 2.0 main test-branch
Last change on this file since 685276de was 6cc497b, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

updated examples

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@472 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 651 bytes
Line 
1
2CIVL=civl
3VERIFY=$(CIVL) verify
4
5TARGETS = \
6 collective \
7 contract \
8 count \
9 floatsum \
10 floatsum2 \
11 gaussElim \
12 multInLoopCond \
13 pathfinder_cuda
14
15default: all
16
17all: $(TARGETS)
18
19collective: collective.cvl
20 $(VERIFY) collective.cvl
21
22contract: contract.cvl
23 $(VERIFY) contract.cvl
24
25count: count.cvl
26 $(VERIFY) count.cvl
27
28floatsum: floatsum.cvl
29 $(VERIFY) floatsum.cvl
30
31floatsum2: floatsum2.cvl
32 $(VERIFY) floatsum2.cvl
33
34gaussElim: gaussElim.cvl
35 $(VERIFY) -inputN_BOUND=3 -inputM_BOUND=3 gaussElim.cvl
36
37multInLoopCond: multInLoopCond.cvl
38 $(VERIFY) multInLoopCond.cvl
39
40pathfinder_cuda: pathfinder_cuda.cvl
41 $(VERIFY) pathfinder_cuda.cvl
Note: See TracBrowser for help on using the repository browser.