aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-09-13 00:37:10 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-09-13 00:39:31 -0300
commit465620a871e7da8d72d82a999eac8623570d13fd (patch)
treed66a0d17556630e88730488b5223823adef19b03 /Makefile
parent16f2e00b055c8356a7e80fa3b92e7df5a5c89a4c (diff)
downloadgame-465620a871e7da8d72d82a999eac8623570d13fd.tar.gz
game-465620a871e7da8d72d82a999eac8623570d13fd.zip
add `MAX_DEPOTS` constant + enable assertions in debug mode
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 80eda20..097c430 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ LFLAGS = -Wl,-t -lcrypto
DEBUG ?= 0
ifneq ($(DEBUG), 0)
- CFLAGS += -g -Og
+ CFLAGS += -g -Og -DENABLE_ASSERTIONS=1
else
CFLAGS += -O2
endif