Browse Source

Update plugins, remove FILE_BROWSER_DISABLED=true hack

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.5
falkTX 3 years ago
parent
commit
d8ff702cd6
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
11 changed files with 20 additions and 12 deletions
  1. +9
    -10
      Makefile
  2. +2
    -2
      dpf/dgl/Makefile
  3. +1
    -0
      plugins/3BandEQ/Makefile
  4. +1
    -0
      plugins/3BandSplitter/Makefile
  5. +1
    -0
      plugins/AmplitudeImposer/Makefile
  6. +1
    -0
      plugins/CycleShifter/Makefile
  7. +1
    -0
      plugins/MVerb/Makefile
  8. +1
    -0
      plugins/Nekobi/Makefile
  9. +1
    -0
      plugins/PingPongPan/Makefile
  10. +1
    -0
      plugins/SoulForce/Makefile
  11. +1
    -0
      plugins/glBars/Makefile

+ 9
- 10
Makefile View File

@@ -30,25 +30,24 @@ endif
endif endif


plugins: dgl plugins: dgl
# FIXME all the FILE_BROWSER_DISABLED=true stuff need to go into individual plugins
# Kars # Kars
$(MAKE) all -C plugins/Kars $(MAKE) all -C plugins/Kars


# Mini-Series # Mini-Series
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/3BandEQ
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/3BandSplitter
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/PingPongPan
$(MAKE) all -C plugins/3BandEQ
$(MAKE) all -C plugins/3BandSplitter
$(MAKE) all -C plugins/PingPongPan


# ndc-Plugs # ndc-Plugs
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/AmplitudeImposer
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/CycleShifter
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/SoulForce
$(MAKE) all -C plugins/AmplitudeImposer
$(MAKE) all -C plugins/CycleShifter
$(MAKE) all -C plugins/SoulForce


# MVerb # MVerb
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/MVerb
$(MAKE) all -C plugins/MVerb


# Nekobi # Nekobi
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/Nekobi
$(MAKE) all -C plugins/Nekobi


# Max-Gen stuff # Max-Gen stuff
$(MAKE) all -C plugins/bitcrush $(MAKE) all -C plugins/bitcrush
@@ -58,7 +57,7 @@ plugins: dgl


ifeq ($(HAVE_OPENGL),true) ifeq ($(HAVE_OPENGL),true)
# glBars (needs OpenGL) # glBars (needs OpenGL)
$(MAKE) FILE_BROWSER_DISABLED=true all -C plugins/glBars
$(MAKE) all -C plugins/glBars


# ProM (needs OpenGL + ProjectM) # ProM (needs OpenGL + ProjectM)
$(MAKE) all -C plugins/ProM $(MAKE) all -C plugins/ProM


+ 2
- 2
dpf/dgl/Makefile View File

@@ -212,12 +212,12 @@ vulkan: ../build/libdgl-vulkan.a


../build/dgl/%.cpp.opengl3.o: src/%.cpp ../build/dgl/%.cpp.opengl3.o: src/%.cpp
-@mkdir -p ../build/dgl -@mkdir -p ../build/dgl
@echo "Compiling $< (OpenGL variant)"
@echo "Compiling $< (OpenGL3 variant)"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) $(OPENGL_FLAGS) -DDGL_OPENGL -DDGL_USE_OPENGL3 -c -o $@ $(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) $(OPENGL_FLAGS) -DDGL_OPENGL -DDGL_USE_OPENGL3 -c -o $@


../build/dgl/%.mm.opengl3.o: src/%.mm ../build/dgl/%.mm.opengl3.o: src/%.mm
-@mkdir -p ../build/dgl -@mkdir -p ../build/dgl
@echo "Compiling $< (OpenGL variant)"
@echo "Compiling $< (OpenGL3 variant)"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) $(OPENGL_FLAGS) -DDGL_OPENGL -DDGL_USE_OPENGL3 -c -ObjC++ -o $@ $(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) $(OPENGL_FLAGS) -DDGL_OPENGL -DDGL_USE_OPENGL3 -c -ObjC++ -o $@


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


+ 1
- 0
plugins/3BandEQ/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/3BandSplitter/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/AmplitudeImposer/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/CycleShifter/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/MVerb/Makefile View File

@@ -22,6 +22,7 @@ FILES_UI = \
# -------------------------------------------------------------- # --------------------------------------------------------------
# Do some magic # Do some magic


FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/Nekobi/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/PingPongPan/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/SoulForce/Makefile View File

@@ -23,6 +23,7 @@ FILES_UI = \
# Do some magic # Do some magic


UI_TYPE = generic UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


+ 1
- 0
plugins/glBars/Makefile View File

@@ -21,6 +21,7 @@ FILES_UI = \
# -------------------------------------------------------------- # --------------------------------------------------------------
# Do some magic # Do some magic


FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk include ../../dpf/Makefile.plugins.mk


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


Loading…
Cancel
Save