6 Tool::Tool(Builder &b, const string &t):
11 bool Tool::accepts_suffix(const string &suffix) const
13 return find(input_suffixes.begin(), input_suffixes.end(), suffix)!=input_suffixes.end();
16 Target *Tool::create_target(Target &source, const string &arg) const
18 list<Target *> sources;
19 sources.push_back(&source);
20 return create_target(sources, arg);