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.

39 lines
905B

  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/openav-ducka
  12. $(MAKE) all -C plugins/openav-roomy
  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. dpf/utils/lv2_ttl_generator:
  18. $(MAKE) -C dpf/utils/lv2-ttl-generator
  19. # --------------------------------------------------------------
  20. clean:
  21. $(MAKE) clean -C dpf/dgl
  22. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  23. $(MAKE) clean -C plugins/openav-ducka
  24. $(MAKE) clean -C plugins/openav-roomy
  25. $(MAKE) clean -C plugins/Parameters
  26. $(MAKE) clean -C plugins/States
  27. # --------------------------------------------------------------
  28. .PHONY: plugins