System Grab Bag

View all TLDR pages from common (or from all pages)

ninja

A Build system designed to be fast. More information: https://ninja-build.org/manual.html.
  • Build in the current directory:
    ninja
  • Build in the current directory, executing 4 jobs at a time in parallel:
    ninja -j {{4}}
  • Build a program in a given directory:
    ninja -C {{path/to/directory}}
  • Show targets (e.g. install and uninstall):
    ninja -t targets
  • Show help:
    ninja -h

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.