summaryrefslogtreecommitdiff
path: root/plugins/ZaMultiCompX2/Makefile
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2015-06-13 17:12:13 +0200
committerfalkTX <falktx@gmail.com>2015-06-13 17:12:13 +0200
commitf90ae6effcc933e55afebf601ea8f876598e69a2 (patch)
tree180a0d0362767307bb0872d29f8944ce0a220afd /plugins/ZaMultiCompX2/Makefile
parent7bf500ab4a849054464e2cf9a39400a3e7518191 (diff)
Update all Makefiles
Diffstat (limited to 'plugins/ZaMultiCompX2/Makefile')
-rw-r--r--plugins/ZaMultiCompX2/Makefile23
1 files changed, 21 insertions, 2 deletions
diff --git a/plugins/ZaMultiCompX2/Makefile b/plugins/ZaMultiCompX2/Makefile
index 61eaff1..ab019d4 100644
--- a/plugins/ZaMultiCompX2/Makefile
+++ b/plugins/ZaMultiCompX2/Makefile
@@ -27,10 +27,29 @@ include ../Makefile.mk
# --------------------------------------------------------------
# Enable all possible plugin types
+ifeq ($(HAVE_DGL),true)
+ifeq ($(HAVE_JACK),true)
+TARGETS += jack
+endif
+endif
+
ifeq ($(LINUX),true)
-all: jack ladspa dssi lv2_sep vst
+TARGETS += ladspa
+ifeq ($(HAVE_DGL),true)
+ifeq ($(HAVE_LIBLO),true)
+TARGETS += dssi
+endif
+endif
+endif
+
+ifeq ($(HAVE_DGL),true)
+TARGETS += lv2_sep
else
-all: ladspa vst
+TARGETS += lv2_dsp
endif
+TARGETS += vst
+
+all: $(TARGETS)
+
# --------------------------------------------------------------