]> git.tdb.fi Git - builder.git/blobdiff - source/binary.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / binary.h
diff --git a/source/binary.h b/source/binary.h
deleted file mode 100644 (file)
index 5239dc3..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef BINARY_H_
-#define BINARY_H_
-
-#include "filetarget.h"
-
-class Component;
-class ObjectFile;
-
-/**
-Produces a binary file, which may be either a standalone executable or a shared
-library.
-*/
-class Binary: public virtual FileTarget
-{
-protected:
-       const Component ∁
-
-       Binary(Builder &, const Component &, const std::list<ObjectFile *> &);
-public:
-       const Component &get_component() const { return comp; }
-       virtual void find_depends();
-protected:
-       /** Returns the path for the binary.  We can't do this in the constructor
-       since we need to pass the value to the Target c'tor. */
-       static Msp::FS::Path generate_target_path(const Component &);
-};
-
-#endif