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.

Makefile 557B

11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526
  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 plugin
  10. $(MAKE) -C native
  11. $(MAKE) -C standalone
  12. # --------------------------------------------------------------
  13. clean:
  14. $(MAKE) clean -C engine
  15. $(MAKE) clean -C plugin
  16. $(MAKE) clean -C native
  17. $(MAKE) clean -C standalone
  18. # --------------------------------------------------------------
  19. debug:
  20. $(MAKE) DEBUG=true