From 5681a17a5ef0593bf1651acebb80659562efcc04 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 4 Dec 2022 18:59:50 +0100 Subject: [PATCH] added optimalisation to CFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 13c7e5f..3830241 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ # Compiler Settings CC=cc -CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnull -Wunused -std=gnu11 +CFLAGS=-Wall -Wextra -Werror -Wcomment -Wformat -Wformat-security -Wmain -Wnonnull -Wunused -std=gnu11 -O2 # Source Code SRC_CORE=./src/core/lib/*.c