source: CIVL/examples/Makefile@ 8bd0ed8

1.23 2.0 main test-branch
Last change on this file since 8bd0ed8 was 290908a, checked in by Stephen Siegel <siegel@…>, 13 years ago

Fixed jar construction to include all dependencies.

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

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