source: CIVL/examples/experimental/Makefile@ 85d4675

1.23 2.0 main test-branch
Last change on this file since 85d4675 was 8fa5a7b, checked in by Tim Zirkel <zirkeltk@…>, 13 years ago

moved untested/unused examples to experimental folder

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

  • Property mode set to 100644
File size: 584 bytes
Line 
1
2# CIVL = java -jar ../civl.jar
3CIVL = civl
4
5TARGETS = \
6 minimal \
7 spawn \
8 locks \
9 sideEffects \
10 sideEffects2 \
11 adder \
12 matmat \
13 barrier \
14 barrier2
15
16default: all
17
18all: $(TARGETS)
19
20minimal: minimal.cvl
21 $(CIVL) minimal.cvl
22
23spawn: spawn.cvl
24 $(CIVL) spawn.cvl
25
26locks: locks.cvl
27 $(CIVL) locks.cvl
28
29sideEffects: sideEffects.cvl
30 $(CIVL) sideEffects.cvl
31
32sideEffects2: sideEffects2.cvl
33 $(CIVL) sideEffects2.cvl
34
35adder: adder.cvl
36 $(CIVL) adder.cvl
37
38matmat: matmat.cvl
39 $(CIVL) matmat.cvl
40
41barrier: barrier.cvl
42 $(CIVL) barrier.cvl
43
44barrier2: barrier2.cvl
45 $(CIVL) barrier2.cvl
Note: See TracBrowser for help on using the repository browser.