aboutsummaryrefslogtreecommitdiff
path: root/interpreter/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r--interpreter/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/interpreter/Makefile b/interpreter/Makefile
index 5288c88..25c28ee 100644
--- a/interpreter/Makefile
+++ b/interpreter/Makefile
@@ -1,7 +1,7 @@
-CFLAGS=-Wall -Wextra -Werror -Wpedantic -s
+CFLAGS=-Wall -Wextra -Werror -s
-DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h
-OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o
+DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h
+OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o
EXE=fuspelc
.PHONY: all clean