X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fexecutable.h;h=967aaf97c7ec0c8044eaf0c48965122029732eb5;hb=e4c839cacd8572ade951f4961e8e145d20e0103f;hp=a6ebb978175c46029ae804728418d3a423fc1efc;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/executable.h b/source/executable.h index a6ebb97..967aaf9 100644 --- a/source/executable.h +++ b/source/executable.h @@ -1,38 +1,18 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef EXECUTABLE_H_ #define EXECUTABLE_H_ -#include "target.h" +#include "binary.h" -class Component; -class ObjectFile; - -/** -Produces a binary file, which may be either a standalone executable or a shared -library. -*/ -class Executable: public Target +class Executable: public Binary { -private: - const Component ∁ - public: + Executable(Builder &, const Msp::FS::Path &); Executable(Builder &, const Component &, const std::list &); - virtual const char *get_type() const { return "Executable"; } - const Component &get_component() const { return comp; } - virtual void find_depends(); private: - virtual Action *create_action(); + static std::string generate_filename(const Component &); - /** Returns the name for the executable. We can't do this in the - constructor since we need to pass the value to the Target c'tor. */ - static std::string generate_target_name(const Component &); +public: + virtual const char *get_type() const { return "Executable"; } }; #endif