Browse Source

Fix make clean for STATIC_PLUGIN_TARGET

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.2
falkTX 2 years ago
parent
commit
719246eb66
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 7 additions and 3 deletions
  1. +5
    -3
      Makefile
  2. +2
    -0
      source/modules/Makefile

+ 5
- 3
Makefile View File

@@ -389,15 +389,17 @@ clean:
$(MAKE) clean -C source/backend
$(MAKE) clean -C source/bridges-plugin
$(MAKE) clean -C source/bridges-ui
$(MAKE) clean -C source/modules
$(MAKE) clean -C source/native-plugins
$(MAKE) clean -C source/plugin
ifneq ($(STATIC_PLUGIN_TARGET),true)
$(MAKE) clean -C source/discovery
$(MAKE) clean -C source/frontend
$(MAKE) clean -C source/interposer
$(MAKE) clean -C source/libjack
$(MAKE) clean -C source/modules
$(MAKE) clean -C source/native-plugins
$(MAKE) clean -C source/plugin
$(MAKE) clean -C source/tests
$(MAKE) clean -C source/theme
endif
rm -f *~ source/*~

distclean: clean


+ 2
- 0
source/modules/Makefile View File

@@ -19,6 +19,7 @@ clean:
$(MAKE) clean -C water
$(MAKE) clean -C zita-resampler

ifneq ($(STATIC_PLUGIN_TARGET),true)
$(MAKE) clean -C juce_audio_basics
$(MAKE) clean -C juce_audio_devices
$(MAKE) clean -C juce_audio_processors
@@ -28,5 +29,6 @@ clean:
$(MAKE) clean -C juce_graphics
$(MAKE) clean -C juce_gui_basics
$(MAKE) clean -C juce_gui_extra
endif

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

Loading…
Cancel
Save