DPF with Max Gen
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
1.1KB

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. include Makefile.mk
  7. all: plugins gen
  8. # --------------------------------------------------------------
  9. plugins:
  10. $(MAKE) all -C plugins/bitcrush
  11. $(MAKE) all -C plugins/freeverb
  12. $(MAKE) all -C plugins/gigaverb
  13. $(MAKE) all -C plugins/pitchshift
  14. $(MAKE) all -C plugins/shiroverb
  15. $(MAKE) all -C plugins/pitchotto
  16. $(MAKE) all -C plugins/modulay
  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. $(MAKE) clean -C dpf/utils/lv2-ttl-generator
  27. $(MAKE) clean -C plugins/bitcrush
  28. $(MAKE) clean -C plugins/freeverb
  29. $(MAKE) clean -C plugins/gigaverb
  30. $(MAKE) clean -C plugins/pitchshift
  31. $(MAKE) clean -C plugins/shiroverb
  32. $(MAKE) clean -C plugins/pitchotto
  33. $(MAKE) clean -C plugins/modulay
  34. # --------------------------------------------------------------
  35. .PHONY: plugins