]> git.tdb.fi Git - builder.git/blobdiff - source/objectfile.cpp
Refactor transitive dependencies to work on all targets
[builder.git] / source / objectfile.cpp
diff --git a/source/objectfile.cpp b/source/objectfile.cpp
deleted file mode 100644 (file)
index 3e531f7..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-#include <msp/path/utils.h>
-#include "builder.h"
-#include "compile.h"
-#include "component.h"
-#include "install.h"
-#include "objectfile.h"
-#include "package.h"
-#include "sourcefile.h"
-
-using namespace std;
-using namespace Msp;
-
-ObjectFile::ObjectFile(Builder &b, const Component &c, SourceFile &src):
-       Target(b, &c.get_package(), generate_target_name(c, src.get_name())),
-       comp(c)
-{
-       buildable=true;
-       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();
-}