Remove assertions from release builds

I believe the CMakeLists already did that, but the Makefile did not.
This commit is contained in:
ISSOtm
2020-09-27 17:05:52 +02:00
parent a1286e6f0e
commit 8e4a9a5c21

View File

@@ -33,7 +33,7 @@ VERSION_STRING := `git describe --tags --dirty --always 2>/dev/null`
WARNFLAGS := -Wall
# Overridable CFLAGS
CFLAGS ?= -O3
CFLAGS ?= -O3 -DNDEBUG
# Non-overridable CFLAGS
REALCFLAGS := ${CFLAGS} ${WARNFLAGS} -std=gnu11 -D_POSIX_C_SOURCE=200809L \
-Iinclude