DISTRHO Kars
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.

39 lines
783B

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. include dpf/Makefile.base.mk
  7. all: plugins gen
  8. # --------------------------------------------------------------
  9. plugins:
  10. $(MAKE) all -C plugins/Kars
  11. ifneq ($(CROSS_COMPILING),true)
  12. gen: plugins dpf/utils/lv2_ttl_generator
  13. @$(CURDIR)/dpf/utils/generate-ttl.sh
  14. ifeq ($(MACOS),true)
  15. @$(CURDIR)/dpf/utils/generate-vst-bundles.sh
  16. endif
  17. dpf/utils/lv2_ttl_generator:
  18. $(MAKE) -C dpf/utils/lv2-ttl-generator
  19. else
  20. gen:
  21. endif
  22. # --------------------------------------------------------------
  23. clean:
  24. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  25. $(MAKE) clean -C plugins/Kars
  26. rm -rf bin build
  27. # --------------------------------------------------------------
  28. .PHONY: plugins