aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/rule.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/rule.hxx')
-rw-r--r--libbuild2/rule.hxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/libbuild2/rule.hxx b/libbuild2/rule.hxx
index 9eab1f6..c15064e 100644
--- a/libbuild2/rule.hxx
+++ b/libbuild2/rule.hxx
@@ -108,6 +108,24 @@ namespace build2
noop_rule () {}
static const noop_rule instance;
};
+
+ // Ad hoc recipe rule.
+ //
+ // Note: should not be used directly (e.g., registered, etc).
+ //
+ class LIBBUILD2_SYMEXPORT adhoc_rule: public rule
+ {
+ public:
+ virtual bool
+ match (action, target&, const string&) const override;
+
+ virtual recipe
+ apply (action, target&) const override;
+
+ adhoc_rule () {}
+ static const adhoc_rule instance;
+ static const rule_match match_instance;
+ };
}
#endif // LIBBUILD2_RULE_HXX