]> git.tdb.fi Git - builder.git/blob - source/install.h
Add command line options (not all of them work yet)
[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 find_depends() { }
12         void check_rebuild();
13         Action *build();
14 private:
15 };
16
17 #endif