blob: 9f1896fc39e74ccb3681bcc22d065a24a49344cc (
plain) (
tree)
|
|
.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
|