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