]> git.tdb.fi Git - builder.git/blob - source/install.h
fd6472fea6fc40d7e4c40d35c09117ffba67002c
[builder.git] / source / install.h
1 #ifndef INSTALL_H_
2 #define INSTALL_H_
3
4 #include "target.h"
5
6 /**
7 Represents the installation of a file.
8 */
9 class Install: public Target
10 {
11 public:
12         Install(Builder &, const Package &, Target &, const std::string &);
13         const char *get_type() const { return "Install"; }
14         void       check_rebuild();
15         Action     *build();
16 private:
17 };
18
19 #endif