source: CIVL/examples/experimental/Makefile@ 21cfdbe

1.23 2.0 main test-branch
Last change on this file since 21cfdbe was bebe66d, checked in by Tim Zirkel <zirkeltk@…>, 12 years ago

Got rid of unnecessary examples in experimental. The removed examples were either superseded by other tests or just uninteresting.

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

  • Property mode set to 100644
File size: 468 bytes
Line 
1
2# CIVL = java -jar ../civl.jar
3CIVL = civl
4
5TARGETS = \
6 collective \
7 contract \
8 count \
9 floatsum \
10 floatsum2 \
11 pathfinder_cuda
12
13default: all
14
15all: $(TARGETS)
16
17collective: collective.cvl
18 $(CIVL) collective.cvl
19
20contract: contract.cvl
21 $(CIVL) contract.cvl
22
23count: count.cvl
24 $(CIVL) count.cvl
25
26floatsum: floatsum.cvl
27 $(CIVL) floatsum.cvl
28
29floatsum2: floatsum2.cvl
30 $(CIVL) floatsum2.cvl
31
32pathfinder_cuda: pathfinder_cuda.cvl
33 $(CIVL) pathfinder_cuda.cvl
Note: See TracBrowser for help on using the repository browser.