aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-10-20 16:42:21 +0200
committerlemon <lsof@mailbox.org>2025-10-20 16:42:21 +0200
commitbd3caaa6a0a18bf3cd7038d97c7367b0282146d5 (patch)
treeb8d2c5e4f2d595d8fd72116c1ad16cc1f789f60f /Makefile
parent4de360ee2b48a5a0631c015443cf279277415423 (diff)
Makefile: always have -g
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3d8f411..8565d2d 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ OUT=antcc
all: CFLAGS += -g
all: $(OUT)
-opt: CFLAGS += -O2
+opt: CFLAGS += -g -O2
opt: $(OUT)
dbg: CFLAGS += -g -fsanitize=address -fsanitize=undefined