Skip to content
This repository was archived by the owner on Feb 26, 2026. It is now read-only.

Commit 0e827c4

Browse files
committed
Update dpf, build modguis by default
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 7951033 commit 0e827c4

9 files changed

Lines changed: 45 additions & 27 deletions

File tree

plugins/AB-InputSelector/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
3131
# --------------------------------------------------------------
3232
# Enable all possible plugin types
3333

34+
TARGETS += lv2_sep
35+
36+
ifeq ($(MOD_BUILD),true)
37+
TARGETS += modgui
38+
else
3439
TARGETS += jack
3540
TARGETS += ladspa
36-
TARGETS += lv2_sep
3741
TARGETS += vst2
3842
TARGETS += vst3
3943
TARGETS += clap
40-
41-
ifeq ($(HAVE_OPENGL),true)
42-
ifeq ($(HAVE_LIBLO),true)
44+
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
4345
TARGETS += dssi
4446
endif
4547
endif

plugins/AB-OutputSelector/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
3131
# --------------------------------------------------------------
3232
# Enable all possible plugin types
3333

34+
TARGETS += lv2_sep
35+
36+
ifeq ($(MOD_BUILD),true)
37+
TARGETS += modgui
38+
else
3439
TARGETS += jack
3540
TARGETS += ladspa
36-
TARGETS += lv2_sep
3741
TARGETS += vst2
3842
TARGETS += vst3
3943
TARGETS += clap
40-
41-
ifeq ($(HAVE_OPENGL),true)
42-
ifeq ($(HAVE_LIBLO),true)
44+
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
4345
TARGETS += dssi
4446
endif
4547
endif

plugins/BrickwallLimiter/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
3131
# --------------------------------------------------------------
3232
# Enable all possible plugin types
3333

34+
TARGETS += lv2_sep
35+
36+
ifeq ($(MOD_BUILD),true)
37+
TARGETS += modgui
38+
else
3439
TARGETS += jack
3540
TARGETS += ladspa
36-
TARGETS += lv2_sep
3741
TARGETS += vst2
3842
TARGETS += vst3
3943
TARGETS += clap
40-
41-
ifeq ($(HAVE_OPENGL),true)
42-
ifeq ($(HAVE_LIBLO),true)
44+
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
4345
TARGETS += dssi
4446
endif
4547
endif

plugins/Compressor/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
3232
# --------------------------------------------------------------
3333
# Enable all possible plugin types
3434

35+
TARGETS += lv2_sep
36+
37+
ifeq ($(MOD_BUILD),true)
38+
TARGETS += modgui
39+
else
3540
TARGETS += jack
3641
TARGETS += ladspa
37-
TARGETS += lv2_sep
3842
TARGETS += vst2
3943
TARGETS += vst3
4044
TARGETS += clap
41-
42-
ifeq ($(HAVE_OPENGL),true)
43-
ifeq ($(HAVE_LIBLO),true)
45+
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
4446
TARGETS += dssi
4547
endif
4648
endif

plugins/ConvolutionReverb/Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
5252
# --------------------------------------------------------------
5353
# Enable all possible plugin types
5454

55-
TARGETS += jack
5655
TARGETS += lv2_sep
56+
57+
ifeq ($(MOD_BUILD),true)
58+
TARGETS += modgui
59+
else
60+
TARGETS += jack
61+
TARGETS += ladspa
5762
TARGETS += vst2
5863
TARGETS += vst3
5964
TARGETS += clap
60-
61-
ifeq ($(HAVE_OPENGL),true)
62-
ifeq ($(HAVE_LIBLO),true)
65+
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
6366
TARGETS += dssi
6467
endif
6568
endif

plugins/DevilDistortion/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
3131
# --------------------------------------------------------------
3232
# Enable all possible plugin types
3333

34+
TARGETS += lv2_sep
35+
36+
ifeq ($(MOD_BUILD),true)
37+
TARGETS += modgui
38+
else
3439
TARGETS += jack
3540
TARGETS += ladspa
36-
TARGETS += lv2_sep
3741
TARGETS += vst2
3842
TARGETS += vst3
3943
TARGETS += clap
40-
41-
ifeq ($(HAVE_OPENGL),true)
42-
ifeq ($(HAVE_LIBLO),true)
44+
ifeq ($(HAVE_OPENGL)$(HAVE_LIBLO),truetrue)
4345
TARGETS += dssi
4446
endif
4547
endif

plugins/Sampler/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,17 @@ LINK_FLAGS += $(SHARED_MEMORY_LIBS)
3131
# --------------------------------------------------------------
3232
# Enable all possible plugin types
3333

34+
TARGETS += lv2_sep
35+
36+
ifeq ($(MOD_BUILD),true)
37+
TARGETS += modgui
38+
else
3439
TARGETS += jack
3540
TARGETS += dssi
36-
TARGETS += lv2_sep
3741
TARGETS += vst2
3842
TARGETS += vst3
3943
TARGETS += clap
44+
endif
4045

4146
all: $(TARGETS)
4247

0 commit comments

Comments
 (0)