Lines Matching refs:targets
258 vector<Symbol> targets; in HandleSpecialTargets() local
260 if (GetRuleInputs(Intern(".PHONY"), &targets, &loc)) { in HandleSpecialTargets()
261 for (Symbol t : targets) in HandleSpecialTargets()
264 if (GetRuleInputs(Intern(".KATI_RESTAT"), &targets, &loc)) { in HandleSpecialTargets()
265 for (Symbol t : targets) in HandleSpecialTargets()
268 if (GetRuleInputs(Intern(".SUFFIXES"), &targets, &loc)) { in HandleSpecialTargets()
269 if (targets.empty()) { in HandleSpecialTargets()
294 if (GetRuleInputs(Intern(*p), &targets, &loc)) { in HandleSpecialTargets()
303 void Build(vector<Symbol> targets, vector<DepNode*>* nodes) { in Build() argument
308 if (!g_flags.gen_all_targets && targets.empty()) { in Build()
309 targets.push_back(first_rule_); in Build()
325 targets.push_back(p.first); in Build()
332 for (Symbol target : targets) { in Build()
657 const vector<Symbol>& targets, in MakeDep() argument
661 db.Build(targets, nodes); in MakeDep()