]> git.tdb.fi Git - builder.git/blobdiff - source/executable.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / executable.h
diff --git a/source/executable.h b/source/executable.h
deleted file mode 100644 (file)
index d235e29..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef EXECUTABLE_H_
-#define EXECUTABLE_H_
-
-#include "binary.h"
-
-class Executable: public Binary
-{
-public:
-       Executable(Builder &, const Msp::FS::Path &);
-       Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
-
-       virtual const char *get_type() const { return "Executable"; }
-private:
-       static std::string generate_filename(const Component &);
-};
-
-#endif