From 3afe02ab8cc438fd8dd3a4da7a2b32bdeb972018 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemay?= Date: Mon, 11 Mar 2024 09:40:37 -0400 Subject: [PATCH] Update Make with -O2 flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9661686..ce3c680 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC = gcc IDIR = include ODIR = obj SRC = src -CFLAGS = -I include -I ~/.local/include -L ~/.local/lib -L ~/.local/lib64 +CFLAGS = -O2 -I include -I ~/.local/include -L ~/.local/lib -L ~/.local/lib64 LIBS = -lhts -lpthread DEPS = $(IDIR)/functions.h OBJ = $(ODIR)/functions.o $(ODIR)/main.o