diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,13 +1,15 @@ .PHONY: clean BIN=analyze -SRCDIRS=libs,frontend +SRCDIRS=libs,frontend,interpret SRC= main.ml \ frontend/ast.ml \ frontend/parser.mly \ frontend/lexer.mll \ - frontend/ast_printer.ml + frontend/ast_printer.ml \ + interpret/data.ml \ + interpret/interpret.ml all: $(BIN) |