]> git.tdb.fi Git - builder.git/blobdiff - source/staticlibrary.h
Put output files for foreign archs in their own directories
[builder.git] / source / staticlibrary.h
index 83ae10594bf30bf7946e40facbcdf9a158cc3990..cb27138abe6d67f7264747c12194568e60aebc8c 100644 (file)
@@ -1,3 +1,10 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef STATICLIB_H_
 #define STATICLIB_H_
 
@@ -15,10 +22,11 @@ public:
        StaticLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
        const char      *get_type() const      { return "StaticLibrary"; }
        const Component &get_component() const { return comp; }
-       Action          *build();
 private:
        const Component &comp;
 
+       virtual Action  *create_action();
+
        std::string generate_target_name(const Component &);
 };