]> git.tdb.fi Git - builder.git/blob - source/executable.h
3e34851e4abef92fa2ceb8a04068e4741a03b870
[builder.git] / source / executable.h
1 #ifndef EXECUTABLE_H_
2 #define EXECUTABLE_H_
3
4 #include "target.h"
5
6 class Component;
7 class ObjectFile;
8
9 class Executable: public Target
10 {
11 public:
12         Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
13         const char *get_type() const { return "Executable"; }
14         void find_depends() { }
15 private:
16         const Component &comp;
17
18         static std::string generate_target_name(const Component &);
19 };
20
21 #endif