]> git.tdb.fi Git - builder.git/blobdiff - source/objectfile.h
Improve automatic package finding to detect directories with version number
[builder.git] / source / objectfile.h
index 42238e14b546db0c356b3be02b9d3da6a052f4ae..dbb49fe02c8355d3f43f9eaa24f3ce0016a25851 100644 (file)
@@ -1,3 +1,10 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef OBJECTFILE_H_
 #define OBJECTFILE_H_
 
@@ -16,13 +23,13 @@ public:
        const char      *get_type() const      { return "ObjectFile"; }
        const Component &get_component() const { return comp; }
        void            find_depends();
-       Action          *build();
 private:
        const Component ∁
        TargetList      new_deps;
        
        void find_depends(Target *);
        void add_depend(Target *);
+       virtual Action  *create_action();
 
        static std::string generate_target_name(const Component &, const std::string &);
 };