diff options
Diffstat (limited to 'libbuild2/rule.cxx')
-rw-r--r-- | libbuild2/rule.cxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libbuild2/rule.cxx b/libbuild2/rule.cxx index 9028096..7ccee4e 100644 --- a/libbuild2/rule.cxx +++ b/libbuild2/rule.cxx @@ -22,6 +22,20 @@ namespace build2 { } + // simple_rule + // + bool simple_rule:: + match (action a, target& t, const string& h, match_extra&) const + { + return match (a, t, h); + } + + recipe simple_rule:: + apply (action a, target& t, match_extra&) const + { + return apply (a, t); + } + // file_rule // // Note that this rule is special. It is the last, fallback rule. If |