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

45 lines
877B

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