X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fexecutable.h;h=967aaf97c7ec0c8044eaf0c48965122029732eb5;hb=HEAD;hp=d7d8ebbea909fa3f1c853b1212d3827d1962e51c;hpb=74266a6e650f019063cdcd1c9a7bd26d8f99041b;p=builder.git diff --git a/source/executable.h b/source/executable.h deleted file mode 100644 index d7d8ebb..0000000 --- a/source/executable.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef EXECUTABLE_H_ -#define EXECUTABLE_H_ - -#include "target.h" - -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"; } - const Component &get_component() const { return comp; } - void find_depends(); - Action *build(); -private: - const Component ∁ - - static std::string generate_target_name(const Component &); -}; - -#endif