X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fobjectfile.cpp;h=3e531f7ae8a09d2b8fb3def6265ee5e5659cc552;hb=0d80cabf649b931b26e7055385156c75a7385d35;hp=d29cd11df850759833705e0103264c50d09de512;hpb=59ac0a44d6edf179c01604c6ced744873213f855;p=builder.git diff --git a/source/objectfile.cpp b/source/objectfile.cpp index d29cd11..3e531f7 100644 --- a/source/objectfile.cpp +++ b/source/objectfile.cpp @@ -2,6 +2,7 @@ #include "builder.h" #include "compile.h" #include "component.h" +#include "install.h" #include "objectfile.h" #include "package.h" #include "sourcefile.h" @@ -17,11 +18,40 @@ ObjectFile::ObjectFile(Builder &b, const Component &c, SourceFile &src): add_depend(&src); } +void ObjectFile::find_depends() +{ + find_depends(depends.front()); +} + Action *ObjectFile::build() { return Target::build(new Compile(builder, depends.front()->get_name(), name, comp)); } +void ObjectFile::find_depends(Target *tgt) +{ + SourceFile *src=dynamic_cast(tgt); + if(!src) + { + Install *inst=dynamic_cast(tgt); + if(inst) + src=dynamic_cast(inst->get_depends().front()); + } + if(!src) + return; + + const string &sname=src->get_name(); + string path=sname.substr(0, sname.rfind('/')); + + const list &includes=src->get_includes(); + for(list::const_iterator i=includes.begin(); i!=includes.end(); ++i) + { + Target *hdr2=builder.get_header(*i, path, package->get_build_info().incpath); + if(hdr2) + add_depend(hdr2); + } +} + string ObjectFile::generate_target_name(const Component &comp, const string &src) { return (comp.get_package().get_source()/"temp"/comp.get_name()/(Path::splitext(src.substr(src.rfind('/')+1)).base+".o")).str();