From a38cfc1cbadb0166e97e77bd30046486ff00cef1 Mon Sep 17 00:00:00 2001 From: 0xmac Date: Mon, 2 Dec 2024 14:05:26 +0100 Subject: [PATCH] Added -O2 Optimisation --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8193a72..afe5fd4 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,8 @@ clean: ls7emulator: cd src - $(CC) ls7emulator.c -o ls7emulator $(CFLAGS) - + $(CC) ls7emulator.c -o ls7emulator $(CFLAGS) -O2 + rm ../bin -rf mkdir ../bin cd ../bin