changeset 53:2e3a1945728e

make: build in debug for now
author David Demelier <markand@malikania.fr>
date Sat, 18 Jan 2020 08:44:53 +0100
parents f581a78c8e78
children 779352498a8a
files Makefile
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Jan 18 08:42:36 2020 +0100
+++ b/Makefile	Sat Jan 18 08:44:53 2020 +0100
@@ -19,7 +19,9 @@
 .POSIX:
 
 CC=             gcc
-CFLAGS=         -MMD -O0 -DNDEBUG -std=c18 -Wall -Wextra -g
+CFLAGS=         -MMD -O0 -std=c18 -Wall -Wextra -g
+# Use this instead to build a release.
+# CFLAGS=         -MMD -O3 -DNDEBUG -std=c18 -Wall -Wextra
 PROG=           molko
 LIB=            libmolko.a
 SRCS=           src/animation.c \