]> git.tdb.fi Git - builder.git/blobdiff - source/executable.h
... and remove the debugging cout
[builder.git] / source / executable.h
index 81637a7ae461f334a5866e02e0517eee6a37c5d5..d7d8ebbea909fa3f1c853b1212d3827d1962e51c 100644 (file)
@@ -6,14 +6,18 @@
 class Component;
 class ObjectFile;
 
+/**
+Produces a binary file, which may be either a standalone executable or a shared
+library.
+*/
 class Executable: public Target
 {
 public:
        Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
-       const char *get_type() const { return "Executable"; }
+       const char      *get_type() const      { return "Executable"; }
        const Component &get_component() const { return comp; }
-       void find_depends();
-       Action *build();
+       void            find_depends();
+       Action          *build();
 private:
        const Component &comp;