DPF Plugin examples
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.

52 lines
1.1KB

  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/Info
  15. $(MAKE) all -C plugins/Latency
  16. $(MAKE) all -C plugins/Meters
  17. $(MAKE) all -C plugins/MidiThrough
  18. $(MAKE) all -C plugins/Parameters
  19. $(MAKE) all -C plugins/States
  20. gen: plugins dpf/utils/lv2_ttl_generator
  21. @$(CURDIR)/dpf/utils/generate-ttl.sh
  22. ifeq ($(MACOS),true)
  23. @$(CURDIR)/dpf/utils/generate-vst-bundles.sh
  24. endif
  25. dpf/utils/lv2_ttl_generator:
  26. $(MAKE) -C dpf/utils/lv2-ttl-generator
  27. # --------------------------------------------------------------
  28. clean:
  29. ifeq ($(HAVE_DGL),true)
  30. $(MAKE) clean -C dpf/dgl
  31. endif
  32. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  33. $(MAKE) clean -C plugins/Info
  34. $(MAKE) clean -C plugins/Latency
  35. $(MAKE) clean -C plugins/Meters
  36. $(MAKE) clean -C plugins/MidiThrough
  37. $(MAKE) clean -C plugins/Parameters
  38. $(MAKE) clean -C plugins/States
  39. # --------------------------------------------------------------
  40. .PHONY: plugins