source: CIVL/examples/Makefile@ c777ef2

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

Updated Makefile. Changed examples to use civlc.h and $ instead of \ at beginning of CIVL keywords.

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

  • Property mode set to 100644
File size: 444 bytes
Line 
1
2CIVL = ../civl
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.