From b247f8f827656462899c96422bffe1d85a6d64f6 Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Wed, 12 Apr 2023 14:33:29 -0400 Subject: [PATCH] Add speed optimization flag to CFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e65efb5..149c2ac 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ ODIR:=obj BINDIR:=build CC:=cc -CFLAGS:=-I$(IDIR) -Wall -Wextra -pedantic +CFLAGS:=-I$(IDIR) -Wall -Wextra -pedantic -Ofast LIB:= DEPS:=$($(IDIR)/%.h)