2001-01-11 22:47:38 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmUnixMakefileGenerator.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmStandardIncludes.h"
|
2000-09-18 17:19:38 +04:00
|
|
|
#include "cmSystemTools.h"
|
2001-04-25 01:33:09 +04:00
|
|
|
#include "cmSourceFile.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmMakeDepend.h"
|
2001-04-12 23:34:09 +04:00
|
|
|
#include "cmCacheManager.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
|
|
|
void cmUnixMakefileGenerator::GenerateMakefile()
|
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
// Generate depends
|
2001-01-05 19:41:20 +03:00
|
|
|
cmMakeDepend md;
|
|
|
|
md.SetMakefile(m_Makefile);
|
|
|
|
md.DoDepends();
|
2001-02-19 23:13:48 +03:00
|
|
|
// output the makefile fragment
|
2001-01-05 19:41:20 +03:00
|
|
|
this->OutputMakefile("CMakeTargets.make");
|
|
|
|
}
|
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2000-09-12 13:30:35 +04:00
|
|
|
// This is where CMakeTargets.make is generated
|
2001-01-05 19:41:20 +03:00
|
|
|
void cmUnixMakefileGenerator::OutputMakefile(const char* file)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
// Create sub directories fro aux source directories
|
|
|
|
std::vector<std::string>& auxSourceDirs =
|
|
|
|
m_Makefile->GetAuxSourceDirectories();
|
2001-01-05 19:41:20 +03:00
|
|
|
if( auxSourceDirs.size() )
|
2000-09-21 21:45:08 +04:00
|
|
|
{
|
|
|
|
// For the case when this is running as a remote build
|
|
|
|
// on unix, make the directory
|
2001-01-05 19:41:20 +03:00
|
|
|
for(std::vector<std::string>::iterator i = auxSourceDirs.begin();
|
|
|
|
i != auxSourceDirs.end(); ++i)
|
2000-09-21 21:45:08 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::MakeDirectory(i->c_str());
|
|
|
|
}
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
std::ofstream fout(file);
|
|
|
|
if(!fout)
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
cmSystemTools::Error("Error can not open for write: ", file);
|
2000-08-29 23:26:29 +04:00
|
|
|
return;
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
this->OutputMakeFlags(fout);
|
|
|
|
this->OutputVerbatim(fout);
|
2001-04-11 22:59:02 +04:00
|
|
|
this->OutputTargetRules(fout);
|
2001-04-12 17:55:08 +04:00
|
|
|
this->OutputDependencies(fout);
|
2001-04-11 22:59:02 +04:00
|
|
|
this->OutputTargets(fout);
|
2001-02-19 23:13:48 +03:00
|
|
|
this->OutputSubDirectoryRules(fout);
|
2001-03-09 18:53:32 +03:00
|
|
|
this->OutputObjectDepends(fout);
|
2001-03-03 00:04:26 +03:00
|
|
|
this->OutputCustomRules(fout);
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
|
|
|
|
2001-04-11 22:59:02 +04:00
|
|
|
// Output the rules for any targets
|
|
|
|
void cmUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
// for each target add to the list of targets
|
|
|
|
fout << "TARGETS = ";
|
|
|
|
const cmTargets &tgts = m_Makefile->GetTargets();
|
2001-04-12 23:34:09 +04:00
|
|
|
// libraries
|
2001-04-11 22:59:02 +04:00
|
|
|
for(cmTargets::const_iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++)
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-19 21:28:46 +04:00
|
|
|
if (l->second.IsALibrary())
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
|
|
|
fout << " \\\nlib" << l->first.c_str() << "${CMAKE_LIB_EXT}";
|
|
|
|
}
|
2001-04-12 23:34:09 +04:00
|
|
|
}
|
|
|
|
// executables
|
|
|
|
for(cmTargets::const_iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++)
|
|
|
|
{
|
2001-04-19 21:28:46 +04:00
|
|
|
if (!l->second.IsALibrary())
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
|
|
|
fout << "\\\n" << l->first.c_str();
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
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++)
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-25 00:49:12 +04:00
|
|
|
std::vector<cmSourceFile> classes = l->second.GetSourceFiles();
|
2001-04-11 22:59:02 +04:00
|
|
|
fout << l->first << "_SRC_OBJS = ";
|
2001-04-25 00:49:12 +04:00
|
|
|
for(std::vector<cmSourceFile>::iterator i = classes.begin();
|
2001-04-11 22:59:02 +04:00
|
|
|
i != classes.end(); i++)
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-25 00:49:12 +04:00
|
|
|
if(!i->IsAHeaderFileOnly())
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-25 00:49:12 +04:00
|
|
|
fout << "\\\n" << i->GetSourceName() << ".o ";
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
fout << "\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-12 17:55:08 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
|
|
|
// collect all the flags needed for linking libraries
|
|
|
|
std::string linkLibs;
|
|
|
|
std::vector<std::string>::iterator j;
|
|
|
|
std::vector<std::string>& libdirs = m_Makefile->GetLinkDirectories();
|
|
|
|
for(j = libdirs.begin(); j != libdirs.end(); ++j)
|
|
|
|
{
|
|
|
|
std::string::size_type pos = (*j).find("-L");
|
|
|
|
if((pos == std::string::npos || pos > 0)
|
|
|
|
&& (*j).find("${") == std::string::npos)
|
|
|
|
{
|
|
|
|
linkLibs += "-L";
|
|
|
|
}
|
|
|
|
linkLibs += *j;
|
|
|
|
linkLibs += " ";
|
|
|
|
}
|
|
|
|
std::string librariesLinked;
|
|
|
|
std::vector<std::string>& libs = m_Makefile->GetLinkLibraries();
|
|
|
|
for(j = libs.begin(); j != libs.end(); ++j)
|
|
|
|
{
|
2001-04-12 17:55:08 +04:00
|
|
|
// Don't link the library against itself!
|
|
|
|
if(targetLibrary && (*j == targetLibrary)) continue;
|
2001-04-11 22:59:02 +04:00
|
|
|
std::string::size_type pos = (*j).find("-l");
|
|
|
|
if((pos == std::string::npos || pos > 0)
|
|
|
|
&& (*j).find("${") == std::string::npos)
|
|
|
|
{
|
|
|
|
librariesLinked += "-l";
|
|
|
|
}
|
|
|
|
librariesLinked += *j;
|
|
|
|
librariesLinked += " ";
|
|
|
|
}
|
|
|
|
linkLibs += librariesLinked;
|
2001-04-12 17:55:08 +04:00
|
|
|
|
|
|
|
if(!targetLibrary)
|
|
|
|
{
|
|
|
|
// For executables, add these a second time so order does not matter
|
|
|
|
linkLibs += librariesLinked;
|
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
|
|
|
std::vector<std::string>& libsUnix = m_Makefile->GetLinkLibrariesUnix();
|
|
|
|
for(j = libsUnix.begin(); j != libsUnix.end(); ++j)
|
|
|
|
{
|
|
|
|
linkLibs += *j;
|
|
|
|
linkLibs += " ";
|
|
|
|
}
|
|
|
|
linkLibs += " ${LOCAL_LINK_FLAGS} ";
|
2001-04-12 17:55:08 +04:00
|
|
|
fout << linkLibs;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
2001-04-12 17:55:08 +04:00
|
|
|
|
2001-04-11 22:59:02 +04:00
|
|
|
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++)
|
|
|
|
{
|
2001-04-19 21:28:46 +04:00
|
|
|
if (l->second.IsALibrary())
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
|
|
|
fout << "#---------------------------------------------------------\n";
|
|
|
|
fout << "# rules for a library\n";
|
|
|
|
fout << "#\n";
|
|
|
|
fout << "lib" << l->first << ".a: ${KIT_OBJ} ${" <<
|
|
|
|
l->first << "_SRC_OBJS} \n";
|
|
|
|
fout << "\t${AR} cr lib" << l->first << ".a ${KIT_OBJ} ${" <<
|
|
|
|
l->first << "_SRC_OBJS} \n";
|
|
|
|
fout << "\t${RANLIB} lib" << l->first << ".a\n";
|
|
|
|
fout << std::endl;
|
|
|
|
|
|
|
|
fout << "lib" << l->first << "$(SHLIB_SUFFIX): ${KIT_OBJ} ${" <<
|
|
|
|
l->first << "_SRC_OBJS} \n";
|
|
|
|
fout << "\trm -f lib" << l->first << "$(SHLIB_SUFFIX)\n";
|
|
|
|
fout << "\t$(CXX) ${CXX_FLAGS} ${CMAKE_SHLIB_BUILD_FLAGS} -o \\\n";
|
|
|
|
fout << "\t lib" << l->first << "$(SHLIB_SUFFIX) \\\n";
|
|
|
|
fout << "\t ${KIT_OBJ} ${" << l->first <<
|
2001-04-12 17:55:08 +04:00
|
|
|
"_SRC_OBJS} ";
|
|
|
|
this->OutputLinkLibraries(fout, l->first.c_str());
|
|
|
|
fout << "\n\n";
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << l->first << ": ${" <<
|
|
|
|
l->first << "_SRC_OBJS} ${CMAKE_DEPEND_LIBS}\n";
|
|
|
|
fout << "\t${CXX} ${CXX_FLAGS} ${" <<
|
2001-04-12 17:55:08 +04:00
|
|
|
l->first << "_SRC_OBJS} ";
|
|
|
|
this->OutputLinkLibraries(fout, NULL);
|
|
|
|
fout << " -o " << l->first << "\n\n";
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// output the list of libraries that the executables
|
|
|
|
// in this makefile will depend on.
|
2001-03-09 18:53:32 +03:00
|
|
|
void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout)
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-12 17:55:08 +04:00
|
|
|
fout << "CMAKE_DEPEND_LIBS = ";
|
2001-02-19 23:13:48 +03:00
|
|
|
std::vector<std::string>& libs = m_Makefile->GetLinkLibraries();
|
2001-02-23 18:40:13 +03:00
|
|
|
std::vector<std::string>::iterator dir, lib;
|
2001-02-19 23:13:48 +03:00
|
|
|
// Search the list of libraries that will be linked into
|
|
|
|
// the executable
|
|
|
|
for(lib = libs.begin(); lib != libs.end(); ++lib)
|
|
|
|
{
|
|
|
|
// loop over the list of directories that the libraries might
|
2001-04-12 23:34:09 +04:00
|
|
|
// be in, looking for an ADD_LIBRARY(lib...) line. This would
|
|
|
|
// be stored in the cache
|
|
|
|
const char* cacheValue
|
|
|
|
= cmCacheManager::GetInstance()->GetCacheValue(lib->c_str());
|
|
|
|
if(cacheValue)
|
2001-02-19 23:13:48 +03:00
|
|
|
{
|
2001-04-12 23:34:09 +04:00
|
|
|
std::string libpath = cacheValue;
|
|
|
|
libpath += "/lib";
|
|
|
|
libpath += *lib;
|
|
|
|
libpath += "${CMAKE_LIB_EXT}";
|
|
|
|
fout << libpath << " ";
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
|
|
|
}
|
2001-03-09 18:53:32 +03:00
|
|
|
|
|
|
|
std::vector<std::string>& utils = m_Makefile->GetUtilities();
|
|
|
|
std::vector<std::string>& utildirs = m_Makefile->GetUtilityDirectories();
|
|
|
|
std::vector<std::string>::iterator util;
|
|
|
|
// Search the list of utilities that may be used to generate code for
|
|
|
|
// this project.
|
|
|
|
for(util = utils.begin(); util != utils.end(); ++util)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
// loop over the list of directories that the utilities might
|
2001-04-12 23:34:09 +04:00
|
|
|
// be in, looking for an ADD_EXECUTABLE(util ...) line.
|
2001-03-09 18:53:32 +03:00
|
|
|
for(dir = utildirs.begin(); dir != utildirs.end() && !found; ++dir)
|
|
|
|
{
|
2001-04-12 23:34:09 +04:00
|
|
|
std::string expression = "TARGETS =.*";
|
2001-03-09 18:53:32 +03:00
|
|
|
expression += util->c_str();
|
|
|
|
if(cmSystemTools::Grep(dir->c_str(), "CMakeTargets.make",
|
|
|
|
expression.c_str()))
|
|
|
|
{
|
|
|
|
fout << *util << " ";
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// output make include flags
|
|
|
|
void cmUnixMakefileGenerator::OutputMakeFlags(std::ostream& fout)
|
|
|
|
{
|
2000-09-12 13:30:35 +04:00
|
|
|
// Output Include paths
|
|
|
|
fout << "INCLUDE_FLAGS = ";
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
|
2000-09-12 13:30:35 +04:00
|
|
|
std::vector<std::string>::iterator i;
|
2001-04-12 23:34:09 +04:00
|
|
|
fout << "-I" << m_Makefile->GetStartDirectory() << " ";
|
2000-09-12 13:30:35 +04:00
|
|
|
for(i = includes.begin(); i != includes.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string include = *i;
|
|
|
|
fout << "-I" << i->c_str() << " ";
|
|
|
|
}
|
2001-03-09 01:38:46 +03:00
|
|
|
fout << m_Makefile->GetDefineFlags();
|
2000-09-12 13:30:35 +04:00
|
|
|
fout << " ${LOCAL_INCLUDE_FLAGS} ";
|
2001-04-11 22:59:02 +04:00
|
|
|
fout << "\n\n";
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << "default_target: all\n\n";
|
2000-09-12 13:30:35 +04:00
|
|
|
// see if there are files to compile in this makefile
|
|
|
|
// These are used for both libraries and executables
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// output verbatim section
|
|
|
|
void cmUnixMakefileGenerator::OutputVerbatim(std::ostream& fout)
|
|
|
|
{
|
|
|
|
std::vector<std::string>& MakeVerbatim = m_Makefile->GetMakeVerbatim();
|
|
|
|
// Ouput user make text embeded in the input file
|
|
|
|
for(unsigned int i =0; i < MakeVerbatim.size(); i++)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << MakeVerbatim[i] << "\n";
|
|
|
|
}
|
|
|
|
fout << "\n\n";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
fout << "SUBDIR_BUILD = \\\n";
|
|
|
|
unsigned int i;
|
|
|
|
for(i =0; i < SubDirectories.size(); i++)
|
|
|
|
{
|
|
|
|
std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
|
|
|
|
fout << "build_" << subdir.c_str();
|
|
|
|
if(i == SubDirectories.size()-1)
|
2000-09-12 13:30:35 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << " \n\n";
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
else
|
2000-09-12 13:30:35 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << " \\\n";
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
}
|
|
|
|
fout << std::endl;
|
|
|
|
fout << "SUBDIR_CLEAN = \\\n";
|
|
|
|
for(i =0; i < SubDirectories.size(); i++)
|
|
|
|
{
|
|
|
|
std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
|
|
|
|
fout << "clean_" << subdir.c_str();
|
|
|
|
if(i == SubDirectories.size()-1)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << " \n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
else
|
2000-08-30 21:35:41 +04:00
|
|
|
{
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << " \\\n";
|
2000-08-30 21:35:41 +04:00
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << std::endl;
|
|
|
|
fout << "alldirs : ${SUBDIR_BUILD}\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
for(i =0; i < SubDirectories.size(); i++)
|
|
|
|
{
|
|
|
|
std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
|
|
|
|
fout << "build_" << subdir.c_str() << ":\n";
|
|
|
|
fout << "\tcd " << SubDirectories[i].c_str()
|
|
|
|
<< "; ${MAKE} -${MAKEFLAGS} CMakeTargets.make\n";
|
|
|
|
fout << "\tcd " << SubDirectories[i].c_str()
|
|
|
|
<< "; ${MAKE} -${MAKEFLAGS} all\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
fout << "clean_" << subdir.c_str() << ": \n";
|
|
|
|
fout << "\tcd " << SubDirectories[i].c_str()
|
|
|
|
<< "; ${MAKE} -${MAKEFLAGS} clean\n\n";
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
2000-09-27 23:01:19 +04:00
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-02-19 23:13:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
// Output the depend information for all the classes
|
|
|
|
// in the makefile. These would have been generated
|
|
|
|
// by the class cmMakeDepend GenerateMakefile
|
2001-03-09 18:53:32 +03:00
|
|
|
void cmUnixMakefileGenerator::OutputObjectDepends(std::ostream& fout)
|
2000-09-27 23:01:19 +04:00
|
|
|
{
|
2001-04-25 17:39:23 +04:00
|
|
|
// 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)
|
2000-09-27 23:01:19 +04:00
|
|
|
{
|
2001-04-25 17:39:23 +04:00
|
|
|
// 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)
|
2000-09-27 23:01:19 +04:00
|
|
|
{
|
2001-04-25 17:39:23 +04:00
|
|
|
if(!source->IsAHeaderFileOnly())
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2001-04-25 17:39:23 +04:00
|
|
|
if(!source->GetDepends().empty())
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2001-04-25 17:39:23 +04:00
|
|
|
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)
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2001-04-25 17:39:23 +04:00
|
|
|
fout << " \\\n" << dep->c_str();
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
fout << "\n\n";
|
|
|
|
}
|
|
|
|
}
|
2000-09-27 23:01:19 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-03-03 00:04:26 +03:00
|
|
|
|
|
|
|
|
|
|
|
// Output each custom rule in the following format:
|
2001-03-20 21:20:59 +03:00
|
|
|
// output: source depends...
|
|
|
|
// (tab) command...
|
2001-03-03 00:04:26 +03:00
|
|
|
void cmUnixMakefileGenerator::OutputCustomRules(std::ostream& fout)
|
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
// 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 =
|
2001-04-19 21:28:46 +04:00
|
|
|
tgt->second.GetCustomCommands().begin();
|
|
|
|
cr != tgt->second.GetCustomCommands().end(); ++cr)
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
|
|
|
cmSourceGroup& sourceGroup =
|
2001-04-19 21:28:46 +04:00
|
|
|
m_Makefile->FindSourceGroup(cr->GetSourceName().c_str(),
|
2001-04-11 22:59:02 +04:00
|
|
|
sourceGroups);
|
|
|
|
cmCustomCommand cc(*cr);
|
|
|
|
cc.ExpandVariables(*m_Makefile);
|
|
|
|
sourceGroup.AddCustomCommand(cc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-20 21:20:59 +03:00
|
|
|
// Loop through every source group.
|
|
|
|
for(std::vector<cmSourceGroup>::const_iterator sg =
|
2001-04-11 22:59:02 +04:00
|
|
|
sourceGroups.begin(); sg != sourceGroups.end(); ++sg)
|
2001-03-03 00:04:26 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
const cmSourceGroup::CustomCommands& customCommands =
|
|
|
|
sg->GetCustomCommands();
|
2001-03-20 21:20:59 +03:00
|
|
|
if(customCommands.empty())
|
|
|
|
{ continue; }
|
|
|
|
|
|
|
|
std::string name = sg->GetName();
|
|
|
|
if(name != "")
|
2001-03-03 00:04:26 +03:00
|
|
|
{
|
2001-03-20 21:20:59 +03:00
|
|
|
fout << "# Start of source group \"" << name.c_str() << "\"\n";
|
2001-03-03 00:04:26 +03:00
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
// Loop through each source in the source group.
|
|
|
|
for(cmSourceGroup::CustomCommands::const_iterator cc =
|
|
|
|
customCommands.begin(); cc != customCommands.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;
|
|
|
|
// 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)
|
|
|
|
{
|
2001-04-09 18:53:17 +04:00
|
|
|
std::string src = cmSystemTools::EscapeSpaces(source.c_str());
|
|
|
|
fout << output->c_str() << ": " << src.c_str();
|
2001-03-20 21:20:59 +03:00
|
|
|
// 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)
|
|
|
|
{
|
2001-04-09 18:31:36 +04:00
|
|
|
std::string dep = cmSystemTools::EscapeSpaces(d->c_str());
|
|
|
|
fout << " " << dep.c_str();
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|
|
|
|
fout << "\n\t" << command.c_str() << "\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(name != "")
|
|
|
|
{
|
|
|
|
fout << "# End of source group \"" << name.c_str() << "\"\n\n";
|
|
|
|
}
|
|
|
|
}
|
2001-03-03 00:04:26 +03:00
|
|
|
}
|