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
RevLine 
[b6c1fcb]1
[6cc497b]2CIVL=civl
3VERIFY=$(CIVL) verify
[b6c1fcb]4
5TARGETS = \
[bebe66d]6 collective \
7 contract \
8 count \
9 floatsum \
10 floatsum2 \
[6cc497b]11 gaussElim \
12 multInLoopCond \
[6df6487]13 pathfinder_cuda \
14 arrayWrite \
15 assignBad
16
[b6c1fcb]17default: all
18
19all: $(TARGETS)
20
[6df6487]21arrayWrite: arrayWrite.cvl
22 $(VERIFY) arrayWrite.cvl
23
24assignBad: assignBad.cvl
25 $(VERIFY) assignBad.cvl
26
[bebe66d]27collective: collective.cvl
[6cc497b]28 $(VERIFY) collective.cvl
[bebe66d]29
30contract: contract.cvl
[6cc497b]31 $(VERIFY) contract.cvl
[bebe66d]32
33count: count.cvl
[6cc497b]34 $(VERIFY) count.cvl
[bebe66d]35
36floatsum: floatsum.cvl
[6cc497b]37 $(VERIFY) floatsum.cvl
[bebe66d]38
39floatsum2: floatsum2.cvl
[6cc497b]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
[bebe66d]47
48pathfinder_cuda: pathfinder_cuda.cvl
[6cc497b]49 $(VERIFY) pathfinder_cuda.cvl
Note: See TracBrowser for help on using the repository browser.