aboutsummaryrefslogtreecommitdiff
path: root/interpreter/Makefile
diff options
context:
space:
mode:
authorCamil Staps2016-11-08 09:37:13 +0100
committerCamil Staps2016-11-08 09:37:13 +0100
commit95f715a61017a48584ac9dc953bfa0ab92aba13f (patch)
treee069cc0cd9334333419fd82f8ef12f169d2d5e6f /interpreter/Makefile
parentexamples (diff)
Remove leading underscore from _FUSPEL_DEBUG and _FUSPEL_CLI
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r--interpreter/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter/Makefile b/interpreter/Makefile
index 745b01e..eb7c812 100644
--- a/interpreter/Makefile
+++ b/interpreter/Makefile
@@ -1,4 +1,4 @@
-override CFLAGS+=-Werror -Wall -Wextra -Wno-missing-field-initializers -O3 -D_FUSPEL_CLI -D_FUSPEL_DEBUG
+override CFLAGS+=-Werror -Wall -Wextra -Wno-missing-field-initializers -O3 -DFUSPEL_CLI -DFUSPEL_DEBUG -g
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