source: CIVL/examples/experimental/Makefile@ bb03188

main test-branch
Last change on this file since bb03188 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100644
File size: 783 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 arrayWrite \
15 assignBad
16
17default: all
18
19all: $(TARGETS)
20
21arrayWrite: arrayWrite.cvl
22 $(VERIFY) arrayWrite.cvl
23
24assignBad: assignBad.cvl
25 $(VERIFY) assignBad.cvl
26
27collective: collective.cvl
28 $(VERIFY) collective.cvl
29
30contract: contract.cvl
31 $(VERIFY) contract.cvl
32
33count: count.cvl
34 $(VERIFY) count.cvl
35
36floatsum: floatsum.cvl
37 $(VERIFY) floatsum.cvl
38
39floatsum2: floatsum2.cvl
40 $(VERIFY) floatsum2.cvl
41
42gaussElim: gaussElim.cvl
43 $(VERIFY) -inputN_BOUND=3 -inputM_BOUND=3 gaussElim.cvl
44
45multInLoopCond: multInLoopCond.cvl
46 $(VERIFY) multInLoopCond.cvl
47
48pathfinder_cuda: pathfinder_cuda.cvl
49 $(VERIFY) pathfinder_cuda.cvl
Note: See TracBrowser for help on using the repository browser.