Audio and MIDI file render through Carla
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.

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/make -f
  2. # Makefile for DIE-Plugins #
  3. # ------------------------ #
  4. # Created by falkTX
  5. #
  6. include Makefile.base.mk
  7. PREFIX ?= /usr/local
  8. # --------------------------------------------------------------
  9. all: build
  10. # --------------------------------------------------------------
  11. build:
  12. $(MAKE) -C src
  13. # --------------------------------------------------------------
  14. clean:
  15. $(MAKE) clean -C src
  16. # --------------------------------------------------------------
  17. install:
  18. install -d $(DESTDIR)$(PREFIX)/bin
  19. install -m 755 bin/koriborusu $(DESTDIR)$(PREFIX)/bin/
  20. # --------------------------------------------------------------
  21. .PHONY: build