DISTRHO MVerb
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
972B

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