X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstaticlibrary.h;h=cd0342ea47b950ef88c0b25bc3c5427569018e13;hb=7aeaa4ba965f596edad438c02e345a8843f7469a;hp=f7f178a7306c5649f049be7c5d6002092d07d9a4;hpb=4fcc283a4bb1f695bd124006906bcdaba053193f;p=builder.git diff --git a/source/staticlibrary.h b/source/staticlibrary.h index f7f178a..cd0342e 100644 --- a/source/staticlibrary.h +++ b/source/staticlibrary.h @@ -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_ @@ -6,13 +13,16 @@ class Component; class ObjectFile; +/** +A static library target. +*/ class StaticLibrary: public Target { public: StaticLibrary(Builder &, const Component &, const std::list &); - const char *get_type() const { return "StaticLibrary"; } + const char *get_type() const { return "StaticLibrary"; } const Component &get_component() const { return comp; } - Action *build(); + Action *build(); private: const Component ∁