fix: not adding -DNDEBUG flag to compilation

This commit is contained in:
2025-06-19 23:32:38 +02:00
parent e18e9b0297
commit 8304c0620b

View File

@@ -1,5 +1,5 @@
CC ?= cc
CFLAGS += -Wall -Wextra -Wpedantic -O3 -MD -MP -std=gnu99
CFLAGS += -Wall -Wextra -Wpedantic -O3 -MD -MP -std=gnu99 -DNDEBUG
LDFLAGS +=
SRC = $(shell find src/ -name '*.c')