source: CIVL/examples/backend/Makefile

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100644
File size: 536 bytes
Line 
1
2CIVL=civl
3VERIFY=$(CIVL) verify
4
5all: arrayWrite mallocInputArray printExpr quantified returnNull showTrans sizeOfTypes
6
7arrayWrite: arrayWrite.cvl
8 $(VERIFY) arrayWrite.cvl
9
10mallocInputArray: mallocInputArray.cvl
11 $(VERIFY) mallocInputArray.cvl
12
13printExpr: printExpr.cvl
14 $(VERIFY) printExpr.cvl
15
16quantified: quantified.cvl
17 $(VERIFY) quantified.cvl
18
19returnNull: returnNull.cvl
20 $(VERIFY) returnNull.cvl
21
22showTrans: showTrans.cvl
23 $(VERIFY) showTrans.cvl
24
25sizeOfTypes: sizeOfTypes.c
26 $(VERIFY) sizeOfTypes.c
27
28clean:
29 rm -rf CIVLREP *~
Note: See TracBrowser for help on using the repository browser.