Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
821B

  1. #!/usr/bin/make -f
  2. # Makefile for carla modules #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. # ----------------------------------------------------------------------------------------------------------------------------
  7. all:
  8. clean:
  9. $(MAKE) clean -C juce_audio_basics
  10. $(MAKE) clean -C juce_audio_devices
  11. $(MAKE) clean -C juce_audio_formats
  12. $(MAKE) clean -C juce_audio_processors
  13. $(MAKE) clean -C juce_core
  14. $(MAKE) clean -C juce_data_structures
  15. $(MAKE) clean -C juce_events
  16. $(MAKE) clean -C juce_graphics
  17. $(MAKE) clean -C juce_gui_basics
  18. $(MAKE) clean -C juce_gui_extra
  19. $(MAKE) clean -C lilv
  20. $(MAKE) clean -C rtaudio
  21. $(MAKE) clean -C rtmempool
  22. $(MAKE) clean -C rtmidi
  23. # ----------------------------------------------------------------------------------------------------------------------------