diff options
author | Camil Staps | 2016-10-07 13:37:48 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-07 13:42:36 +0200 |
commit | 588546d80f1728cb059c6ba9f6b3c1d79f0f0803 (patch) | |
tree | e3b2a51f29f69d35fb20e143724ec08f9269924b /interpreter/Makefile | |
parent | Fixing the build (diff) |
Makefile: add override to CFLAGS
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r-- | interpreter/Makefile | 2 |
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 |