]> 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 cb27138..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef STATICLIB_H_
-#define STATICLIB_H_
-
-#include "target.h"
-
-class Component;
-class ObjectFile;
-
-/**
-A static library target.
-*/
-class StaticLibrary: public Target
-{
-public:
-       StaticLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
-       const char      *get_type() const      { return "StaticLibrary"; }
-       const Component &get_component() const { return comp; }
-private:
-       const Component &comp;
-
-       virtual Action  *create_action();
-
-       std::string generate_target_name(const Component &);
-};
-
-#endif