diff options
author | Nicolas Despres <nicolas.despres@gmail.com> | 2011-04-18 16:24:42 (GMT) |
---|---|---|
committer | Nicolas Despres <nicolas.despres@gmail.com> | 2011-04-26 11:23:07 (GMT) |
commit | 535f830f7fae73ea293800045561551c01dec589 (patch) | |
tree | 9cf3dea63526d1e18ef71d8f743d02b3cd7b5ed4 | |
parent | 652345f7fccbc4f3db3700f576b4b5b8e0768fc2 (diff) | |
download | Ninja-535f830f7fae73ea293800045561551c01dec589.zip Ninja-535f830f7fae73ea293800045561551c01dec589.tar.gz Ninja-535f830f7fae73ea293800045561551c01dec589.tar.bz2 |
Generate the entire graph not only for the 'all' target.
This way we can see the 'doxygen' target and also some object file we
forgot to add as input of the link rule.
-rw-r--r-- | build.ninja | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.ninja b/build.ninja index be21296..128ef67 100644 --- a/build.ninja +++ b/build.ninja @@ -74,7 +74,7 @@ build ninja_test: link $builddir/build_test.o $builddir/build_log_test.o \ # Generate a graph using the -g flag. rule gendot - command = ./ninja -t graph all > $out + command = ./ninja -t graph > $out rule gengraph command = dot -Tpng $in > $out |