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.

35 lines
753B

  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/Parameters
  12. $(MAKE) all -C plugins/States
  13. gen: plugins dpf/utils/lv2_ttl_generator
  14. @$(CURDIR)/dpf/utils/generate-ttl.sh
  15. dpf/utils/lv2_ttl_generator:
  16. $(MAKE) -C dpf/utils/lv2-ttl-generator
  17. # --------------------------------------------------------------
  18. clean:
  19. $(MAKE) clean -C dpf/dgl
  20. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  21. $(MAKE) clean -C plugins/Parameters
  22. $(MAKE) clean -C plugins/States
  23. # --------------------------------------------------------------
  24. .PHONY: plugins