aboutsummaryrefslogtreecommitdiff
path: root/build/cxx/compile
diff options
context:
space:
mode:
Diffstat (limited to 'build/cxx/compile')
-rw-r--r--build/cxx/compile32
1 files changed, 0 insertions, 32 deletions
diff --git a/build/cxx/compile b/build/cxx/compile
deleted file mode 100644
index cb44829..0000000
--- a/build/cxx/compile
+++ /dev/null
@@ -1,32 +0,0 @@
-// file : build/cxx/compile -*- C++ -*-
-// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BUILD_CXX_COMPILE
-#define BUILD_CXX_COMPILE
-
-#include <build/types>
-#include <build/rule>
-
-namespace build
-{
- namespace cxx
- {
- class compile: 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_update (action, target&);
-
- static compile instance;
- };
- }
-}
-
-#endif // BUILD_CXX_COMPILE