source: CIVL/examples/arithmetic/Makefile@ 6a4e2e0

1.23 2.0 main test-branch
Last change on this file since 6a4e2e0 was 06b8536c, checked in by Stephen Siegel <siegel@…>, 13 years ago

Starting to clean up examples, but adding some extra versions of matmat as bug have been revealed.
Optimized somewhat evaluation of conditional (if then else) expressions, though I now feel this construct should be translated away.
Added a method to get the canonic ID of a state, minor changes.

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

  • Property mode set to 100644
File size: 344 bytes
RevLine 
[06b8536c]1
2CIVL=civl
3VERIFY=$(CIVL) verify
4
5all: algebra assoc
6
7algebra: algebra.cvl
8 $(VERIFY) algebra.cvl
9
10assoc: assoc.cvl
11 $(VERIFY) -inputB=10 assoc.cvl
12
13division: division.cvl
14 $(VERIFY) division.cvl
15
16divisionBad: divisionBad.cvl
17 $(VERIFY) divisionBad.cvl
18 $(CIVL) replay divisionBad.cvl
19
20matmat: matmat.cvl
21 $(VERIFY) matmat.cvl -inputBOUND=4
22
23
24
Note: See TracBrowser for help on using the repository browser.