summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5e785e0..9f1896f 100644
--- a/Makefile
+++ b/Makefile
@@ -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)