Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Dec 11, 2023
1 parent 43df48f commit 19dacea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
22 changes: 14 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,26 @@ all: dgl plugins gen

# --------------------------------------------------------------

ifeq ($(MOD_BUILD),true)
MAKE_TARGET = lv2_sep
else
MAKE_TARGET = all
endif

dgl:
ifeq ($(HAVE_OPENGL),true)
$(MAKE) -C dpf/dgl opengl
endif

plugins: dgl
$(MAKE) all -C plugins/AB-InputSelector
$(MAKE) all -C plugins/AB-OutputSelector
$(MAKE) all -C plugins/BrickwallLimiter
$(MAKE) all -C plugins/Compressor
$(MAKE) all -C plugins/ConvolutionReverb
$(MAKE) all -C plugins/DevilDistortion
$(MAKE) all -C plugins/Filter
# $(MAKE) all -C plugins/Sampler
$(MAKE) $(MAKE_TARGET) -C plugins/AB-InputSelector
$(MAKE) $(MAKE_TARGET) -C plugins/AB-OutputSelector
$(MAKE) $(MAKE_TARGET) -C plugins/BrickwallLimiter
$(MAKE) $(MAKE_TARGET) -C plugins/Compressor
$(MAKE) $(MAKE_TARGET) -C plugins/ConvolutionReverb
$(MAKE) $(MAKE_TARGET) -C plugins/DevilDistortion
$(MAKE) $(MAKE_TARGET) -C plugins/Filter
# $(MAKE) $(MAKE_TARGET) -C plugins/Sampler

ifneq ($(CROSS_COMPILING),true)
gen: plugins dpf/utils/lv2_ttl_generator
Expand Down
4 changes: 4 additions & 0 deletions plugins/Filter/DistrhoPluginInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
#define DISTRHO_PLUGIN_NUM_OUTPUTS 1
#endif

// TODO
#undef DISTRHO_PLUGIN_HAS_UI
#define DISTRHO_PLUGIN_HAS_UI 0

enum Parameters {
kParameterType = 0,
kParameterFrequency,
Expand Down

0 comments on commit 19dacea

Please sign in to comment.