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.

Makefile 888B

11 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
10 years ago
12345678910111213141516171819202122232425262728293031
  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 audio_decoder
  10. $(MAKE) clean -C dgl
  11. $(MAKE) clean -C lilv
  12. $(MAKE) clean -C rtaudio
  13. $(MAKE) clean -C rtmempool
  14. $(MAKE) clean -C rtmidi
  15. $(MAKE) clean -C sfzero
  16. $(MAKE) clean -C water
  17. $(MAKE) clean -C juce_audio_basics
  18. $(MAKE) clean -C juce_audio_devices
  19. $(MAKE) clean -C juce_audio_processors
  20. $(MAKE) clean -C juce_core
  21. $(MAKE) clean -C juce_data_structures
  22. $(MAKE) clean -C juce_events
  23. $(MAKE) clean -C juce_graphics
  24. $(MAKE) clean -C juce_gui_basics
  25. $(MAKE) clean -C juce_gui_extra
  26. # ----------------------------------------------------------------------------------------------------------------------------