diff --git a/plugins/Kars/Makefile b/plugins/Kars/Makefile index 4f38566..2fd3309 100644 --- a/plugins/Kars/Makefile +++ b/plugins/Kars/Makefile @@ -27,13 +27,13 @@ include ../Makefile.mk # -------------------------------------------------------------- # Enable all possible plugin types -ifeq ($(HAVE_DGL),true) +ifeq ($(BUILD_JACK),true) ifeq ($(HAVE_JACK),true) TARGETS += jack endif endif -ifeq ($(LINUX),true) +ifeq ($(BUILD_DSSI),true) TARGETS += dssi_dsp ifeq ($(HAVE_DGL),true) ifeq ($(HAVE_LIBLO),true) @@ -42,13 +42,17 @@ endif endif endif +ifeq ($(BUILD_LV2),true) ifeq ($(HAVE_DGL),true) TARGETS += lv2_sep else TARGETS += lv2_dsp endif +endif +ifeq ($(BUILD_VST),true) TARGETS += vst +endif all: $(TARGETS) diff --git a/plugins/Makefile.mk b/plugins/Makefile.mk index 4ebdb1e..6a04c51 100644 --- a/plugins/Makefile.mk +++ b/plugins/Makefile.mk @@ -12,6 +12,16 @@ ifeq ($(OBJS_UI),) HAVE_DGL = false endif +# -------------------------------------------------------------- +# Set which plugin formats to build + +BUILD_JACK = true +ifeq ($(LINUX),true) +BUILD_DSSI = true +endif +BUILD_LV2 = true +BUILD_VST2 = true + # -------------------------------------------------------------- # Basic setup