diff options
author | Camil Staps | 2016-09-24 10:22:53 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-24 10:22:53 +0200 |
commit | 314bcfc67fb95df06c8177cab8792b46b25d90fc (patch) | |
tree | a8b8a37b53938758378690ae2842f793eddaa262 /interpreter/Makefile | |
parent | Fix one memory leak mentioned in #2; add debug dot graphs output (diff) |
Working graphs (?)
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 99da737..2f13de3 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -1,4 +1,4 @@ -CFLAGS=-Wall -Wextra -Werror -s +CFLAGS=-Wall -Wextra -Wno-format -Werror 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 |