X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fexecutable.h;h=7d6ea28b46d70b8e656573a1826a690e0d4a9b95;hb=b3b2a8666defb9e1a5937bcfefc1bc8e02793aab;hp=52b0ceedd2cf4adb62d78df66b2c18e920bc0c16;hpb=59ac0a44d6edf179c01604c6ced744873213f855;p=builder.git diff --git a/source/executable.h b/source/executable.h index 52b0cee..7d6ea28 100644 --- a/source/executable.h +++ b/source/executable.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef EXECUTABLE_H_ #define EXECUTABLE_H_ @@ -6,13 +13,18 @@ class Component; class ObjectFile; +/** +Produces a binary file, which may be either a standalone executable or a shared +library. +*/ class Executable: public Target { public: Executable(Builder &, const Component &, const std::list &); - const char *get_type() const { return "Executable"; } - void find_depends() { } - Action *build(); + const char *get_type() const { return "Executable"; } + const Component &get_component() const { return comp; } + void find_depends(); + Action *build(); private: const Component ∁