DISTRHO Mini-Series
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.

37 lines
828B

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