Audio plugin host https://kx.studio/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.

27 lines
578B

  1. #!/usr/bin/make -f
  2. # Makefile for carla backend and standalone #
  3. # -------------------------------------------------------------- #
  4. # Created by falkTX
  5. #
  6. # --------------------------------------------------------------
  7. all:
  8. $(MAKE) -C engine
  9. $(MAKE) -C native
  10. $(MAKE) -C plugin
  11. $(MAKE) -C standalone
  12. # --------------------------------------------------------------
  13. clean:
  14. $(MAKE) clean -C engine
  15. $(MAKE) clean -C native
  16. $(MAKE) clean -C plugin
  17. $(MAKE) clean -C standalone
  18. # --------------------------------------------------------------
  19. debug:
  20. $(MAKE) DEBUG=true