source: CIVL/examples/arithmetic/Makefile@ 9705dfd

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

Cleaned up some examples, fixed playback to the trace payed back has the exact same number of steps as original, cleaned up some examples.

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

  • Property mode set to 100644
File size: 676 bytes
Line 
1
2CIVL=civl
3VERIFY=$(CIVL) verify
4
5all: algebra assoc division divisionBad matmat2 matmat2bad \
6 meanBad mean
7
8algebra: algebra.cvl
9 $(VERIFY) algebra.cvl
10
11assoc: assoc.cvl
12 $(VERIFY) -inputB=10 assoc.cvl
13
14division: division.cvl
15 $(VERIFY) division.cvl
16
17divisionBad: divisionBad.cvl
18 $(VERIFY) divisionBad.cvl
19 $(CIVL) replay divisionBad.cvl
20
21matmat2: matmat2.cvl
22 $(VERIFY) matmat2.cvl -inputBOUND=3
23
24matmat2bad: matmat2bad.cvl
25 $(VERIFY) -min matmat2bad.cvl -inputBOUND=3
26 $(CIVL) replay matmat2bad.cvl
27
28meanBad: meanBad.cvl
29 $(VERIFY) -min -inputB=10 meanBad.cvl
30 $(CIVL) replay meanBad.cvl
31
32mean: mean.cvl
33 $(VERIFY) -inputB=10 mean.cvl
34
35
36
37clean:
38 rm -rf CIVLREP *~
39
40
41
Note: See TracBrowser for help on using the repository browser.