Lines Matching refs:targets
119 /// CollectTarget for all command-line arguments, filling in \a targets.
121 vector<Node*>* targets, string* err);
163 /// Build the targets listed on the command line.
221 "usage: ninja [options] [targets...]\n"
223 "if targets are unspecified, builds the 'default' target (see manual).\n"
363 vector<Node*>* targets, string* err) {
365 *targets = state_.DefaultNodes(err);
373 targets->push_back(node);
742 printf("usage: ninja -t commands [options] [targets]\n"
798 "Usage '-t inputs [options] [targets]\n"
800 "List all inputs used for a set of targets. Note that this includes\n"
854 printf("usage: ninja -t clean [options] [targets]\n"
858 " -r interpret targets as a list of rules to clean instead\n"
1118 { "commands", "list all commands required to rebuild given targets",
1120 { "inputs", "list all inputs required to rebuild given targets",
1126 { "graph", "output graphviz dot file for targets",
1130 { "targets", "list targets by their rule or depth in the DAG",
1360 vector<Node*> targets;
1361 if (!CollectTargetsFromArgs(argc, argv, &targets, &err)) {
1370 for (size_t i = 0; i < targets.size(); ++i) {
1371 if (!builder.AddTarget(targets[i], &err)) {