diff options
author | Nikolaus Wittenstein <nikolaus.wittenstein@gmail.com> | 2017-08-29 17:39:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-29 17:39:11 (GMT) |
commit | e6e498494f4f420d8940f79c50e784aa37d3d891 (patch) | |
tree | 4015c5666faf837713a3b14661c29f64a957f075 /doc | |
parent | 7bbc708ff08f5660f4cff4b3e8c675bec428a1f2 (diff) | |
download | Ninja-e6e498494f4f420d8940f79c50e784aa37d3d891.zip Ninja-e6e498494f4f420d8940f79c50e784aa37d3d891.tar.gz Ninja-e6e498494f4f420d8940f79c50e784aa37d3d891.tar.bz2 |
Add `deps` and `recompact` tools to manual
The `deps` tool in particular is very useful to know about.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.asciidoc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc index d7ec932..67db4a7 100644 --- a/doc/manual.asciidoc +++ b/doc/manual.asciidoc @@ -279,6 +279,11 @@ http://clang.llvm.org/docs/JSONCompilationDatabase.html[JSON format] expected by the Clang tooling interface. _Available since Ninja 1.2._ +`deps`:: show all dependencies stored in the `.ninja_deps` file. When given a +target, show just the target's dependencies. + +`recompact`:: recompact the `.ninja_deps` file. + Writing your own Ninja files ---------------------------- |