Extra "ports" of juce-based plugins using the distrho build system
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.

34 lines
622B

  1. # -----------------------------------------
  2. # Compile all the Plugins
  3. PREFIX = /usr
  4. # -----------------------------------------
  5. # all
  6. all:
  7. $(MAKE) -C ports
  8. @./scripts/generate-ttl.sh
  9. # -----------------------------------------
  10. # install
  11. install:
  12. # make dirs
  13. install -d $(DESTDIR)$(PREFIX)/lib/lv2/
  14. install -d $(DESTDIR)$(PREFIX)/lib/vst/
  15. # install ports
  16. cp -r bin/lv2/*.lv2/ $(DESTDIR)$(PREFIX)/lib/lv2/
  17. cp -r bin/vst/* $(DESTDIR)$(PREFIX)/lib/vst/
  18. # -----------------------------------------
  19. # clean
  20. clean:
  21. $(MAKE) clean -C ports
  22. rm -rf bin/lv2/*.lv2/
  23. distclean: clean
  24. $(MAKE) distclean -C ports