X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarget.cpp;h=fa63ac4e5154293050db87c91168d4c286690938;hb=654de39b62a9a58fd8e1b5a557361d628345788b;hp=3b1685324997fcfebce2273d828e39a0a83ea37a;hpb=921fc49488a68442fb8794e1a0284a3bf1e7b91b;p=builder.git diff --git a/source/target.cpp b/source/target.cpp index 3b16853..fa63ac4 100644 --- a/source/target.cpp +++ b/source/target.cpp @@ -1,8 +1,16 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include #include "action.h" #include "builder.h" #include "package.h" +#include "sourcepackage.h" #include "target.h" using namespace std; @@ -95,6 +103,8 @@ Target::Target(Builder &b, const Package *p, const string &n): prepared(false), counted(false) { + builder.add_target(this); + struct stat st; if(!Path::stat(name, st)) mtime=Time::TimeStamp::from_unixtime(st.st_mtime); @@ -128,7 +138,9 @@ void Target::check_rebuild() mark_rebuild(Path::basename((*i)->get_name())+" needs rebuilding"); } } - if(!rebuild && package && package->get_config().get_mtime()>mtime) + + const SourcePackage *spkg=dynamic_cast(package); + if(!rebuild && spkg && spkg->get_config().get_mtime()>mtime) mark_rebuild("Package options changed"); }