From 44db9aa1ec6cea274882b36fd156a631afcd9e00 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 17 Apr 2022 14:26:41 +0200 Subject: [PATCH] OPTIMIZE = -O3 (#99) Closes https://github.com/probonopd/MiniDexed/issues/95 Thanks @rsta2 --- src/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile b/src/Makefile index e967049..3ea9c78 100644 --- a/src/Makefile +++ b/src/Makefile @@ -11,5 +11,7 @@ OBJS = main.o kernel.o minidexed.o config.o userinterface.o uimenu.o \ sysexfileloader.o performanceconfig.o perftimer.o \ effect_compressor.o effect_platervbstereo.o +OPTIMIZE = -O3 + include ./Synth_Dexed.mk include ./Rules.mk