blob: 4ba9f1f661c9f69bdd531348ff8947da2ba1f1e4 (
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
|
.PHONY: clean
BIN=analyze
SRCDIRS=libs,frontend,interpret
SRC= main.ml \
frontend/ast.ml \
frontend/parser.mly \
frontend/lexer.mll \
frontend/ast_printer.ml \
interpret/data.ml \
interpret/interpret.ml \
interpret/sca.ml
all: $(BIN)
$(BIN): $(SRC)
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:
rm -rf _build
|