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.

36 lines
1.0KB

  1. #!/usr/bin/make -f
  2. # Makefile for carla-backend #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. include ../Makefile.mk
  7. # ----------------------------------------------------------------------------------------------------------------------------
  8. all:
  9. # $(MAKE) -C control
  10. $(MAKE) -C engine
  11. $(MAKE) -C plugin
  12. $(MAKE) -C standalone
  13. # ----------------------------------------------------------------------------------------------------------------------------
  14. clean:
  15. # $(MAKE) clean -C control
  16. $(MAKE) clean -C engine
  17. $(MAKE) clean -C plugin
  18. $(MAKE) clean -C standalone
  19. # ----------------------------------------------------------------------------------------------------------------------------
  20. debug:
  21. $(MAKE) DEBUG=true
  22. # ----------------------------------------------------------------------------------------------------------------------------
  23. doxygen: CarlaBackend.doxygen
  24. doxygen $^
  25. # ----------------------------------------------------------------------------------------------------------------------------