summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9f1896fc39e74ccb3681bcc22d065a24a49344cc (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
.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

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