aboutsummaryrefslogtreecommitdiff
path: root/interpreter/Makefile
diff options
context:
space:
mode:
authorCamil Staps2018-04-03 19:58:23 +0200
committerCamil Staps2018-04-03 19:58:23 +0200
commit52ad8fc4fc641e3812f5251659db9cce3cd5558b (patch)
tree8cd7aa0f5f261f78ddca2bec6da6a0d7521de051 /interpreter/Makefile
parentFix some minor bugs (diff)
Beautify Makefile
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r--interpreter/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/interpreter/Makefile b/interpreter/Makefile
index eb7c812..4ff50a9 100644
--- a/interpreter/Makefile
+++ b/interpreter/Makefile
@@ -1,4 +1,10 @@
-override CFLAGS+=-Werror -Wall -Wextra -Wno-missing-field-initializers -O3 -DFUSPEL_CLI -DFUSPEL_DEBUG -g
+override CFLAGS+=\
+ -Werror -Wall -Wextra\
+ -Wno-missing-field-initializers\
+ -fPIC\
+ -O3\
+ -DFUSPEL_CLI\
+ -DFUSPEL_DEBUG
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