summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWormHeamer2025-12-28 04:19:59 -0500
committerWormHeamer2025-12-28 04:19:59 -0500
commit615601fb355709d611d18f878f77c993c312f6aa (patch)
tree5fb32e00c201944f9c77308da1ab9bee443bdf7c /Makefile
parent9f4310c24ca39284ad768a82d368e749b18fd76c (diff)
lots of features & bugfixes both
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 36549b0..1513859 100644
--- a/Makefile
+++ b/Makefile
@@ -10,10 +10,10 @@ OBJ != find -type f -name '*.c' | sed 's/\.c$$/.o/'
DEBUG = 0
CFLAGS_0 = -O2 -DNDEBUG
-CFLAGS_1 = -O0 -g3 # -fsanitize=address,undefined
+CFLAGS_1 = -O0 -g3 -fsanitize=undefined
CFLAGS_2 = -O2 -g3 -DNDEBUG
LDFLAGS_0 = -s
-LDFLAGS_1 = -g3 # -fsanitize=address,undefined
+LDFLAGS_1 = -g3 -fsanitize=undefined
LDFLAGS_2 = -O2 -g3
PREFIX ?= ${HOME}/.local