]> git.tdb.fi Git - builder.git/blobdiff - source/install.h
Add command line options (not all of them work yet)
[builder.git] / source / install.h
diff --git a/source/install.h b/source/install.h
new file mode 100644 (file)
index 0000000..b81ac9b
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef INSTALL_H_
+#define INSTALL_H_
+
+#include "target.h"
+
+class Install: public Target
+{
+public:
+       Install(Builder &, const Package &, Target &, const std::string &);
+       const char *get_type() const { return "Install"; }
+       void find_depends() { }
+       void check_rebuild();
+       Action *build();
+private:
+};
+
+#endif