aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4f1b0ae..22d10c5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
.PHONY: install uninstall dev clean test me a sandwich
name := halk
cc := gcc
-flags := -s
-devflags := -ggdb -fsanitize=leak -fno-omit-frame-pointer
+flags :=
+devflags := -ggdb -fsanitize=leak,address,undefined -fno-omit-frame-pointer
sources := $(wildcard src/*.c)
sources := $(filter-out src/parser.c, $(sources)) # exclude the incomplete parser for now.
objects := $(sources:.c=.o)