]> git.tdb.fi Git - builder.git/blobdiff - source/install.h
Don't throw up if a package doesn't install anything
[builder.git] / source / install.h
index 2aa3280a75778494e664c0a8562c43e17dd12098..fd6472fea6fc40d7e4c40d35c09117ffba67002c 100644 (file)
@@ -3,13 +3,16 @@
 
 #include "target.h"
 
+/**
+Represents the installation of a file.
+*/
 class Install: public Target
 {
 public:
        Install(Builder &, const Package &, Target &, const std::string &);
        const char *get_type() const { return "Install"; }
-       void check_rebuild();
-       Action *build();
+       void       check_rebuild();
+       Action     *build();
 private:
 };