From 931f28e08d16ff5838e3b48cae6e272940a37791 Mon Sep 17 00:00:00 2001 From: Kian Kasad Date: Thu, 28 May 2020 12:40:35 -0700 Subject: set compiler optimization option --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a9df842..7bcc1fd 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC ?= gcc LOLCAT_SRC ?= lolcat.c CENSOR_SRC ?= censor.c -CFLAGS ?= -std=c11 -Wall -Wextra +CFLAGS ?= -std=c11 -Wall -Wextra -O3 DESTDIR ?= /usr/local/bin -- cgit