]> git.tdb.fi Git - builder.git/blob - source/install.h
Process ObjectFile dependencies correctly even when it's processed before some header...
[builder.git] / source / install.h
1 #ifndef INSTALL_H_
2 #define INSTALL_H_
3
4 #include "target.h"
5
6 class Install: public Target
7 {
8 public:
9         Install(Builder &, const Package &, Target &, const std::string &);
10         const char *get_type() const { return "Install"; }
11         void check_rebuild();
12         Action *build();
13 private:
14 };
15
16 #endif