aboutsummaryrefslogtreecommitdiff
path: root/build/bin/rule
diff options
context:
space:
mode:
Diffstat (limited to 'build/bin/rule')
-rw-r--r--build/bin/rule39
1 files changed, 0 insertions, 39 deletions
diff --git a/build/bin/rule b/build/bin/rule
deleted file mode 100644
index 743b1ca..0000000
--- a/build/bin/rule
+++ /dev/null
@@ -1,39 +0,0 @@
-// file : build/bin/rule -*- C++ -*-
-// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BUILD_BIN_RULE
-#define BUILD_BIN_RULE
-
-#include <build/rule>
-
-namespace build
-{
- namespace bin
- {
- class obj_rule: public rule
- {
- public:
- virtual match_result
- match (action, target&, const std::string& hint) const;
-
- virtual recipe
- apply (action, target&, const match_result&) const;
- };
-
- class lib_rule: public rule
- {
- public:
- virtual match_result
- match (action, target&, const std::string& hint) const;
-
- virtual recipe
- apply (action, target&, const match_result&) const;
-
- static target_state
- perform (action, target&);
- };
- }
-}
-
-#endif // BUILD_BIN_RULE