mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
21 lines
321 B
Markdown
21 lines
321 B
Markdown
![]() |
# ninja
|
||
|
|
||
|
> A Build system designed to be fast.
|
||
|
> More information: <https://ninja-build.org/manual.html>.
|
||
|
|
||
|
- Build in the current directory:
|
||
|
|
||
|
`ninja`
|
||
|
|
||
|
- 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`
|