source: CIVL/examples/Makefile@ 73f1e27

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

Lots of outstanding changes. New examples, improved side effect remover, model builder additions and fixes, support for assert and assume statements. Support for storing code contracts in the model.

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

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