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.

34 lines
1018B

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