]> git.tdb.fi Git - builder.git/blobdiff - source/target.cpp
Include libmode in library lookup hash
[builder.git] / source / target.cpp
index b094e941e6984707f47d47e75bea1f2455188b60..f17b88e103c6a8a3725d079ecaf046339b1c0824 100644 (file)
@@ -68,6 +68,28 @@ void Target::prepare()
 
 }
 
+Action *Target::build()
+{
+       if(!buildable)
+       {
+               rebuild=false;
+               return 0;
+       }
+
+       if(!builder.get_dry_run() && exists(name))
+               unlink(name);
+
+       Action *action=create_action();
+       if(action)
+       {
+               action->signal_done.connect(sigc::mem_fun(this, &Target::build_done));
+
+               building=true;
+       }
+
+       return action;
+}
+
 /**
 Returns the number of targets that need to be rebuilt in order to get this
 target up-to-date.
@@ -144,17 +166,6 @@ void Target::check_rebuild()
                mark_rebuild("Package options changed");
 }
 
-/**
-Hooks the target up with the given action, then returns it.  This should be
-called from the public build() function of buildable targets.
-*/
-Action *Target::build(Action *action)
-{
-       building=true;
-       action->signal_done.connect(sigc::mem_fun(this, &Target::build_done));
-       return action;
-}
-
 /**
 Handles for the build_done signal of Action.
 */