aboutsummaryrefslogtreecommitdiff
path: root/interpreter/Makefile
diff options
context:
space:
mode:
authorCamil Staps2016-10-07 13:37:48 +0200
committerCamil Staps2016-10-07 13:42:36 +0200
commit588546d80f1728cb059c6ba9f6b3c1d79f0f0803 (patch)
treee3b2a51f29f69d35fb20e143724ec08f9269924b /interpreter/Makefile
parentFixing the build (diff)
Makefile: add override to CFLAGS
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 824cb90..400db3d 100644
--- a/interpreter/Makefile
+++ b/interpreter/Makefile
@@ -1,4 +1,4 @@
-CFLAGS=-Werror -Wall -Wextra -Wno-missing-field-initializers -O3 -D_FUSPEL_CLI
+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