Browse Source

Allow to set which formats to build

master
falkTX 8 years ago
parent
commit
319738de64
5 changed files with 43 additions and 4 deletions
  1. +11
    -0
      plugins/Makefile.mk
  2. +8
    -1
      plugins/bitcrush/Makefile
  3. +8
    -1
      plugins/freeverb/Makefile
  4. +8
    -1
      plugins/gigaverb/Makefile
  5. +8
    -1
      plugins/pitchshift/Makefile

+ 11
- 0
plugins/Makefile.mk View File

@@ -12,6 +12,17 @@ ifeq ($(OBJS_UI),)
HAVE_DGL = false HAVE_DGL = false
endif endif


# --------------------------------------------------------------
# Set which plugin formats to build

BUILD_JACK = true
ifeq ($(LINUX),true)
BUILD_LADSPA = true
BUILD_DSSI = true
endif
BUILD_LV2 = true
BUILD_VST2 = true

# -------------------------------------------------------------- # --------------------------------------------------------------
# Basic setup # Basic setup




+ 8
- 1
plugins/bitcrush/Makefile View File

@@ -23,16 +23,23 @@ include ../Makefile.mk
# -------------------------------------------------------------- # --------------------------------------------------------------
# Enable all possible plugin types # Enable all possible plugin types


ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true) ifeq ($(HAVE_JACK),true)
TARGETS += jack TARGETS += jack
endif endif
endif


ifeq ($(LINUX),true)
ifeq ($(BUILD_LADSPA),true)
TARGETS += ladspa TARGETS += ladspa
endif endif


ifeq ($(BUILD_LV2),true)
TARGETS += lv2_dsp TARGETS += lv2_dsp
endif

ifeq ($(BUILD_VST),true)
TARGETS += vst TARGETS += vst
endif


all: $(TARGETS) all: $(TARGETS)




+ 8
- 1
plugins/freeverb/Makefile View File

@@ -23,16 +23,23 @@ include ../Makefile.mk
# -------------------------------------------------------------- # --------------------------------------------------------------
# Enable all possible plugin types # Enable all possible plugin types


ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true) ifeq ($(HAVE_JACK),true)
TARGETS += jack TARGETS += jack
endif endif
endif


ifeq ($(LINUX),true)
ifeq ($(BUILD_LADSPA),true)
TARGETS += ladspa TARGETS += ladspa
endif endif


ifeq ($(BUILD_LV2),true)
TARGETS += lv2_dsp TARGETS += lv2_dsp
endif

ifeq ($(BUILD_VST),true)
TARGETS += vst TARGETS += vst
endif


all: $(TARGETS) all: $(TARGETS)




+ 8
- 1
plugins/gigaverb/Makefile View File

@@ -23,16 +23,23 @@ include ../Makefile.mk
# -------------------------------------------------------------- # --------------------------------------------------------------
# Enable all possible plugin types # Enable all possible plugin types


ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true) ifeq ($(HAVE_JACK),true)
TARGETS += jack TARGETS += jack
endif endif
endif


ifeq ($(LINUX),true)
ifeq ($(BUILD_LADSPA),true)
TARGETS += ladspa TARGETS += ladspa
endif endif


ifeq ($(BUILD_LV2),true)
TARGETS += lv2_dsp TARGETS += lv2_dsp
endif

ifeq ($(BUILD_VST),true)
TARGETS += vst TARGETS += vst
endif


all: $(TARGETS) all: $(TARGETS)




+ 8
- 1
plugins/pitchshift/Makefile View File

@@ -23,16 +23,23 @@ include ../Makefile.mk
# -------------------------------------------------------------- # --------------------------------------------------------------
# Enable all possible plugin types # Enable all possible plugin types


ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true) ifeq ($(HAVE_JACK),true)
TARGETS += jack TARGETS += jack
endif endif
endif


ifeq ($(LINUX),true)
ifeq ($(BUILD_LADSPA),true)
TARGETS += ladspa TARGETS += ladspa
endif endif


ifeq ($(BUILD_LV2),true)
TARGETS += lv2_dsp TARGETS += lv2_dsp
endif

ifeq ($(BUILD_VST),true)
TARGETS += vst TARGETS += vst
endif


all: $(TARGETS) all: $(TARGETS)




Loading…
Cancel
Save