blob: 69bf0cef859e7cf91489e0722056c01a9a5282ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.PHONY: clean
BIN=analyze
SRCDIRS=libs,frontend,interpret,abstract
SRC= main.ml \
frontend/ast.ml \
frontend/parser.mly \
frontend/lexer.mll \
frontend/ast_printer.ml \
abstract/formula.ml \
abstract/formula_printer.ml \
abstract/transform.ml \
interpret/bad_interpret.ml \
interpret/interface.ml \
interpret/interpret.ml \
interpret/rename.ml
all: $(BIN)
$(BIN): $(SRC)
ocamlbuild -Is $(SRCDIRS) -cflags '-I +zarith -I +apron -I +gmp -I +str' \
-lflags '-I +zarith -I +apron -I +gmp -I +str str.cmxa zarith.cmxa bigarray.cmxa gmp.cmxa apron.cmxa polkaMPQ.cmxa' \
main.native
mv main.native $(BIN)
clean:
rm $(BIN)
ocamlbuild -clean
|