aboutsummaryrefslogtreecommitdiff
path: root/interpreter/Makefile
diff options
context:
space:
mode:
authorCamil Staps2016-10-07 21:21:40 +0200
committerCamil Staps2016-10-07 21:21:40 +0200
commitf8e50700cd0eb93154f5c025ef20d428986b856c (patch)
treee239bc8748edf2b1b80bf532dd46b6ddb5ab8614 /interpreter/Makefile
parentResolve #12, don't show code keyword in debug graph (diff)
Cleanup (resolves #9)
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r--interpreter/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/interpreter/Makefile b/interpreter/Makefile
index 400db3d..a1fba34 100644
--- a/interpreter/Makefile
+++ b/interpreter/Makefile
@@ -1,7 +1,7 @@
override CFLAGS+=-Werror -Wall -Wextra -Wno-missing-field-initializers -O3 -D_FUSPEL_CLI
-DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h graphs.h
-OBJ=fuspel.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o graphs.o
+DEPS=fuspel.h lex.h syntax.h print.h parse.h eval.h mem.h code.h graphs.h
+OBJ=fuspel.o lex.o syntax.o print.o parse.o eval.o mem.o code.o graphs.o
EXE=fuspel
.PHONY: all clean