diff options
author | Nicolas Despres <nicolas.despres@gmail.com> | 2011-04-10 16:18:31 (GMT) |
---|---|---|
committer | Nicolas Despres <nicolas.despres@gmail.com> | 2011-04-26 11:23:07 (GMT) |
commit | 652345f7fccbc4f3db3700f576b4b5b8e0768fc2 (patch) | |
tree | 301b335a37ce628ff8a7e18268f5af2c886f2c49 /manual.asciidoc | |
parent | a9c54d0413fd0a320d4df789183332ccad39b1db (diff) | |
download | Ninja-652345f7fccbc4f3db3700f576b4b5b8e0768fc2.zip Ninja-652345f7fccbc4f3db3700f576b4b5b8e0768fc2.tar.gz Ninja-652345f7fccbc4f3db3700f576b4b5b8e0768fc2.tar.bz2 |
graph: Assume all root nodes if no target given.
This way we can generate the complete graph.
Diffstat (limited to 'manual.asciidoc')
-rw-r--r-- | manual.asciidoc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manual.asciidoc b/manual.asciidoc index 7ea3da8..cf7b2c8 100644 --- a/manual.asciidoc +++ b/manual.asciidoc @@ -311,7 +311,8 @@ feature requires a Python installation. `graph`:: output a file in the syntax used by `graphviz`, a automatic graph layout tool. Use it like: +ninja -t graph _target_ | dot -Tpng -ograph.png /dev/stdin+ . In the Ninja source tree, `ninja graph` -generates an image for Ninja itself. +generates an image for Ninja itself. If no target is given generate a +graph for all root targets. `targets`:: output a list of targets either by rule or by depth. If used like this +ninja -t targets rule _name_+ it prints the list of targets |