diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-05-18 18:21:18 +0200 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-05-18 18:21:18 +0200 |
commit | 4d59f3a805d0cca882caab353ac8ec0dd4c04f73 (patch) | |
tree | ada69c3799c7fbb0d0cb6100bff2f4c649907edb /Makefile | |
parent | 9714afeb275360110161c870b50627128fda75a0 (diff) | |
download | SemVerif-Projet-4d59f3a805d0cca882caab353ac8ec0dd4c04f73.tar.gz SemVerif-Projet-4d59f3a805d0cca882caab353ac8ec0dd4c04f73.zip |
Begin work on interface with Apron
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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: |