source: CIVL/examples/verifyThis/treeBuffer/Makefile

main
Last change on this file was 34dc89d, checked in by Stephen Siegel <siegel@…>, 3 years ago

Fixed minor bug in Makefile for treebuffer problem (.c should have been .cvl)

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

  • Property mode set to 100644
File size: 865 bytes
Line 
1CIVL=civl
2VERIFY=$(CIVL) verify
3COMPARE=$(CIVL) compare
4
5all: compare1 compare2 compare3
6
7## naive v.s. real time
8compare1: driver.cvl treebuffer_naive.cvl treebuffer.cvl treebuffer.h
9 $(COMPARE) -checkMemoryLeak=false -spec driver.cvl treebuffer_naive.cvl -impl driver.cvl treebuffer.cvl
10
11## naive v.s. caterpillar
12compare2: driver.cvl treebuffer_naive.cvl treebuffer_caterpillar.cvl treebuffer.h
13 $(COMPARE) -checkMemoryLeak=false -spec driver.cvl treebuffer_naive.cvl -impl driver.cvl treebuffer_caterpillar.cvl
14
15## caterpillar v.s. real time (with memory leak check)
16compare3: driver.cvl treebuffer_caterpillar.cvl treebuffer.cvl treebuffer.h
17 $(COMPARE) -spec driver.cvl treebuffer_caterpillar.cvl -impl driver.cvl treebuffer.cvl
18
19bound: driver_heap_bound.cvl treebuffer.cvl
20 $(VERIFY) driver_heap_bound.cvl treebuffer.cvl
21
22clean:
23 rm -rf CIVLREP SARL_Why3 *~
Note: See TracBrowser for help on using the repository browser.