From 34b46f28c5496def6f8c72bf96bd30830e5477ef Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Wed, 31 Oct 2012 15:18:36 -0700 Subject: drop the "rules" tool completely I had already broken this earlier, but the refactor of variable handling broke it completely. --- doc/manual.asciidoc | 4 ---- src/ninja.cc | 19 ------------------- 2 files changed, 23 deletions(-) diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc index bfcb13b..d51c0ce 100644 --- a/doc/manual.asciidoc +++ b/doc/manual.asciidoc @@ -263,10 +263,6 @@ several times. If used like this +ninja -t targets all+ it prints all the targets available without indentation and it is faster than the _depth_ mode. -`rules`:: output the list of all rules with their description if they have -one. It can be used to know which rule name to pass to -+ninja -t targets rule _name_+. - `commands`:: given a list of targets, print a list of commands which, if executed in order, may be used to rebuild those targets, assuming that all output files are out of date. diff --git a/src/ninja.cc b/src/ninja.cc index 38f1d78..324b884 100644 --- a/src/ninja.cc +++ b/src/ninja.cc @@ -410,23 +410,6 @@ int ToolTargets(Globals* globals, int argc, char* argv[]) { } } -int ToolRules(Globals* globals, int argc, char* /* argv */[]) { - for (map::iterator i = globals->state->rules_.begin(); - i != globals->state->rules_.end(); ++i) { - if (i->second->description().empty()) { - printf("%s\n", i->first.c_str()); - } else { - printf("%s: %s\n", - i->first.c_str(), - // XXX I changed it such that we don't have an easy way - // to get the source text anymore, so this output is - // unsatisfactory. How useful is this command, anyway? - i->second->description().Serialize().c_str()); - } - } - return 0; -} - void PrintCommands(Edge* edge, set* seen) { if (!edge) return; @@ -551,8 +534,6 @@ int ChooseTool(const string& tool_name, const Tool** tool_out) { Tool::RUN_AFTER_LOAD, ToolGraph }, { "query", "show inputs/outputs for a path", Tool::RUN_AFTER_LOAD, ToolQuery }, - { "rules", "list all rules", - Tool::RUN_AFTER_LOAD, ToolRules }, { "targets", "list targets by their rule or depth in the DAG", Tool::RUN_AFTER_LOAD, ToolTargets }, { "urtle", NULL, -- cgit v0.12