diff options
| author | Camil Staps | 2018-04-03 19:58:23 +0200 |
|---|---|---|
| committer | Camil Staps | 2018-04-03 19:58:23 +0200 |
| commit | 52ad8fc4fc641e3812f5251659db9cce3cd5558b (patch) | |
| tree | 8cd7aa0f5f261f78ddca2bec6da6a0d7521de051 | |
| parent | Fix some minor bugs (diff) | |
Beautify Makefile
| -rw-r--r-- | interpreter/Makefile | 8 |
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 |
