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.

41 lines
969B

  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/Meters
  14. $(MAKE) all -C plugins/Parameters
  15. $(MAKE) all -C plugins/States
  16. gen: plugins dpf/utils/lv2_ttl_generator
  17. @$(CURDIR)/dpf/utils/generate-ttl.sh
  18. dpf/utils/lv2_ttl_generator:
  19. $(MAKE) -C dpf/utils/lv2-ttl-generator
  20. # --------------------------------------------------------------
  21. clean:
  22. $(MAKE) clean -C dpf/dgl
  23. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  24. $(MAKE) clean -C plugins/openav-ducka
  25. $(MAKE) clean -C plugins/openav-roomy
  26. $(MAKE) clean -C plugins/Meters
  27. $(MAKE) clean -C plugins/Parameters
  28. $(MAKE) clean -C plugins/States
  29. # --------------------------------------------------------------
  30. .PHONY: plugins