From ad2d6be378be8ec978b5221bdc5646103db98e9c Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 21 Jul 2018 22:02:33 +0200 Subject: [PATCH] Don't build zynaddsubfx if debug is on --- Makefile.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.mk b/Makefile.mk index 1ff8290..df71125 100644 --- a/Makefile.mk +++ b/Makefile.mk @@ -60,11 +60,13 @@ BASE_FLAGS += -DHAVE_PROJECTM endif ifeq ($(HAVE_ZYN_DEPS),true) +ifneq ($(DEBUG),true) BASE_FLAGS += -DHAVE_ZYN_DEPS ifeq ($(HAVE_ZYN_UI_DEPS),true) BASE_FLAGS += -DHAVE_ZYN_UI_DEPS endif endif +endif # ---------------------------------------------------------------------------------------------------------------------