]> git.tdb.fi Git - builder.git/blobdiff - source/objectfile.cpp
Add command line options (not all of them work yet)
[builder.git] / source / objectfile.cpp
index d29cd11df850759833705e0103264c50d09de512..3e531f7ae8a09d2b8fb3def6265ee5e5659cc552 100644 (file)
@@ -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<SourceFile *>(tgt);
+       if(!src)
+       {
+               Install *inst=dynamic_cast<Install *>(tgt);
+               if(inst)
+                       src=dynamic_cast<SourceFile *>(inst->get_depends().front());
+       }
+       if(!src)
+               return;
+
+       const string &sname=src->get_name();
+       string path=sname.substr(0, sname.rfind('/'));
+
+       const list<string> &includes=src->get_includes();
+       for(list<string>::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();