Lines Matching refs:targets
265 vector<Symbol> targets; in HandleSpecialTargets() local
267 if (GetRuleInputs(Intern(".PHONY"), &targets, &loc)) { in HandleSpecialTargets()
268 for (Symbol t : targets) in HandleSpecialTargets()
271 if (GetRuleInputs(Intern(".KATI_RESTAT"), &targets, &loc)) { in HandleSpecialTargets()
272 for (Symbol t : targets) in HandleSpecialTargets()
275 if (GetRuleInputs(Intern(".SUFFIXES"), &targets, &loc)) { in HandleSpecialTargets()
276 if (targets.empty()) { in HandleSpecialTargets()
299 if (GetRuleInputs(Intern(*p), &targets, &loc)) { in HandleSpecialTargets()
308 void Build(vector<Symbol> targets, vector<DepNode*>* nodes) { in Build() argument
313 if (!g_flags.gen_all_targets && targets.empty()) { in Build()
314 targets.push_back(first_rule_); in Build()
330 targets.push_back(p.first); in Build()
337 for (Symbol target : targets) { in Build()
665 const vector<Symbol>& targets, in MakeDep() argument
669 db.Build(targets, nodes); in MakeDep()