Extra "ports" of juce-based plugins using the distrho build system
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.

59 lines
1.2KB

  1. # -----------------------------------------
  2. # Compile all the Plugins
  3. all: plugins
  4. plugins: lv2 vst
  5. # -----------------------------------------
  6. # lv2
  7. lv2:
  8. install -d ../bin/lv2
  9. $(MAKE) -C argotlunar/LV2
  10. $(MAKE) -C cabbage/LV2-fx
  11. $(MAKE) -C cabbage/LV2-ins
  12. $(MAKE) -C cabbage/LV2-midi
  13. $(MAKE) -C protoplug/LV2-fx
  14. $(MAKE) -C protoplug/LV2-gen
  15. # -----------------------------------------
  16. # vst
  17. vst:
  18. install -d ../bin/vst
  19. $(MAKE) -C argotlunar/VST
  20. $(MAKE) -C cabbage/VST-fx
  21. $(MAKE) -C cabbage/VST-ins
  22. $(MAKE) -C cabbage/VST-midi
  23. $(MAKE) -C protoplug/VST-fx
  24. $(MAKE) -C protoplug/VST-gen
  25. # -----------------------------------------
  26. # clean
  27. clean:
  28. # LV2
  29. $(MAKE) clean -C argotlunar/LV2
  30. $(MAKE) clean -C cabbage/LV2-fx
  31. $(MAKE) clean -C cabbage/LV2-ins
  32. $(MAKE) clean -C cabbage/LV2-midi
  33. $(MAKE) clean -C protoplug/LV2-fx
  34. $(MAKE) clean -C protoplug/LV2-gen
  35. # VST
  36. $(MAKE) clean -C argotlunar/VST
  37. $(MAKE) clean -C cabbage/VST-fx
  38. $(MAKE) clean -C cabbage/VST-ins
  39. $(MAKE) clean -C cabbage/VST-midi
  40. $(MAKE) clean -C protoplug/VST-fx
  41. $(MAKE) clean -C protoplug/VST-gen
  42. rm -rf */LV2/intermediate
  43. rm -rf */VST/intermediate
  44. distclean: clean
  45. rm -rf */LV2/*.lv2
  46. rm -f */*/Makefile
  47. rm -f */*/*.make