source: CIVL/examples/Makefile@ 9179b4f

1.23 2.0 main test-branch
Last change on this file since 9179b4f was f4f4828, checked in by Stephen Siegel <siegel@…>, 13 years ago

Adding CIVL manual (latex), changing Makefile in examples to use "civl" instead of assuming the jar is all that is needed.

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

  • Property mode set to 100644
File size: 472 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
14default: all
15
16all: $(TARGETS)
17
18minimal: minimal.cvl
19 $(CIVL) minimal.cvl
20
21spawn: spawn.cvl
22 $(CIVL) spawn.cvl
23
24locks: locks.cvl
25 $(CIVL) locks.cvl
26
27sideEffects: sideEffects.cvl
28 $(CIVL) sideEffects.cvl
29
30sideEffects2: sideEffects2.cvl
31 $(CIVL) sideEffects2.cvl
32
33adder: adder.cvl
34 $(CIVL) adder.cvl
35
36matmat: matmat.cvl
37 $(CIVL) matmat.cvl
Note: See TracBrowser for help on using the repository browser.