DPF Plugin examples
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.

42 lines
950B

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. all: libs plugins gen
  7. # --------------------------------------------------------------
  8. libs:
  9. $(MAKE) -C dpf/dgl
  10. plugins: libs
  11. $(MAKE) all -C plugins/Info
  12. $(MAKE) all -C plugins/Meters
  13. $(MAKE) all -C plugins/Parameters
  14. $(MAKE) all -C plugins/States
  15. gen: plugins dpf/utils/lv2_ttl_generator
  16. @$(CURDIR)/dpf/utils/generate-ttl.sh
  17. ifeq ($(MACOS),true)
  18. @$(CURDIR)/dpf/utils/generate-vst-bundles.sh
  19. endif
  20. dpf/utils/lv2_ttl_generator:
  21. $(MAKE) -C dpf/utils/lv2-ttl-generator
  22. # --------------------------------------------------------------
  23. clean:
  24. $(MAKE) clean -C dpf/dgl
  25. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  26. $(MAKE) clean -C plugins/Info
  27. $(MAKE) clean -C plugins/Meters
  28. $(MAKE) clean -C plugins/Parameters
  29. $(MAKE) clean -C plugins/States
  30. # --------------------------------------------------------------
  31. .PHONY: plugins