X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fobjectfile.cpp;h=683c724306d1f56db62a9585b69aeaf78cadbff7;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=778f74642acc72ca476f2a70224db1e886f7bd2e;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/objectfile.cpp b/source/objectfile.cpp index 778f746..683c724 100644 --- a/source/objectfile.cpp +++ b/source/objectfile.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -26,12 +26,6 @@ ObjectFile::ObjectFile(Builder &b, const Component &c, SourceFile &src): add_depend(&src); } -/** -Processes as many new dependences as possible. Some may be left unprocessed -if their own dependencies are not ready, requiring another call to this -function. Use the get_deps_ready() function to determine whether this is the -case. -*/ void ObjectFile::find_depends() { for(TargetList::iterator i=new_deps.begin(); i!=new_deps.end();) @@ -50,9 +44,6 @@ void ObjectFile::find_depends() } -/** -Recursively looks for header targets and adds them as dependencies. -*/ void ObjectFile::find_depends(Target *tgt) { const string &tname=tgt->get_name(); @@ -79,9 +70,6 @@ void ObjectFile::find_depends(Target *tgt) } } -/** -Adds a target to the dependency list as well as the new dependencies list. -*/ void ObjectFile::add_depend(Target *tgt) { Target::add_depend(tgt);