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