From 36f98d819756ada119e696729e40d8e8e427b5f0 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 11 Jun 2014 16:41:43 +0200 Subject: Initial commit: parser for tiny subset of SCADE language... --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3