summaryrefslogtreecommitdiff
path: root/solenv/doc/gbuild/solenv/gbuild/executable.mk
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/doc/gbuild/solenv/gbuild/executable.mk')
-rw-r--r--solenv/doc/gbuild/solenv/gbuild/executable.mk25
1 files changed, 0 insertions, 25 deletions
diff --git a/solenv/doc/gbuild/solenv/gbuild/executable.mk b/solenv/doc/gbuild/solenv/gbuild/executable.mk
deleted file mode 100644
index 8f7fcc9b0..000000000
--- a/solenv/doc/gbuild/solenv/gbuild/executable.mk
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <types.h>
-
-namespace gb
-{
- using namespace types;
-
- class LinkTarget;
-
- class Executable : public IsCleanable, public HasDependencies, public IsLinking, public DeliversHeaders, public HasCompileSettings, public Target
- {
- public:
- Executable(String name);
-
- private:
- /// private helper function for the constructor
- void Executable_impl(LinkTarget library_linktarget);
- /// platformdependant additional setup for constructor (used on Windows only)
- void Executable_platform(LinkTarget library_linktarget);
- /// helper function to wrap LinkTargets functions (this is more or less pimpl ...)
- void forward_to_linktarget(Function f);
-
- static const List<String> TARGETTYPEFLAGS;
- };
-}
-/* vim: set filetype=cpp : */