summaryrefslogtreecommitdiffstats
path: root/src/ninja.cc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-12-27 21:25:45 (GMT)
committerEvan Martin <martine@danga.com>2011-12-27 21:25:45 (GMT)
commit182f4c27293fd0bdc2eb7562465efa96e5714705 (patch)
treea92bbaea86363d34ebcb9bd2bcf39a3f166b5872 /src/ninja.cc
parent391ca312c5728b048a36147fc67499f11b98ccdc (diff)
downloadNinja-182f4c27293fd0bdc2eb7562465efa96e5714705.zip
Ninja-182f4c27293fd0bdc2eb7562465efa96e5714705.tar.gz
Ninja-182f4c27293fd0bdc2eb7562465efa96e5714705.tar.bz2
remove huge indent from tools list
Diffstat (limited to 'src/ninja.cc')
-rw-r--r--src/ninja.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ninja.cc b/src/ninja.cc
index 20584f9..452f075 100644
--- a/src/ninja.cc
+++ b/src/ninja.cc
@@ -450,16 +450,16 @@ int CmdClean(State* state, int argc, char* argv[], const BuildConfig& config) {
/// Print out a list of tools.
int CmdList(State* state, int argc, char* argv[]) {
- printf("subtools:\n"
-" clean clean built files\n"
+ printf("ninja subtools:\n"
+" clean clean built files\n"
"\n"
-" browse browse dependency graph in a web browser\n"
-" graph output graphviz dot file for targets\n"
-" query show inputs/outputs for a path\n"
+" browse browse dependency graph in a web browser\n"
+" graph output graphviz dot file for targets\n"
+" query show inputs/outputs for a path\n"
"\n"
-" targets list targets by their rule or depth in the DAG\n"
-" rules list all rules\n"
-" commands list all commands required to rebuild given targets\n"
+" targets list targets by their rule or depth in the DAG\n"
+" rules list all rules\n"
+" commands list all commands required to rebuild given targets\n"
);
return 0;
}