DISTRHO Juice Plugins
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.

55 lines
1.2KB

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. include dpf/Makefile.base.mk
  7. all: dgl plugins gen
  8. # --------------------------------------------------------------
  9. dgl:
  10. ifeq ($(HAVE_DGL),true)
  11. $(MAKE) -C dpf/dgl
  12. endif
  13. plugins: dgl
  14. $(MAKE) all -C plugins/PowerJuice
  15. $(MAKE) all -C plugins/PowerJuiceX2
  16. $(MAKE) all -C plugins/StutterJuice
  17. $(MAKE) all -C plugins/TriggerJuice
  18. $(MAKE) all -C plugins/VectorJuice
  19. $(MAKE) all -C plugins/WobbleJuice
  20. ifneq ($(CROSS_COMPILING),true)
  21. gen: plugins dpf/utils/lv2_ttl_generator
  22. @$(CURDIR)/dpf/utils/generate-ttl.sh
  23. ifeq ($(MACOS),true)
  24. @$(CURDIR)/dpf/utils/generate-vst-bundles.sh
  25. endif
  26. dpf/utils/lv2_ttl_generator:
  27. $(MAKE) -C dpf/utils/lv2-ttl-generator
  28. else
  29. gen:
  30. endif
  31. # --------------------------------------------------------------
  32. clean:
  33. $(MAKE) clean -C dpf/dgl
  34. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  35. $(MAKE) clean -C plugins/PowerJuice
  36. $(MAKE) clean -C plugins/PowerJuiceX2
  37. $(MAKE) clean -C plugins/StutterJuice
  38. $(MAKE) clean -C plugins/TriggerJuice
  39. $(MAKE) clean -C plugins/VectorJuice
  40. $(MAKE) clean -C plugins/WobbleJuice
  41. rm -rf bin build
  42. # --------------------------------------------------------------
  43. .PHONY: plugins