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.

43 lines
1.0KB

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