makefile: cflags: optimization

This commit is contained in:
Kied Llaentenn 2019-12-13 09:44:13 -05:00
parent a7b012c086
commit 018995a0c7

View File

@ -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