aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authors-over-42023-06-21 17:17:11 -0400
committers-over-42023-06-21 17:17:11 -0400
commite7d1e397730c271ccb11ce547cd941d740f5a2fc (patch)
tree8b82021d1d958d350cebe98b57d6783a2c2b71ba /Makefile
parent46f4397bf0718fbaf2cee5b4ffd56d4a36f2c4d8 (diff)
NO MORE OTHER BORKED SHIAT :D
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)