]> 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 b689a1d..0000000
+++ /dev/null
@@ -1,26 +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 FileTarget
-{
-protected:
-       std::list<ObjectFile *> objects;
-
-       Binary(Builder &, const Msp::FS::Path &);
-       Binary(Builder &, const Component &, const std::string &, const std::list<ObjectFile *> &);
-
-       virtual void find_dependencies();
-
-       virtual std::string create_build_signature() const;
-};
-
-#endif