| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284 | 
							- /*=========================================================================
 
-   Program:   Insight Segmentation & Registration Toolkit
 
-   Module:    $RCSfile$
 
-   Language:  C++
 
-   Date:      $Date$
 
-   Version:   $Revision$
 
- Copyright (c) 2001 Insight Consortium
 
- All rights reserved.
 
- Redistribution and use in source and binary forms, with or without
 
- modification, are permitted provided that the following conditions are met:
 
-  * Redistributions of source code must retain the above copyright notice,
 
-    this list of conditions and the following disclaimer.
 
-  * Redistributions in binary form must reproduce the above copyright notice,
 
-    this list of conditions and the following disclaimer in the documentation
 
-    and/or other materials provided with the distribution.
 
-  * The name of the Insight Consortium, nor the names of any consortium members,
 
-    nor of any contributors, may be used to endorse or promote products derived
 
-    from this software without specific prior written permission.
 
-   * Modified source versions must be plainly marked as such, and must not be
 
-     misrepresented as being the original software.
 
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
 
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
- ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
 
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
- =========================================================================*/
 
- #include "cmUnixMakefileGenerator.h"
 
- #include "cmMakefile.h"
 
- #include "cmStandardIncludes.h"
 
- #include "cmSystemTools.h"
 
- #include "cmSourceFile.h"
 
- #include "cmMakeDepend.h"
 
- #include "cmCacheManager.h"
 
- #include "cmGeneratedFileStream.h"
 
- cmUnixMakefileGenerator::cmUnixMakefileGenerator()
 
- {
 
-   m_CacheOnly = false;
 
-   m_Recurse = false;
 
- }
 
- void cmUnixMakefileGenerator::GenerateMakefile()
 
- {
 
-   // suppoirt override in output directories
 
-   if (m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
 
-     {
 
-     m_LibraryOutputPath = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
 
-     if(m_LibraryOutputPath.size() &&
 
-        m_LibraryOutputPath[m_LibraryOutputPath.size() -1] != '/')
 
-       {
 
-       m_LibraryOutputPath += "/";
 
-       }
 
-     cmSystemTools::MakeDirectory(m_LibraryOutputPath.c_str());
 
-     m_Makefile->GetLinkDirectories().push_back(m_LibraryOutputPath);
 
-     }
 
-   if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
 
-     {
 
-     m_ExecutableOutputPath = m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
 
-     if(m_ExecutableOutputPath.size() &&
 
-        m_ExecutableOutputPath[m_ExecutableOutputPath.size() -1] != '/')
 
-       {
 
-       m_ExecutableOutputPath += "/";
 
-       }
 
-     cmSystemTools::MakeDirectory(m_ExecutableOutputPath.c_str());
 
-     m_Makefile->GetLinkDirectories().push_back(m_ExecutableOutputPath);
 
-     }
 
-   if(m_CacheOnly)
 
-     {
 
-     // Generate the cache only stuff
 
-     this->GenerateCacheOnly();
 
-     // if recurse then generate for all sub- makefiles
 
-     if(m_Recurse)
 
-       {
 
-       this->RecursiveGenerateCacheOnly();
 
-       }
 
-     }
 
-   // normal makefile output
 
-   else
 
-     {
 
-     // Generate depends 
 
-     cmMakeDepend md;
 
-     md.SetMakefile(m_Makefile);
 
-     md.GenerateDependInformation();
 
-     this->ProcessDepends(md);
 
-     // output the makefile fragment
 
-     this->OutputMakefile("Makefile"); 
 
-     }
 
- }
 
- void cmUnixMakefileGenerator::ProcessDepends(const cmMakeDepend &md)
 
- {
 
-   // Now create cmDependInformation objects for files in the directory
 
-   cmTargets &tgts = m_Makefile->GetTargets();
 
-   for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
 
-     {
 
-     std::vector<cmSourceFile> &classes = l->second.GetSourceFiles();
 
-     for(std::vector<cmSourceFile>::iterator i = classes.begin(); 
 
-         i != classes.end(); ++i)
 
-       {
 
-       if(!i->GetIsAHeaderFileOnly())
 
-         {
 
-         // get the depends
 
-         const cmDependInformation *info = 
 
-           md.GetDependInformationForSourceFile(*i);
 
-         
 
-         // Delete any hints from the source file's dependencies.
 
-         i->GetDepends().erase(i->GetDepends().begin(), i->GetDepends().end());
 
-         
 
-         // Now add the real dependencies for the file.
 
-         if (info)
 
-           {
 
-           for( cmDependInformation::IndexSet::const_iterator indx = 
 
-                  info->m_IndexSet.begin();
 
-                indx != info->m_IndexSet.end(); ++indx)
 
-             {
 
-             // Make sure the full path is given.  If not, the dependency was
 
-             // not found.
 
-             if(md.GetDependInformation()[*indx]->m_FullPath != "")
 
-               {
 
-               i->GetDepends().push_back(md.GetDependInformation()[*indx]->m_FullPath);
 
-               }
 
-             }
 
-           }
 
-         }
 
-       }
 
-     }
 
- }
 
- // This is where CMakeTargets.make is generated
 
- void cmUnixMakefileGenerator::OutputMakefile(const char* file)
 
- {
 
-   // Create sub directories fro aux source directories
 
-   std::vector<std::string>& auxSourceDirs = 
 
-     m_Makefile->GetAuxSourceDirectories();
 
-   if( auxSourceDirs.size() )
 
-     {
 
-     // For the case when this is running as a remote build
 
-     // on unix, make the directory
 
-     for(std::vector<std::string>::iterator i = auxSourceDirs.begin();
 
-         i != auxSourceDirs.end(); ++i)
 
-       {
 
-       if(i->c_str()[0] != '/')
 
-         {
 
-         std::string dir = m_Makefile->GetCurrentOutputDirectory();
 
-         if(dir.size() && dir[dir.size()-1] != '/')
 
-           {
 
-           dir += "/";
 
-           }
 
-         dir += *i;
 
-         cmSystemTools::MakeDirectory(dir.c_str());
 
-         }
 
-       else
 
-         {
 
-         cmSystemTools::MakeDirectory(i->c_str());
 
-         }
 
-       }
 
-     }
 
-   // Create a stream that writes to a temporary file
 
-   // then does a copy at the end.   This is to allow users
 
-   // to hit control-c during the make of the makefile
 
-   cmGeneratedFileStream tempFile(file);
 
-   tempFile.SetAlwaysCopy(true);
 
-   std::ostream&  fout = tempFile.GetStream();
 
-   if(!fout)
 
-     {
 
-     cmSystemTools::Error("Error can not open for write: ", file);
 
-     return;
 
-     }
 
-   fout << "# CMAKE generated Makefile, DO NOT EDIT!\n"
 
-        << "# Generated from the following files:\n# "
 
-        << m_Makefile->GetHomeOutputDirectory() << "/CMakeCache.txt\n";
 
-   std::vector<std::string> lfiles = m_Makefile->GetListFiles();
 
-   // sort the array
 
-   std::sort(lfiles.begin(), lfiles.end(), std::less<std::string>());
 
-   // remove duplicates
 
-   std::vector<std::string>::iterator new_end = 
 
-     std::unique(lfiles.begin(), lfiles.end());
 
-   lfiles.erase(new_end, lfiles.end());
 
-   for(std::vector<std::string>::const_iterator i = lfiles.begin();
 
-       i !=  lfiles.end(); ++i)
 
-     {
 
-     fout << "# " << i->c_str() << "\n";
 
-     }
 
-   fout << "\n\n";
 
-   // create a make variable with all of the sources for this Makefile
 
-   // for depend purposes.
 
-   fout << "CMAKE_MAKEFILE_SOURCES = ";
 
-   for(std::vector<std::string>::const_iterator i = lfiles.begin();
 
-       i !=  lfiles.end(); ++i)
 
-     {
 
-     fout << " " << i->c_str();
 
-     }
 
-   // Add the cache to the list
 
-   fout << " " << m_Makefile->GetHomeOutputDirectory() << "/CMakeCache.txt\n";
 
-   fout << "\n\n";
 
-   this->OutputMakeVariables(fout);
 
-   this->OutputMakeFlags(fout);
 
-   this->OutputTargetRules(fout);
 
-   this->OutputDependencies(fout);
 
-   this->OutputTargets(fout);
 
-   this->OutputSubDirectoryRules(fout);
 
-   std::string dependName = m_Makefile->GetStartOutputDirectory();
 
-   dependName += "/cmake.depends";
 
-   if(!this->m_CacheOnly)
 
-     {
 
-     std::ofstream dependout(dependName.c_str());
 
-     if(!dependout)
 
-       {
 
-        cmSystemTools::Error("Error can not open for write: ", dependName.c_str());
 
-        return;
 
-       }
 
-     this->OutputObjectDepends(dependout);
 
-     }
 
-   this->OutputCustomRules(fout);
 
-   this->OutputMakeRules(fout);
 
-   this->OutputInstallRules(fout);
 
-   // only add the depend include if the depend file exists
 
-   if(cmSystemTools::FileExists(dependName.c_str()))
 
-     {
 
-     fout << "include cmake.depends\n";
 
-     }
 
- }
 
- // Output the rules for any targets
 
- void cmUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
 
- {
 
-   // for each target add to the list of targets
 
-   fout << "TARGETS = ";
 
-   const cmTargets &tgts = m_Makefile->GetTargets();
 
-   // list libraries first
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     if (l->second.IsInAll())
 
-       {
 
-       if(l->second.GetType() == cmTarget::STATIC_LIBRARY)
 
-         {
 
-         fout << " \\\n" << m_LibraryOutputPath << "lib" << l->first.c_str()
 
-              << ".a";
 
-         }
 
-       else if(l->second.GetType() == cmTarget::SHARED_LIBRARY)
 
-         {
 
-         fout << " \\\n" << m_LibraryOutputPath << "lib" << l->first.c_str()
 
-              << m_Makefile->GetDefinition("CMAKE_SHLIB_SUFFIX");
 
-         }
 
-       }
 
-     }
 
-   // executables
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     if ((l->second.GetType() == cmTarget::EXECUTABLE ||
 
-          l->second.GetType() == cmTarget::WIN32_EXECUTABLE) &&
 
-         l->second.IsInAll())
 
-       {
 
-       fout << " \\\n" << m_ExecutableOutputPath << l->first.c_str();
 
-       }
 
-     }
 
-   // list utilities last
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     if (l->second.GetType() == cmTarget::UTILITY &&
 
- 	l->second.IsInAll())
 
-       {
 
-       fout << " \\\n" << l->first.c_str();
 
-       }
 
-     }
 
-   fout << "\n\n";
 
-   // get the classes from the source lists then add them to the groups
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     std::vector<cmSourceFile> classes = l->second.GetSourceFiles();
 
-     if (classes.begin() != classes.end())
 
-       {
 
- 	fout << l->first << "_SRC_OBJS = ";
 
- 	for(std::vector<cmSourceFile>::iterator i = classes.begin(); 
 
- 	    i != classes.end(); i++)
 
- 	  {
 
- 	    if(!i->IsAHeaderFileOnly())
 
- 	      {
 
- 		fout << "\\\n" << i->GetSourceName() << ".o ";
 
- 	      }
 
- 	  }
 
- 	fout << "\n\n";
 
-       }
 
-     }
 
-   fout << "CLEAN_OBJECT_FILES = ";
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     std::vector<cmSourceFile> classes = l->second.GetSourceFiles();
 
-     if (classes.begin() != classes.end())
 
-       {
 
-       fout << "${" << l->first << "_SRC_OBJS} ";
 
-       }
 
-     }
 
-   fout << "\n";
 
- }
 
- /**
 
-  * Output the linking rules on a command line.  For executables,
 
-  * targetLibrary should be a NULL pointer.  For libraries, it should point
 
-  * to the name of the library.  This will not link a library against itself.
 
-  */
 
- void cmUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
 
-                                                   const char* targetLibrary,
 
-                                                   const cmTarget &tgt)
 
- {
 
-   // Try to emit each search path once
 
-   std::set<std::string> emitted;
 
-   // Embed runtime search paths if possible and if required.
 
-   bool outputRuntime = true;
 
-   std::string runtimeFlag;
 
-   std::string runtimeSep;
 
-   std::vector<std::string> runtimeDirs;
 
-   if(m_Makefile->GetDefinition("CMAKE_SHLIB_RUNTIME_FLAG"))
 
-     {
 
-     runtimeFlag = m_Makefile->GetDefinition("CMAKE_SHLIB_RUNTIME_FLAG");
 
-     }
 
-   if(m_Makefile->GetDefinition("CMAKE_SHLIB_RUNTIME_SEP"))
 
-     {
 
-     runtimeSep = m_Makefile->GetDefinition("CMAKE_SHLIB_RUNTIME_SEP");
 
-     }
 
-   // concatenate all paths or no?
 
-   bool runtimeConcatenate = ( runtimeSep!="" );
 
-   if(runtimeFlag == "")
 
-     {
 
-     outputRuntime = false;
 
-     }
 
-   // Some search paths should never be emitted
 
-   emitted.insert("");
 
-   emitted.insert("/usr/lib");
 
-   // collect all the flags needed for linking libraries
 
-   std::string linkLibs;
 
-   std::vector<std::string>& libdirs = m_Makefile->GetLinkDirectories();
 
-   for(std::vector<std::string>::iterator libDir = libdirs.begin();
 
-       libDir != libdirs.end(); ++libDir)
 
-     { 
 
-     std::string libpath = cmSystemTools::EscapeSpaces(libDir->c_str());
 
-     if (m_LibraryOutputPath.size())
 
-       {
 
-       if(m_LibraryOutputPath != libpath 
 
-          && (libpath.find(m_Makefile->GetHomeOutputDirectory()) 
 
-              != std::string::npos))
 
-         {
 
-         emitted.insert(libpath);
 
-         }
 
-       }
 
-     if(emitted.insert(libpath).second)
 
-       {
 
-       std::string::size_type pos = libDir->find("-L");
 
-       if((pos == std::string::npos || pos > 0)
 
-          && libDir->find("${") == std::string::npos)
 
-         {
 
-         linkLibs += "-L";
 
-         if(outputRuntime)
 
-           {
 
-           runtimeDirs.push_back( libpath );
 
-           }
 
-         }
 
-       linkLibs += libpath;
 
-       linkLibs += " ";
 
-       }
 
-     }
 
-   
 
-   std::string librariesLinked;
 
-   const cmTarget::LinkLibraries& libs = tgt.GetLinkLibraries();
 
-   cmRegularExpression reg("lib(.*)(\\.so$|\\.a|\\.sl$)");
 
-   for(cmTarget::LinkLibraries::const_iterator lib = libs.begin();
 
-       lib != libs.end(); ++lib)
 
-     {
 
-     // Don't link the library against itself!
 
-     if(targetLibrary && (lib->first == targetLibrary)) continue;
 
-     // don't look at debug libraries
 
-     if (lib->second == cmTarget::DEBUG) continue;
 
-     // skip zero size library entries, this may happen
 
-     // if a variable expands to nothing.
 
-     if (lib->first.size() == 0) continue;
 
-     // if it is a full path break it into -L and -l
 
-     cmRegularExpression reg("(^[ \t]*\\-l)|(\\${)");
 
-     if(lib->first.find('/') != std::string::npos
 
-        && !reg.find(lib->first))
 
-       {
 
-       std::string dir, file;
 
-       cmSystemTools::SplitProgramPath(lib->first.c_str(),
 
-                                       dir, file);
 
-       std::string libpath = cmSystemTools::EscapeSpaces(dir.c_str());
 
-       if(emitted.insert(libpath).second)
 
-         {
 
-         linkLibs += "-L";
 
-         linkLibs += libpath;
 
-         linkLibs += " ";
 
-         if(outputRuntime)
 
-           {
 
-           runtimeDirs.push_back( libpath );
 
-           }
 
-         }
 
-       cmRegularExpression libname("lib(.*)\\.(.*)");
 
-       if(libname.find(file))
 
-         {
 
-         librariesLinked += "-l";
 
-         file = libname.match(1);
 
- 	librariesLinked += file;
 
-         librariesLinked += " ";
 
-         }
 
-       }
 
-     // not a full path, so add -l name
 
-     else
 
-       {
 
-       if(!reg.find(lib->first))
 
-         {
 
-         librariesLinked += "-l";
 
-         }
 
-       librariesLinked += lib->first;
 
-       librariesLinked += " ";
 
-       }
 
-     }
 
-   linkLibs += librariesLinked;
 
-   if(!targetLibrary)
 
-     {
 
-     // For executables, add these a second time so order does not matter
 
-     linkLibs += librariesLinked;
 
-     }
 
-   fout << linkLibs;
 
-   if(outputRuntime && runtimeDirs.size()>0)
 
-     {
 
-     // For the runtime search directories, do a "-Wl,-rpath,a:b:c" or
 
-     // a "-R a -R b -R c" type link line
 
-     fout << runtimeFlag;
 
-     std::vector<std::string>::iterator itr = runtimeDirs.begin();
 
-     fout << *itr;
 
-     ++itr;
 
-     for( ; itr != runtimeDirs.end(); ++itr )
 
-       {
 
-       if(runtimeConcatenate)
 
-         {
 
-         fout << runtimeSep << *itr;
 
-         }
 
-       else
 
-         {
 
-         fout << " " << runtimeFlag << *itr;
 
-         }
 
-       }
 
-     fout << " ";
 
-     }
 
- }
 
- void cmUnixMakefileGenerator::OutputTargets(std::ostream& fout)
 
- {
 
-   // for each target
 
-   const cmTargets &tgts = m_Makefile->GetTargets();
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     if (l->second.GetType() == cmTarget::STATIC_LIBRARY)
 
-       {
 
-       fout << "#---------------------------------------------------------\n";
 
-       fout << "# rules for a static library\n";
 
-       fout << "#\n";
 
-       fout << m_LibraryOutputPath << "lib" << l->first << ".a: ${" << 
 
-         l->first << "_SRC_OBJS} \n";
 
-       fout << "\t${CMAKE_AR} ${CMAKE_AR_ARGS} "
 
-            << m_LibraryOutputPath << "lib" << l->first << ".a ${" << 
 
-         l->first << "_SRC_OBJS} \n";
 
-       fout << "\t${CMAKE_RANLIB} "
 
-            << m_LibraryOutputPath << "lib" << l->first << ".a\n";
 
-       fout << "\n\n";
 
-       }
 
-     else if (l->second.GetType() == cmTarget::SHARED_LIBRARY)
 
-       {
 
-       fout << "#---------------------------------------------------------\n";
 
-       fout << "# rules for a shared library\n";
 
-       fout << "#\n";
 
-       fout << m_LibraryOutputPath << "lib" << l->first << "$(SHLIB_SUFFIX):  ${" << 
 
-         l->first << "_SRC_OBJS} \n";
 
-       fout << "\trm -f lib" << l->first << "$(SHLIB_SUFFIX)\n";
 
-       fout << "\t$(CMAKE_CXX_COMPILER)  ${CMAKE_SHLIB_LINK_FLAGS} "
 
-         "${CMAKE_SHLIB_BUILD_FLAGS} ${CMAKE_CXX_FLAGS} -o \\\n";
 
-       fout << "\t  " << m_LibraryOutputPath << "lib" << l->first << "$(SHLIB_SUFFIX) \\\n";
 
-       fout << "\t  ${" << l->first << 
 
-         "_SRC_OBJS} ";
 
-       this->OutputLinkLibraries(fout, l->first.c_str(), l->second);
 
-       fout << "\n\n";
 
-       }
 
-     else if ((l->second.GetType() == cmTarget::EXECUTABLE)
 
-              || (l->second.GetType() == cmTarget::WIN32_EXECUTABLE))
 
-       {
 
-       fout << m_ExecutableOutputPath << l->first << ": ${" << 
 
-         l->first << "_SRC_OBJS} ${CMAKE_DEPEND_LIBS}\n";
 
-       fout << "\t${CMAKE_CXX_COMPILER} ${CMAKE_SHLIB_LINK_FLAGS} ${CMAKE_CXXFLAGS} "
 
-            << "${" << l->first << "_SRC_OBJS} ";
 
-       this->OutputLinkLibraries(fout, NULL,l->second);
 
-       fout << " -o " << m_ExecutableOutputPath << l->first << "\n\n";
 
-       }
 
-     }
 
- }
 
- // output the list of libraries that the executables 
 
- // in this makefile will depend on.
 
- void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout)
 
- {
 
-   // Each dependency should only be emitted once.
 
-   std::set<std::string> emitted;
 
-   fout << "CMAKE_DEPEND_LIBS = ";
 
-   cmTarget::LinkLibraries& libs = m_Makefile->GetLinkLibraries();
 
-   cmTarget::LinkLibraries::const_iterator lib2;
 
-   // Search the list of libraries that will be linked into
 
-   // the executable
 
-   emitted.clear();
 
-   for(lib2 = libs.begin(); lib2 != libs.end(); ++lib2)
 
-     {
 
-     if( ! emitted.insert(lib2->first).second ) continue;
 
-     const char* cacheValue
 
-       = cmCacheManager::GetInstance()->GetCacheValue(lib2->first.c_str());
 
-     if(cacheValue )
 
-       {
 
-       // if there is a cache value then this is a library that cmake
 
-       // knows how to build, so we can depend on it
 
-       std::string libpath;
 
-       if (strcmp(m_Makefile->GetCurrentOutputDirectory(), cacheValue) != 0)
 
-         {
 
-         // if the library is not in the current directory, then get the full
 
-         // path to it
 
-         libpath = cacheValue;
 
-         if(m_LibraryOutputPath.size())
 
-           {
 
-           libpath = m_LibraryOutputPath;
 
-           libpath += "lib";
 
-           }
 
-         else
 
-           {
 
-           libpath += "/lib";
 
-           }
 
-         }
 
-       else
 
-         {
 
-         // library is in current Makefile so use lib as a prefix
 
-         libpath = m_LibraryOutputPath;
 
-         libpath += "lib";
 
-         }
 
-       // add the library name
 
-       libpath += lib2->first;
 
-       // add the correct extension
 
-       std::string ltname = lib2->first+"_LIBRARY_TYPE";
 
-       const char* libType
 
-         = cmCacheManager::GetInstance()->GetCacheValue(ltname.c_str());
 
-       if(libType && std::string(libType) == "SHARED")
 
-         {
 
-         libpath += m_Makefile->GetDefinition("CMAKE_SHLIB_SUFFIX");
 
-         }
 
-       else
 
-         {
 
-         libpath += ".a";
 
-         }
 
-       fout << libpath << " ";
 
-       }
 
-     }
 
-   fout << "\n\n";
 
-   emitted.clear();
 
-   for(lib2 = libs.begin(); lib2 != libs.end(); ++lib2)
 
-     {
 
-     // loop over the list of directories that the libraries might
 
-     // be in, looking for an ADD_LIBRARY(lib...) line. This would
 
-     // be stored in the cache
 
-     if( ! emitted.insert(lib2->first).second ) continue;
 
-     const char* cacheValue
 
-       = cmCacheManager::GetInstance()->GetCacheValue(lib2->first.c_str());
 
-     // if cache and not the current directory add a rule, to
 
-     // jump into the directory and build for the first time
 
-     if(cacheValue 
 
-        && (strcmp(m_Makefile->GetCurrentOutputDirectory(), cacheValue) != 0))
 
-       {
 
-       std::string library = "lib";
 
-       library += lib2->first; 
 
-       std::string libpath = cacheValue;
 
-       // add the correct extension
 
-       std::string ltname = lib2->first+"_LIBRARY_TYPE";
 
-       const char* libType
 
-         = cmCacheManager::GetInstance()->GetCacheValue(ltname.c_str());
 
-       if(libType && std::string(libType) == "SHARED")
 
-         {
 
-         libpath += m_Makefile->GetDefinition("CMAKE_SHLIB_SUFFIX");
 
-         }
 
-       else
 
-         {
 
-         libpath += ".a";
 
-         }
 
-       if(m_LibraryOutputPath.size())
 
-         {
 
-         libpath = m_LibraryOutputPath;
 
-         }
 
-       else
 
-         {
 
-         libpath += "/";
 
-         }
 
-       libpath += library;
 
-       // put out a rule to build the library if it does not exist
 
-       fout << libpath.c_str()
 
-            << ":\n\tcd " << cacheValue 
 
-            << "; ${MAKE} " << m_LibraryOutputPath << library.c_str() << "\n\n";
 
-       }
 
-     }
 
- }
 
- // output make include flags
 
- void cmUnixMakefileGenerator::OutputMakeFlags(std::ostream& fout)
 
- {
 
-   // Output Include paths
 
-   fout << "INCLUDE_FLAGS = ";
 
-   std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
 
-   std::vector<std::string>::iterator i;
 
-   fout << "-I" << m_Makefile->GetStartDirectory() << " ";
 
-   for(i = includes.begin(); i != includes.end(); ++i)
 
-     {
 
-     std::string include = *i;
 
-     fout << "-I" << cmSystemTools::EscapeSpaces(i->c_str()).c_str() << " ";
 
-     }
 
-   fout << m_Makefile->GetDefineFlags();
 
-   fout << "\n\n";
 
-   fout << "default_target: all\n\n";
 
-   // see if there are files to compile in this makefile
 
-   // These are used for both libraries and executables
 
- }
 
- // fix up names of directories so they can be used
 
- // as targets in makefiles.
 
- inline std::string FixDirectoryName(const char* dir)
 
- {
 
-   std::string s = dir;
 
-   // replace ../ with 3 under bars
 
-   size_t pos = s.find("../");
 
-   if(pos != std::string::npos)
 
-     {
 
-     s.replace(pos, 3, "___");
 
-     }
 
-   // replace / directory separators with a single under bar 
 
-   pos = s.find("/");
 
-   while(pos != std::string::npos)
 
-     {
 
-     s.replace(pos, 1, "_");
 
-     pos = s.find("/");
 
-     }
 
-   return s;
 
- }
 
- void 
 
- cmUnixMakefileGenerator::
 
- OutputSubDirectoryVars(std::ostream& fout,
 
-                        const char* var,
 
-                        const char* target,
 
-                        const char* target1,
 
-                        const char* target2,
 
-                        const std::vector<std::string>& SubDirectories)
 
- {
 
-   if( SubDirectories.size() == 0)
 
-     {
 
-     return;
 
-     }
 
-   fout << "# Variable for making " << target << " in subdirectories.\n";
 
-   fout << var << " = \\\n";
 
-   unsigned int i;
 
-   for(i =0; i < SubDirectories.size(); i++)
 
-     { 
 
-     std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
 
-     fout << target << "_" << subdir.c_str();
 
-     if(i == SubDirectories.size()-1)
 
-       {
 
-       fout << " \n\n";
 
-       }
 
-     else
 
-       {
 
-       fout << " \\\n";
 
-       }
 
-     }
 
-   fout << "# Targets for making " << target << " in subdirectories.\n";
 
-   for(unsigned int i =0; i < SubDirectories.size(); i++)
 
-     {
 
-     std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
 
-     fout << target << "_" << subdir.c_str() << ":\n";
 
-     if(target1)
 
-       {
 
- 	fout << "\t@if test ! -d " << SubDirectories[i].c_str() << "; then ${MAKE} rebuild_cache; fi\n"
 
- 	  "\tcd " << SubDirectories[i].c_str()
 
-            << "; ${MAKE} -${MAKEFLAGS} " << target1 << "\n";
 
-       }
 
-     if(target2)
 
-       {
 
-       fout << "\t@cd " << SubDirectories[i].c_str()
 
-            << "; ${MAKE} -${MAKEFLAGS} " << target2 << "\n";
 
-       }
 
-     }
 
-   fout << "\n\n";
 
- }
 
- // output rules for decending into sub directories
 
- void cmUnixMakefileGenerator::OutputSubDirectoryRules(std::ostream& fout)
 
- {
 
-     // Output Sub directory build rules
 
-   const std::vector<std::string>& SubDirectories
 
-     = m_Makefile->GetSubDirectories();
 
-     
 
-   if( SubDirectories.size() == 0)
 
-     {
 
-     return;
 
-     }
 
-   this->OutputSubDirectoryVars(fout, "SUBDIR_BUILD", "build",
 
-                                "cmake.depends",
 
-                                "all",
 
-                                SubDirectories);
 
-   this->OutputSubDirectoryVars(fout, "SUBDIR_CLEAN", "clean",
 
-                                "clean",
 
-                                0,
 
-                                SubDirectories);
 
-   this->OutputSubDirectoryVars(fout, "SUBDIR_DEPEND", "depend",
 
-                                "depend",
 
-                                0,
 
-                                SubDirectories);
 
-   this->OutputSubDirectoryVars(fout, "SUBDIR_INSTALL", "install",
 
-                                "install",
 
-                                0,
 
-                                SubDirectories);
 
- }
 
- // Output the depend information for all the classes 
 
- // in the makefile.  These would have been generated
 
- // by the class cmMakeDepend GenerateMakefile
 
- void cmUnixMakefileGenerator::OutputObjectDepends(std::ostream& fout)
 
- {
 
-   // Iterate over every target.
 
-   std::map<std::string, cmTarget>& targets = m_Makefile->GetTargets();
 
-   for(std::map<std::string, cmTarget>::const_iterator target = targets.begin(); 
 
-       target != targets.end(); ++target)
 
-     {
 
-     // Iterate over every source for this target.
 
-     const std::vector<cmSourceFile>& sources = target->second.GetSourceFiles();
 
-     for(std::vector<cmSourceFile>::const_iterator source = sources.begin(); 
 
-         source != sources.end(); ++source)
 
-       {
 
-       if(!source->IsAHeaderFileOnly())
 
-         {
 
-         if(!source->GetDepends().empty())
 
-           {
 
-           fout << source->GetSourceName() << ".o :";
 
-           // Iterate through all the dependencies for this source.
 
-           for(std::vector<std::string>::const_iterator dep =
 
-                 source->GetDepends().begin();
 
-               dep != source->GetDepends().end(); ++dep)
 
-             {
 
-             fout << " \\\n" << dep->c_str();
 
-             }
 
-           fout << "\n\n";
 
-           }
 
-         }
 
-       }
 
-     }
 
- }
 
- // Output each custom rule in the following format:
 
- // output: source depends...
 
- //   (tab)   command...
 
- void cmUnixMakefileGenerator::OutputCustomRules(std::ostream& fout)
 
- {
 
-   // We may be modifying the source groups temporarily, so make a copy.
 
-   std::vector<cmSourceGroup> sourceGroups = m_Makefile->GetSourceGroups();
 
-   
 
-   const cmTargets &tgts = m_Makefile->GetTargets();
 
-   for(cmTargets::const_iterator tgt = tgts.begin(); 
 
-       tgt != tgts.end(); ++tgt)
 
-     {
 
-     // add any custom rules to the source groups
 
-     for (std::vector<cmCustomCommand>::const_iterator cr = 
 
-            tgt->second.GetCustomCommands().begin(); 
 
-          cr != tgt->second.GetCustomCommands().end(); ++cr)
 
-       {
 
-       cmSourceGroup& sourceGroup = 
 
-         m_Makefile->FindSourceGroup(cr->GetSourceName().c_str(),
 
-                                     sourceGroups);
 
-       cmCustomCommand cc(*cr);
 
-       cc.ExpandVariables(*m_Makefile);
 
-       sourceGroup.AddCustomCommand(cc);
 
-       }
 
-     }
 
-   // Loop through every source group.
 
-   for(std::vector<cmSourceGroup>::const_iterator sg =
 
-         sourceGroups.begin(); sg != sourceGroups.end(); ++sg)
 
-     {
 
-     const cmSourceGroup::BuildRules& buildRules = sg->GetBuildRules();
 
-     if(buildRules.empty())
 
-       { continue; }
 
-     
 
-     std::string name = sg->GetName();
 
-     if(name != "")
 
-       {
 
-       fout << "# Start of source group \"" << name.c_str() << "\"\n";
 
-       }
 
-     
 
-     // Loop through each source in the source group.
 
-     for(cmSourceGroup::BuildRules::const_iterator cc =
 
-           buildRules.begin(); cc != buildRules.end(); ++ cc)
 
-       {
 
-       std::string source = cc->first;
 
-       const cmSourceGroup::Commands& commands = cc->second;
 
-       // Loop through every command generating code from the current source.
 
-       for(cmSourceGroup::Commands::const_iterator c = commands.begin();
 
-           c != commands.end(); ++c)
 
-         {
 
-         std::string command = c->first;
 
-         const cmSourceGroup::CommandFiles& commandFiles = c->second;
 
-         // if the command has no outputs, then it is a utility command
 
-         // with no outputs
 
-         if(commandFiles.m_Outputs.size() == 0)
 
-           {
 
- 	    fout << source.c_str() << ": ";
 
- 	    // Write out all the dependencies for this rule.
 
- 	    for(std::set<std::string>::const_iterator d =
 
- 		  commandFiles.m_Depends.begin();
 
- 		d != commandFiles.m_Depends.end(); ++d)
 
- 	      {
 
- 		std::string dep = cmSystemTools::EscapeSpaces(d->c_str());
 
- 		fout << " " << dep.c_str();
 
- 	      }
 
- 	    fout << "\n\t" << command.c_str() << "\n\n";
 
-           }
 
-         // Write a rule for every output generated by this command.
 
-         for(std::set<std::string>::const_iterator output =
 
-               commandFiles.m_Outputs.begin();
 
-             output != commandFiles.m_Outputs.end(); ++output)
 
-           {
 
-           std::string src = cmSystemTools::EscapeSpaces(source.c_str());
 
-           fout << output->c_str() << ": " << src.c_str();
 
-           // Write out all the dependencies for this rule.
 
-           for(std::set<std::string>::const_iterator d =
 
-                 commandFiles.m_Depends.begin();
 
-               d != commandFiles.m_Depends.end(); ++d)
 
-             {
 
-             std::string dep = cmSystemTools::EscapeSpaces(d->c_str());
 
-             fout << " " << dep.c_str();
 
-             }
 
-           fout << "\n\t" << command.c_str() << "\n\n";
 
-           }
 
-         }
 
-       }
 
-     if(name != "")
 
-       {
 
-       fout << "# End of source group \"" << name.c_str() << "\"\n\n";
 
-       }
 
-     }  
 
- }
 
- void cmUnixMakefileGenerator::GenerateCacheOnly()
 
- {
 
-   cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory());
 
-   std::string dest = m_Makefile->GetStartOutputDirectory();
 
-   dest += "/Makefile";
 
-   std::cout << "cmake: creating : " << dest.c_str() << std::endl;
 
-   this->OutputMakefile(dest.c_str());
 
-   return;
 
- }
 
- void cmUnixMakefileGenerator::RecursiveGenerateCacheOnly()
 
- { 
 
-   std::vector<cmMakefile*> makefiles;
 
-   m_Makefile->FindSubDirectoryCMakeListsFiles(makefiles);
 
-   for(std::vector<cmMakefile*>::iterator i = makefiles.begin();
 
-       i != makefiles.end(); ++i)
 
-     {
 
-     cmMakefile* mf = *i;
 
-     if(m_Makefile->GetDefinition("RUN_CONFIGURE"))
 
-       {
 
-       mf->AddDefinition("RUN_CONFIGURE", true);
 
-       }
 
-     cmUnixMakefileGenerator* gen = new cmUnixMakefileGenerator;
 
-     gen->SetCacheOnlyOn();
 
-     gen->SetRecurseOff();
 
-     mf->SetMakefileGenerator(gen);
 
-     mf->GenerateMakefile();
 
-     }
 
-   // CLEAN up the makefiles created
 
-   for(unsigned int i =0; i < makefiles.size(); ++i)
 
-     {
 
-       delete makefiles[i];
 
-     }
 
- }
 
- void cmUnixMakefileGenerator::OutputMakeVariables(std::ostream& fout)
 
- {
 
-   if(strcmp(m_Makefile->GetHomeDirectory(), 
 
-             m_Makefile->GetHomeOutputDirectory()) == 0)
 
-     {
 
-     fout << "srcdir        = .\n\n";
 
-     }
 
-   else
 
-     {
 
-     fout << "srcdir        = " <<  m_Makefile->GetStartDirectory() << "\n";
 
-     fout << "VPATH         = " <<  m_Makefile->GetStartDirectory() << "\n";
 
-     }
 
-   const char* variables = 
 
-     "# the standard shell for make\n"
 
-     "SHELL = /bin/sh\n"
 
-     "\n"
 
-     "CMAKE_LIB_EXT       = @CMAKE_LIB_EXT@\n"
 
-     "CMAKE_RANLIB        = @CMAKE_RANLIB@\n"
 
-     "CMAKE_AR            = @CMAKE_AR@\n"
 
-     "CMAKE_AR_ARGS       = @CMAKE_AR_ARGS@\n"
 
-     "CMAKE_C_COMPILER    = @CMAKE_C_COMPILER@\n"
 
-     "CMAKE_CFLAGS        = @CMAKE_C_FLAGS@\n"
 
-     "CMAKE_SHLIB_CFLAGS  = @CMAKE_SHLIB_CFLAGS@\n"
 
-     "\n"
 
-     "CMAKE_CXX_COMPILER  = @CMAKE_CXX_COMPILER@\n"
 
-     "CMAKE_CXXFLAGS      = @CMAKE_CXX_FLAGS@ @CMAKE_TEMPLATE_FLAGS@\n"
 
-     "\n"
 
-     "CMAKE_SHLIB_BUILD_FLAGS = @CMAKE_SHLIB_BUILD_FLAGS@\n"
 
-     "CMAKE_SHLIB_LINK_FLAGS = @CMAKE_SHLIB_LINK_FLAGS@\n"
 
-     "DL_LIBS              = @CMAKE_DL_LIBS@\n"
 
-     "SHLIB_LD_LIBS        = @CMAKE_SHLIB_LD_LIBS@\n"
 
-     "SHLIB_SUFFIX         = @CMAKE_SHLIB_SUFFIX@\n"
 
-     "THREAD_LIBS          = @CMAKE_THREAD_LIBS@\n"
 
-     "\n"
 
-     "# set up the path to the rulesgen program\n"
 
-     "CMAKE_COMMAND = ${CMAKE_COMMAND}\n"
 
-     "\n"
 
-     "\n"
 
-     "\n";
 
-   std::string replaceVars = variables;
 
-   
 
-   m_Makefile->ExpandVariablesInString(replaceVars);
 
-   fout << replaceVars.c_str();
 
-   fout << "CMAKE_CURRENT_SOURCE = " << m_Makefile->GetStartDirectory() << "\n";
 
-   fout << "CMAKE_CURRENT_BINARY = " << m_Makefile->GetStartOutputDirectory() << "\n";
 
- }
 
- void cmUnixMakefileGenerator::OutputInstallRules(std::ostream& fout)
 
- {
 
-   const char* root
 
-     = cmCacheManager::GetInstance()->GetCacheValue("CMAKE_ROOT");
 
-   fout << "INSTALL = " << root << "/Templates/install-sh -c\n";
 
-   fout << "INSTALL_PROGRAM = ${INSTALL}\n";
 
-   fout << "INSTALL_DATA =    ${INSTALL} -m 644\n";
 
-   
 
-   const cmTargets &tgts = m_Makefile->GetTargets();
 
-   fout << "install: ${SUBDIR_INSTALL}\n";
 
-   fout << "\t@echo \"Installing ...\"\n";
 
-   
 
-   const char* prefix
 
-     = cmCacheManager::GetInstance()->GetCacheValue("CMAKE_INSTALL_PREFIX");
 
-   if (!prefix)
 
-     {
 
-     prefix = "/usr/local";
 
-     }
 
-   for(cmTargets::const_iterator l = tgts.begin(); 
 
-       l != tgts.end(); l++)
 
-     {
 
-     if (l->second.GetInstallPath() != "")
 
-       {
 
-       // first make the directories for each target 
 
-       fout << "\t@if [ ! -d " << prefix << l->second.GetInstallPath() << 
 
- 	" ] ; then \\\n";
 
-       fout << "\t   echo \"Making directory " << prefix 
 
- 	   << l->second.GetInstallPath() << " \"; \\\n";
 
-       fout << "\t   mkdir -p " << prefix << l->second.GetInstallPath() 
 
- 	   << "; \\\n";
 
-       fout << "\t   chmod 755 " <<  prefix << l->second.GetInstallPath() 
 
- 	   << "; \\\n";
 
-       fout << "\t else true; \\\n";
 
-       fout << "\t fi\n";
 
-       // now install the target
 
-       switch (l->second.GetType())
 
- 	{
 
- 	case cmTarget::STATIC_LIBRARY:
 
- 	  fout << "\t$(INSTALL_DATA) " << m_LibraryOutputPath << "lib" 
 
-                << l->first;
 
-           fout << ".a";
 
- 	  fout << " " << prefix << l->second.GetInstallPath() << "\n";
 
- 	  break;
 
- 	case cmTarget::SHARED_LIBRARY:
 
- 	  fout << "\t$(INSTALL_DATA) " << m_LibraryOutputPath << "lib" 
 
-                << l->first;
 
-           fout << m_Makefile->GetDefinition("CMAKE_SHLIB_SUFFIX");
 
- 	  fout << " " << prefix << l->second.GetInstallPath() << "\n";
 
- 	  break;
 
- 	case cmTarget::WIN32_EXECUTABLE:
 
- 	case cmTarget::EXECUTABLE:
 
-           fout << "\t$(INSTALL_PROGRAM) " << m_ExecutableOutputPath 
 
-                << l->first
 
-                << cmSystemTools::GetExecutableExtension()
 
- 	       << " " << prefix << l->second.GetInstallPath() << "\n";
 
- 	  break;
 
- 	case cmTarget::INSTALL:
 
- 	  {
 
- 	  const std::vector<std::string> &sf = l->second.GetSourceLists();
 
- 	  std::vector<std::string>::const_iterator i;
 
- 	  for (i = sf.begin(); i != sf.end(); ++i)
 
- 	    {
 
- 	    fout << "\t@ echo \"Installing " << *i << " \"\n"; 
 
- 	    fout << "\t@if [ -e " << *i << " ] ; then \\\n";
 
-             // avoid using install-sh to install install-sh
 
-             // does not work on windows.... 
 
-            if(*i == "install-sh")
 
-               {
 
-               fout << "\t   cp ";
 
-               }
 
-             else
 
-               {
 
-               fout << "\t   $(INSTALL) ";
 
-               }
 
- 	    fout << *i
 
- 		 << " " << prefix << l->second.GetInstallPath() << "; \\\n";
 
- 	    fout << "\t elif [ -e ${srcdir}/" << *i << " ] ; then \\\n";
 
-             // avoid using install-sh to install install-sh
 
-             // does not work on windows....
 
-             if(*i == "install-sh")
 
-               {
 
-               fout << "\t   cp ";
 
-               }
 
-             else
 
-               {
 
-               fout << "\t   $(INSTALL) ";
 
-               }
 
- 	    fout << "${srcdir}/" << *i 
 
- 		 << " " << prefix << l->second.GetInstallPath() << "; \\\n";
 
- 	    fout << "\telse \\\n";
 
- 	    fout << "\t   echo \" ERROR!!! Unable to find: " << *i 
 
- 		 << " \"; \\\n";	 
 
- 	    fout << "\t fi\n";
 
- 	    }
 
- 	  }
 
- 	  break;
 
-         case cmTarget::UTILITY:
 
-         default:
 
-           break;
 
- 	}
 
-       }
 
-     }
 
- }
 
- void cmUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
 
- {
 
-   // only include the cmake.depends and not the Makefile, as
 
-   // building one will cause the other to be built
 
-   this->OutputMakeRule(fout, 
 
-                        "Default build rule",
 
-                        "all",
 
-                        "cmake.depends ${TARGETS} ${SUBDIR_BUILD} ${CMAKE_COMMAND}",
 
-                        0);
 
-   this->OutputMakeRule(fout, 
 
-                        "remove generated files",
 
-                        "clean",
 
-                        "${SUBDIR_CLEAN}",
 
-                        "rm -f ${CLEAN_OBJECT_FILES} ${EXECUTABLES} ${TARGETS}");
 
-   this->OutputMakeRule(fout, 
 
-                        "Rule to build the cmake.depends and Makefile as side effect",
 
-                        "cmake.depends",
 
-                        "${CMAKE_COMMAND} ${CMAKE_MAKEFILE_SOURCES} ",
 
-                        "${CMAKE_COMMAND} "
 
-                        "-S${CMAKE_CURRENT_SOURCE} -O${CMAKE_CURRENT_BINARY} "
 
-                        "-H${CMAKE_SOURCE_DIR} -B${CMAKE_BINARY_DIR}");
 
-   this->OutputMakeRule(fout, 
 
-                        "Rule to force the build of cmake.depends",
 
-                        "depend",
 
-                        "${SUBDIR_DEPEND}",
 
-                        "${CMAKE_COMMAND} "
 
-                        "-S${CMAKE_CURRENT_SOURCE} -O${CMAKE_CURRENT_BINARY} "
 
-                        "-H${CMAKE_SOURCE_DIR} -B${CMAKE_BINARY_DIR}");  
 
-   this->OutputMakeRule(fout, 
 
-                        "Rebuild the cache",
 
-                        "rebuild_cache",
 
-                        "${CMAKE_BINARY_DIR}/CMakeCache.txt",
 
-                        "${CMAKE_COMMAND} "
 
-                        "-H${CMAKE_SOURCE_DIR} -B${CMAKE_BINARY_DIR}");
 
-   this->OutputMakeRule(fout, 
 
-                        "Rebuild the cache",
 
-                        "${CMAKE_BINARY_DIR}/CMakeCache.txt",
 
- 		       0,
 
-                        "${CMAKE_COMMAND} "
 
-                        "-H${CMAKE_SOURCE_DIR} -B${CMAKE_BINARY_DIR}");
 
-   // do not put this command in for the cmake project
 
-   if(strcmp(m_Makefile->GetProjectName(), "CMake") != 0)
 
-     {
 
-     this->OutputMakeRule(fout, 
 
-                          "Rebuild cmake dummy rule",
 
-                          "${CMAKE_COMMAND}",
 
-                          0,
 
-                          "echo \"cmake might be out of date\"");
 
-     }
 
-   this->OutputMakeRule(fout, 
 
-                        "Rule to keep make from removing Makefiles "
 
-                        "if control-C is hit during a run of cmake.",
 
-                        ".PRECIOUS",
 
-                        "Makefile cmake.depends",
 
-                        0);
 
-   
 
-   fout << "# Rules to build .o files from their sources:\n";
 
-   std::set<std::string> rules;
 
-   
 
-   // Iterate over every target.
 
-   std::map<std::string, cmTarget>& targets = m_Makefile->GetTargets();
 
-   for(std::map<std::string, cmTarget>::const_iterator target = targets.begin(); 
 
-       target != targets.end(); ++target)
 
-     {
 
-     bool shared = (target->second.GetType() == cmTarget::SHARED_LIBRARY);
 
-     // Iterate over every source for this target.
 
-     const std::vector<cmSourceFile>& sources = target->second.GetSourceFiles();
 
-     for(std::vector<cmSourceFile>::const_iterator source = sources.begin(); 
 
-         source != sources.end(); ++source)
 
-       {
 
-      if(!source->IsAHeaderFileOnly())
 
-         {
 
-         std::string shortName;
 
-         // If the full path to the source file includes this
 
-         // directory, we want to use the relative path for the
 
-         // filename of the object file.  Otherwise, we will use just
 
-         // the filename portion.
 
-         if((cmSystemTools::GetFilenamePath(source->GetFullPath()).find(m_Makefile->GetCurrentDirectory()) == 0)
 
-            || (cmSystemTools::GetFilenamePath(source->GetFullPath()).find(m_Makefile->GetCurrentOutputDirectory()) == 0))
 
-           {
 
-           shortName = source->GetSourceName();
 
-           
 
-           // The path may be relative.  See if a directory needs to be
 
-           // created for the output file.  This is a ugly, and perhaps
 
-           // should be moved elsewhere.
 
-           std::string relPath =
 
-             cmSystemTools::GetFilenamePath(source->GetSourceName());
 
-           if(relPath != "")
 
-             {
 
-             std::string outPath = m_Makefile->GetCurrentOutputDirectory();
 
-             outPath += "/"+relPath;
 
-             cmSystemTools::MakeDirectory(outPath.c_str());
 
-             }
 
-           }
 
-         else
 
-           {
 
-           shortName = cmSystemTools::GetFilenameName(source->GetSourceName());
 
-           }
 
-         // Only output a rule for each .o once.
 
-         if(rules.find(shortName) == rules.end())
 
-           {
 
-           rules.insert(shortName);
 
-           fout << shortName.c_str() << ".o : " << source->GetFullPath() << "\n";
 
-           std::string ext = source->GetSourceExtension();
 
-           if ( ext == "cxx" || ext == "cc" || ext == "cpp" || ext == "C" )
 
-             {
 
-             fout << "\t${CMAKE_CXX_COMPILER} ${CMAKE_CXXFLAGS} "
 
-                  << (shared? "${CMAKE_SHLIB_CFLAGS} ":"") << "${INCLUDE_FLAGS} -c $< -o $@\n\n";
 
-             }
 
-           else if ( ext == "c" )
 
-             {
 
-             fout << "\t${CMAKE_C_COMPILER} ${CMAKE_CFLAGS} "
 
-                  << (shared? "${CMAKE_SHLIB_CFLAGS} ":"") << "${INCLUDE_FLAGS} -c $< -o $@\n\n";
 
-             }
 
-           }
 
-         }
 
-       }
 
-     }
 
- }
 
- void cmUnixMakefileGenerator::OutputMakeRule(std::ostream& fout, 
 
-                                              const char* comment,
 
-                                              const char* target,
 
-                                              const char* depends, 
 
-                                              const char* command)
 
- {
 
-   if(!target)
 
-     {
 
-     cmSystemTools::Error("no target for OutputMakeRule");
 
-     return;
 
-     }
 
-   
 
-   std::string replace;
 
-   if(comment)
 
-     {
 
-     replace = comment;
 
-     m_Makefile->ExpandVariablesInString(replace);
 
-     fout << "# " << comment;
 
-     }
 
-   fout << "\n";
 
-   replace = target;
 
-   m_Makefile->ExpandVariablesInString(replace);
 
-   fout << replace.c_str() << ": ";
 
-   if(depends)
 
-     {
 
-     replace = depends;
 
-     m_Makefile->ExpandVariablesInString(replace);
 
-     fout << replace.c_str();
 
-     }
 
-   fout << "\n";
 
-   if(command)
 
-     {
 
-     replace = command;
 
-     m_Makefile->ExpandVariablesInString(replace);
 
-     fout << "\t" << replace.c_str() << "\n\n";
 
-     }
 
-   fout << "\n";
 
- }
 
- void cmUnixMakefileGenerator::SetLocal (bool local)
 
- {
 
-   if (local)
 
-     {
 
-     m_CacheOnly = false;
 
-     m_Recurse = false;
 
-     }
 
-   else
 
-     {
 
-     m_CacheOnly = true;
 
-     m_Recurse = true;
 
-     }
 
- }
 
- void cmUnixMakefileGenerator::ComputeSystemInfo()
 
- {
 
-   if (m_CacheOnly)
 
-     {
 
-       // currently we run configure shell script here to determine the info
 
-       std::string output;
 
-       std::string cmd = "cd ";
 
-       cmd += m_Makefile->GetHomeOutputDirectory();
 
-       cmd += "; ";
 
-       const char* root
 
- 	= cmCacheManager::GetInstance()->GetCacheValue("CMAKE_ROOT");
 
-       cmd += root;
 
-       cmd += "/Templates/configure";
 
-       cmSystemTools::RunCommand(cmd.c_str(), output);
 
-       m_Makefile->AddDefinition("RUN_CONFIGURE", true);
 
-     }
 
-   // now load the settings
 
-   std::string fpath = m_Makefile->GetHomeOutputDirectory();
 
-   fpath += "/CMakeSystemConfig.cmake";
 
-   m_Makefile->ReadListFile(NULL,fpath.c_str());
 
- }
 
 
  |