diff options
author | Camil Staps | 2016-10-06 18:14:51 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-06 18:14:51 +0200 |
commit | 1035d4165cb555ee7a010203bbefdfc1c5799baa (patch) | |
tree | ccb80c3f4a1f1efc25f9cc6b4bae4a26cc88a6fc /interpreter/Makefile | |
parent | List notation shortcut (resolves #5) (diff) |
Made the CLI an option to save binary space on minimal platforms
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 8edcabe..796a90b 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -1,4 +1,4 @@ -CFLAGS=-Werror -Wall -Wextra -O3 +CFLAGS=-Werror -Wall -Wextra -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 |