]> git.tdb.fi Git - builder.git/blob - source/install.h
503205a021f0a4223e9bb537078193d130d05444
[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