Skip to content

Commit

Permalink
Update dpf, build modguis by default
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Mar 15, 2023
1 parent 7951033 commit 0e827c4
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 27 deletions.
10 changes: 6 additions & 4 deletions plugins/AB-InputSelector/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
TARGETS += clap

ifeq ($(HAVE_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif
Expand Down
10 changes: 6 additions & 4 deletions plugins/AB-OutputSelector/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
TARGETS += clap

ifeq ($(HAVE_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif
Expand Down
10 changes: 6 additions & 4 deletions plugins/BrickwallLimiter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
TARGETS += clap

ifeq ($(HAVE_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif
Expand Down
10 changes: 6 additions & 4 deletions plugins/Compressor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
TARGETS += clap

ifeq ($(HAVE_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif
Expand Down
11 changes: 7 additions & 4 deletions plugins/ConvolutionReverb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += jack
TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += ladspa
TARGETS += vst2
TARGETS += vst3
TARGETS += clap

ifeq ($(HAVE_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif
Expand Down
10 changes: 6 additions & 4 deletions plugins/DevilDistortion/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
TARGETS += clap

ifeq ($(HAVE_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif
Expand Down
7 changes: 6 additions & 1 deletion plugins/Sampler/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += lv2_sep

ifeq ($(MOD_BUILD),true)
TARGETS += modgui
else
TARGETS += jack
TARGETS += dssi
TARGETS += lv2_sep
TARGETS += vst2
TARGETS += vst3
TARGETS += clap
endif

all: $(TARGETS)

Expand Down

0 comments on commit 0e827c4

Please sign in to comment.