polyadvent

A game engine from scratch in C
git clone git://jb55.com/polyadvent
Log | Files | Refs | README

commit ebc9f7ba3a816746eb1289189aaf00486f69aad4
parent 597ceb32adbbb0ca6908046e944bd0239e280fbb
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 27 Apr 2020 00:14:04 -0700

fast builds

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -7,7 +7,7 @@ DEFS= -DGLFW_INCLUDE_NONE # CFLAGS = $(DEFS) -ggdb -O0 -I src -Wall -Wextra -std=c99 \ -CFLAGS = $(DEFS) -Ofast -I src -Wall -Werror -Wextra -std=c99 \ +CFLAGS = $(DEFS) -O1 -g -DDEBUG -I src -Wall -Werror -Wextra -std=c99 \ -Wno-unused-function \ -Wno-unused-parameter \ -Wno-unused-variable \