diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5e785e0 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +.PHONY: clean + +BIN=analyze +SRCDIRS=libs,frontend + +SRC= main.ml \ + frontend/ast.ml \ + frontend/parser.mly \ + frontend/lexer.mll \ + frontend/ast_printer.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 |