From 018995a0c72c060f6746013235bdd8ef2b633e9e Mon Sep 17 00:00:00 2001 From: Kied Llaentenn <32681240+Kiedtl@users.noreply.github.com> Date: Fri, 13 Dec 2019 09:44:13 -0500 Subject: [PATCH] makefile: cflags: optimization --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 52bc547..898d1ab 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,7 @@ WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \ INC = -Isub/termbox_next/src -Isub/ccommon/ CC = clang -CFLAGS = -g -std=c99 $(WARNING) $(INC) +CFLAGS = -std=c99 -O3 $(WARNING) $(INC) LDFLAGS = -fuse-ld=lld TRMBOX = sub/termbox_next/bin/termbox.a