diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,17 +1,18 @@ .PHONY: clean BIN=analyze -SRCDIRS=libs,frontend,interpret +SRCDIRS=libs,frontend,interpret,abstract SRC= main.ml \ frontend/ast.ml \ frontend/parser.mly \ frontend/lexer.mll \ frontend/ast_printer.ml \ - interpret/data.ml \ + abstract/formula.ml \ + abstract/formula_printer.ml \ interpret/bad_interpret.ml \ interpret/interface.ml \ - interpret/interpret2.ml \ + interpret/interpret.ml \ interpret/rename.ml all: $(BIN) @@ -23,4 +24,5 @@ $(BIN): $(SRC) mv main.native $(BIN) clean: - rm -rf _build + rm $(BIN) + ocamlbuild -clean |