Browse Source

Allow to set which formats to build

master
falkTX 8 years ago
parent
commit
8ae004b611
2 changed files with 15 additions and 0 deletions
  1. +7
    -0
      plugins/Makefile.mk
  2. +8
    -0
      plugins/glBars/Makefile

+ 7
- 0
plugins/Makefile.mk View File

@@ -8,6 +8,13 @@

include ../../Makefile.mk

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

BUILD_JACK = true
BUILD_LV2 = true
BUILD_VST2 = true

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



+ 8
- 0
plugins/glBars/Makefile View File

@@ -26,11 +26,19 @@ include ../Makefile.mk
# --------------------------------------------------------------
# Enable all possible plugin types

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

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

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

all: $(TARGETS)



Loading…
Cancel
Save