summaryrefslogtreecommitdiff
path: root/plugins/ZamSynth/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ZamSynth/Makefile')
-rw-r--r--plugins/ZamSynth/Makefile23
1 files changed, 21 insertions, 2 deletions
diff --git a/plugins/ZamSynth/Makefile b/plugins/ZamSynth/Makefile
index 56a0426..cd68dd2 100644
--- a/plugins/ZamSynth/Makefile
+++ b/plugins/ZamSynth/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 dssi lv2_sep vst
+TARGETS += dssi_dsp
+ifeq ($(HAVE_DGL),true)
+ifeq ($(HAVE_LIBLO),true)
+TARGETS += dssi_ui
+endif
+endif
+endif
+
+ifeq ($(HAVE_DGL),true)
+TARGETS += lv2_sep
else
-all: dssi lv2_sep vst
+TARGETS += lv2_dsp
endif
+TARGETS += vst
+
+all: $(TARGETS)
+
# --------------------------------------------------------------