X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarget.cpp;h=f17b88e103c6a8a3725d079ecaf046339b1c0824;hb=be8a901dfc026f61db46d5d64a41cecc619bc97d;hp=c9c23ad9116165297d602978b9be04c13f902530;hpb=7aeaa4ba965f596edad438c02e345a8843f7469a;p=builder.git diff --git a/source/target.cpp b/source/target.cpp index c9c23ad..f17b88e 100644 --- a/source/target.cpp +++ b/source/target.cpp @@ -10,6 +10,7 @@ Distributed under the LGPL #include "action.h" #include "builder.h" #include "package.h" +#include "sourcepackage.h" #include "target.h" using namespace std; @@ -67,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. @@ -105,7 +128,7 @@ Target::Target(Builder &b, const Package *p, const string &n): builder.add_target(this); struct stat st; - if(!Path::stat(name, st)) + if(!stat(name, st)) mtime=Time::TimeStamp::from_unixtime(st.st_mtime); } @@ -132,24 +155,15 @@ void Target::check_rebuild() for(TargetList::iterator i=depends.begin(); (i!=depends.end() && !rebuild); ++i) { if((*i)->get_mtime()>mtime) - mark_rebuild(Path::basename((*i)->get_name())+" has changed"); + mark_rebuild(basename((*i)->get_name())+" has changed"); else if((*i)->get_rebuild()) - mark_rebuild(Path::basename((*i)->get_name())+" needs rebuilding"); + mark_rebuild(basename((*i)->get_name())+" needs rebuilding"); } } - if(!rebuild && package && package->get_config().get_mtime()>mtime) - 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; + const SourcePackage *spkg=dynamic_cast(package); + if(!rebuild && spkg && spkg->get_config().get_mtime()>mtime) + mark_rebuild("Package options changed"); } /**