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