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.

46 lines
989B

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. include Makefile.mk
  7. all: libs plugins gen
  8. # --------------------------------------------------------------
  9. libs:
  10. ifeq ($(HAVE_DGL),true)
  11. $(MAKE) -C dpf/dgl
  12. endif
  13. plugins: libs
  14. $(MAKE) all -C plugins/3BandEQ
  15. $(MAKE) all -C plugins/3BandSplitter
  16. $(MAKE) all -C plugins/PingPongPan
  17. gen: plugins dpf/utils/lv2_ttl_generator
  18. @$(CURDIR)/dpf/utils/generate-ttl.sh
  19. ifeq ($(MACOS),true)
  20. @$(CURDIR)/dpf/utils/generate-vst-bundles.sh
  21. endif
  22. dpf/utils/lv2_ttl_generator:
  23. $(MAKE) -C dpf/utils/lv2-ttl-generator
  24. # --------------------------------------------------------------
  25. clean:
  26. ifeq ($(HAVE_DGL),true)
  27. $(MAKE) clean -C dpf/dgl
  28. endif
  29. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  30. $(MAKE) clean -C plugins/3BandEQ
  31. $(MAKE) clean -C plugins/3BandSplitter
  32. $(MAKE) clean -C plugins/PingPongPan
  33. # --------------------------------------------------------------
  34. .PHONY: plugins