summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-05-18 18:21:18 +0200
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-05-18 18:21:18 +0200
commit4d59f3a805d0cca882caab353ac8ec0dd4c04f73 (patch)
treeada69c3799c7fbb0d0cb6100bff2f4c649907edb /Makefile
parent9714afeb275360110161c870b50627128fda75a0 (diff)
downloadSemVerif-Projet-4d59f3a805d0cca882caab353ac8ec0dd4c04f73.tar.gz
SemVerif-Projet-4d59f3a805d0cca882caab353ac8ec0dd4c04f73.zip
Begin work on interface with Apron
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 00cda6d..2907754 100644
--- a/Makefile
+++ b/Makefile
@@ -10,11 +10,14 @@ SRC= main.ml \
abstract/interpret.ml \
abstract/nonrelational.ml \
abstract/value_domain.ml \
+ abstract/relational_apron.ml
all: $(BIN)
$(BIN): $(SRC)
- ocamlbuild -Is $(SRCDIRS) -cflags '-I /usr/lib/ocaml/zarith' -lflags '-I /usr/lib/ocaml/zarith zarith.cmxa' main.native
+ ocamlbuild -Is $(SRCDIRS) -cflags '-I +zarith -I +apron -I +gmp' \
+ -lflags '-I +zarith -I +apron -I +gmp zarith.cmxa bigarray.cmxa gmp.cmxa apron.cmxa polkaMPQ.cmxa' \
+ main.native
mv main.native $(BIN)
clean: