From c106259517d7693ea8e24564bc890fe575d5edcd Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 16 Jan 2015 14:11:14 +0200 Subject: Implement rule chaining for cxx::link --- build/rule | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'build/rule') diff --git a/build/rule b/build/rule index 91ef0ca..325204f 100644 --- a/build/rule +++ b/build/rule @@ -18,8 +18,11 @@ namespace build class rule { public: + virtual void* + match (target&, const std::string& hint) const = 0; + virtual recipe - match (target&, bool single, std::string& hint) const = 0; + select (target&, void*) const = 0; }; typedef std::unordered_map< @@ -31,8 +34,11 @@ namespace build class default_path_rule: public rule { public: + virtual void* + match (target&, const std::string& hint) const; + virtual recipe - match (target&, bool single, std::string& hint) const; + select (target&, void*) const; static target_state update (target&); -- cgit v1.1