1) Replaced all Makefile* with GNUmakefile*.

2) Changed Makedepend system to make individual dependency files, which
   should save time rebuilding dependencies by limiting the regeneration
   of dependency file for only modified source files.
This commit is contained in:
Don BURNS
2003-03-12 10:39:43 +00:00
parent 88b686faca
commit fa33244f92
138 changed files with 72 additions and 63 deletions

View File

@@ -112,8 +112,6 @@ int main( int argc, char **argv )
osg::notify(osg::NOTICE)<<"unable to load reflect map, model will not be mutlitextured"<<std::endl;
}
// run optimization over the scene graph
osgUtil::Optimizer optimzer;
optimzer.optimize(rootnode);

View File

@@ -1,3 +1,4 @@
#include <iostream>
#include <osg/ArgumentParser>
#include <osg/ApplicationUsage>
@@ -317,7 +318,7 @@ void ArgumentParser::writeErrorMessages(std::ostream& output,ErrorSeverity sever
{
if (itr->second>=severity)
{
output<<getProgramName()<<": "<<itr->first<<std::endl;
output<< getProgramName() << ": " << itr->first << std::endl;
}
}
}

Some files were not shown because too many files have changed in this diff Show More