2001-09-05 00:29:11 +04:00
|
|
|
#include "cmBorlandMakefileGenerator.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmMakeDepend.h"
|
|
|
|
#include "cmCacheManager.h"
|
|
|
|
//---------------------------------------------------------------------------
|
2001-09-07 01:28:24 +04:00
|
|
|
cmBorlandMakefileGenerator::cmBorlandMakefileGenerator()
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
m_CacheOnly = false;
|
|
|
|
m_Recurse = false;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::GenerateMakefile()
|
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
// support override in output directories
|
2001-09-07 01:28:24 +04:00
|
|
|
if (m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
m_LibraryOutputPath = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
|
|
|
|
if(m_LibraryOutputPath.size())
|
|
|
|
{
|
2001-09-08 18:02:45 +04:00
|
|
|
std::string tempLibraryOutputPath = m_LibraryOutputPath;
|
|
|
|
if(tempLibraryOutputPath[tempLibraryOutputPath.size() -1] != '/')
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 18:02:45 +04:00
|
|
|
tempLibraryOutputPath += "/";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-08 18:02:45 +04:00
|
|
|
if(!cmSystemTools::MakeDirectory(tempLibraryOutputPath.c_str()))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error failed create "
|
|
|
|
"LIBRARY_OUTPUT_PATH directory:",
|
2001-09-08 18:02:45 +04:00
|
|
|
tempLibraryOutputPath.c_str());
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
m_Makefile->AddLinkDirectory(m_LibraryOutputPath.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
m_ExecutableOutputPath =
|
|
|
|
m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
|
|
|
|
if(m_ExecutableOutputPath.size())
|
|
|
|
{
|
2001-09-08 18:02:45 +04:00
|
|
|
std::string tempExecutableOutputPath = m_ExecutableOutputPath;
|
|
|
|
if(tempExecutableOutputPath[tempExecutableOutputPath.size() -1] != '/')
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 18:02:45 +04:00
|
|
|
tempExecutableOutputPath += "/";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-08 18:02:45 +04:00
|
|
|
if(!cmSystemTools::MakeDirectory(tempExecutableOutputPath.c_str()))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 18:02:45 +04:00
|
|
|
cmSystemTools::Error("Error failed to create "
|
2001-09-07 01:28:24 +04:00
|
|
|
"EXECUTABLE_OUTPUT_PATH directory:",
|
2001-09-08 18:02:45 +04:00
|
|
|
tempExecutableOutputPath.c_str());
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
m_Makefile->AddLinkDirectory(m_ExecutableOutputPath.c_str());
|
|
|
|
}
|
|
|
|
}
|
2001-09-07 02:02:26 +04:00
|
|
|
if(m_ExecutableOutputPath.size() == 0)
|
|
|
|
{
|
|
|
|
m_ExecutableOutputPath = ".";
|
|
|
|
}
|
|
|
|
if(m_LibraryOutputPath.size() == 0)
|
|
|
|
{
|
|
|
|
m_LibraryOutputPath = ".";
|
|
|
|
}
|
|
|
|
|
2001-09-08 18:02:45 +04:00
|
|
|
if (m_CacheOnly)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
// Generate the cache only stuff
|
|
|
|
this->GenerateCacheOnly();
|
|
|
|
// if recurse then generate for all sub- makefiles
|
2001-09-07 01:28:24 +04:00
|
|
|
if (m_Recurse)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
this->RecursiveGenerateCacheOnly();
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::GenerateCacheOnly()
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory());
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string dest = m_Makefile->GetStartOutputDirectory();
|
2001-09-05 00:29:11 +04:00
|
|
|
dest += "/makefile.mak";
|
|
|
|
this->OutputMakefile(dest.c_str());
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::RecursiveGenerateCacheOnly()
|
|
|
|
{
|
|
|
|
std::vector<cmMakefile*> makefiles;
|
2001-09-05 00:29:11 +04:00
|
|
|
m_Makefile->FindSubDirectoryCMakeListsFiles(makefiles);
|
2001-09-07 01:28:24 +04:00
|
|
|
for (std::vector<cmMakefile*>::iterator i=makefiles.begin();
|
|
|
|
i!=makefiles.end(); ++i)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
cmMakefile* mf = *i;
|
|
|
|
cmBorlandMakefileGenerator* gen = new cmBorlandMakefileGenerator;
|
|
|
|
gen->SetCacheOnlyOn();
|
|
|
|
gen->SetRecurseOff();
|
|
|
|
mf->SetMakefileGenerator(gen);
|
|
|
|
mf->GenerateMakefile();
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
// CLEAN up the makefiles created
|
2001-09-07 01:28:24 +04:00
|
|
|
for (unsigned int i=0; i<makefiles.size(); ++i)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
delete makefiles[i];
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputMakefile(const char* file)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
// Create sub directories for aux source directories
|
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
std::vector<std::string>& auxSourceDirs =
|
|
|
|
m_Makefile->GetAuxSourceDirectories();
|
|
|
|
if ( auxSourceDirs.size() )
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
// For the case when this is running as a remote build
|
|
|
|
// on unix, make the directory
|
2001-09-07 01:28:24 +04:00
|
|
|
for (std::vector<std::string>::iterator i=auxSourceDirs.begin();
|
|
|
|
i!=auxSourceDirs.end(); ++i)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
cmSystemTools::MakeDirectory(i->c_str());
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-08 18:02:45 +04:00
|
|
|
//
|
|
|
|
std::ofstream fout(file);
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
// Begin writing to makefile.mak
|
|
|
|
//
|
|
|
|
fout << "# CMAKE Borland (win32) makefile : Edit with Caution \n\n";
|
|
|
|
//
|
2001-09-08 18:02:45 +04:00
|
|
|
// Turn on Autodependency checking
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
fout << ".autodepend \n\n";
|
|
|
|
//
|
|
|
|
// Define all our compile and make flags/variables
|
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string replace;
|
2001-09-05 00:29:11 +04:00
|
|
|
// Careful with these directory paths....\ vs /
|
|
|
|
replace = "BCBBINPATH = @BCB_BIN_PATH@ \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
replace = "BCB = $(BCBBINPATH)/.. \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
2001-09-07 02:02:26 +04:00
|
|
|
replace = "OUTDIRLIB = ";
|
|
|
|
replace += m_LibraryOutputPath;
|
|
|
|
replace += "\n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << cmSystemTools::ConvertToWindowsSlashes(replace);
|
2001-09-07 02:02:26 +04:00
|
|
|
replace = "OUTDIREXE = ";
|
|
|
|
replace += m_ExecutableOutputPath;
|
|
|
|
replace += "\n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << cmSystemTools::ConvertToWindowsSlashes(replace);
|
2001-09-05 00:29:11 +04:00
|
|
|
replace = "USERDEFINES = @DEFS_USER@ \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
replace = "SYSDEFINES = @DEFS_SYS@ \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
replace = "CMAKE_COMMAND = ${CMAKE_COMMAND} \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
replace = "CPP = \"$(BCBBINPATH)/BCC32.exe\" +CPP_PROJ.CFG \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
replace =
|
|
|
|
"CPPFLAGS_DEBUG = @FLAGS_CPP_DEBUG@ \n"
|
|
|
|
"CPPFLAGS_RELEASE = @FLAGS_CPP_RELEASE@ \n"
|
|
|
|
"CPPFLAGS_WARNING = @FLAGS_CPP_WARNING@ \n"
|
|
|
|
"LINKFLAGS_DLL = @FLAGS_LINK_DLL@ \n"
|
|
|
|
"LINKFLAGS_BPL = @FLAGS_LINK_BPL@ \n"
|
|
|
|
"LINKFLAGS_EXE = @FLAGS_LINK_EXE@ \n"
|
|
|
|
"LINKFLAGS_DEBUG = @FLAGS_LINK_DEBUG@ \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
replace = "LINKFLAGS_STATIC = @FLAGS_LINK_STATIC@ \n";
|
|
|
|
fout << m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
fout << "CMAKE_CURRENT_SOURCE = " << m_Makefile->GetStartDirectory() << "\n";
|
|
|
|
fout << "CMAKE_CURRENT_BINARY = " << m_Makefile->GetStartOutputDirectory() << "\n";
|
|
|
|
fout << "OBJDIR = " << m_Makefile->GetStartOutputDirectory() << "\n";
|
|
|
|
fout << "CMAKEDEFINES = " << m_Makefile->GetDefineFlags() << "\n";
|
|
|
|
//
|
|
|
|
// create a make variable with all of the sources for this makefile for depend purposes.
|
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
std::vector<std::string> lfiles = m_Makefile->GetListFiles();
|
2001-09-05 00:29:11 +04:00
|
|
|
// sort the array
|
2001-09-07 01:28:24 +04:00
|
|
|
std::sort(lfiles.begin(), lfiles.end(), std::less<std::string>());
|
2001-09-05 00:29:11 +04:00
|
|
|
// remove duplicates
|
2001-09-08 18:02:45 +04:00
|
|
|
std::vector<std::string>::iterator new_end =
|
2001-09-07 01:28:24 +04:00
|
|
|
std::unique(lfiles.begin(), lfiles.end());
|
2001-09-05 00:29:11 +04:00
|
|
|
lfiles.erase(new_end, lfiles.end());
|
|
|
|
fout << "CMAKE_MAKEFILE_SOURCES = \\ \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string dir;
|
|
|
|
for (std::vector<std::string>::const_iterator i=lfiles.begin();
|
2001-09-08 18:02:45 +04:00
|
|
|
i!=lfiles.end(); ++i)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << " " << *i << " \\\n";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
dir = m_Makefile->GetHomeOutputDirectory();
|
|
|
|
dir += "/CMakeCache.txt";
|
|
|
|
fout << " " << dir << "\n\n";
|
|
|
|
//
|
|
|
|
// Output Include paths
|
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << "INCLUDEPATH =";
|
2001-09-07 01:28:24 +04:00
|
|
|
for (std::vector<std::string>::iterator i=includes.begin();
|
2001-09-08 18:02:45 +04:00
|
|
|
i!=includes.end(); ++i)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
std::string include = *i;
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << "-I" << cmSystemTools::EscapeSpaces(i->c_str()) << "; \\\n ";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-08 18:02:45 +04:00
|
|
|
fout << "-I" <<
|
2001-09-07 01:28:24 +04:00
|
|
|
cmSystemTools::EscapeSpaces(m_Makefile->GetStartDirectory()) << "\n\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
// for each target add to the list of targets
|
|
|
|
//
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "TARGETS = ";
|
2001-09-05 00:29:11 +04:00
|
|
|
const cmTargets &tgts = m_Makefile->GetTargets();
|
|
|
|
// list libraries first
|
2001-09-07 01:28:24 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin();
|
2001-09-08 18:02:45 +04:00
|
|
|
l!=tgts.end(); ++l)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
if ((l->second.GetType() == cmTarget::STATIC_LIBRARY)
|
2001-09-08 18:02:45 +04:00
|
|
|
&& l->second.IsInAll())
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 20:09:03 +04:00
|
|
|
fout << " \\\n $(OUTDIRLIB)\\" << l->first.c_str() << ".lib";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-08 18:02:45 +04:00
|
|
|
if ((l->second.GetType() == cmTarget::SHARED_LIBRARY) && l->second.IsInAll())
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 20:09:03 +04:00
|
|
|
fout << " \\\n $(OUTDIRLIB)\\" << l->first.c_str() << ".dll";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-08 18:02:45 +04:00
|
|
|
if ((l->second.GetType() == cmTarget::MODULE_LIBRARY) && l->second.IsInAll())
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 20:09:03 +04:00
|
|
|
fout << " \\\n $(OUTDIRLIB)\\" << l->first.c_str() << ".bpl";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
// executables
|
2001-09-08 18:02:45 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin(); l!=tgts.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
if ((l->second.GetType() == cmTarget::EXECUTABLE
|
|
|
|
|| l->second.GetType() == cmTarget::WIN32_EXECUTABLE) && l->second.IsInAll())
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << " \\\n " << l->first.c_str() << ".exe";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
// list utilities last
|
2001-09-08 18:02:45 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin(); l!=tgts.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-08 18:02:45 +04:00
|
|
|
if (l->second.GetType() == cmTarget::UTILITY && l->second.IsInAll())
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << " \\\n " << l->first.c_str();
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
fout << "\n\n";
|
|
|
|
//
|
|
|
|
// Now create the source file groups for each target
|
|
|
|
//
|
2001-09-08 18:02:45 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin(); l!=tgts.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
std::vector<cmSourceFile> classes = l->second.GetSourceFiles();
|
2001-09-08 18:02:45 +04:00
|
|
|
if (classes.begin() != classes.end())
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
fout << l->first << "_SRC_OBJS = ";
|
2001-09-08 18:02:45 +04:00
|
|
|
for (std::vector<cmSourceFile>::iterator i=classes.begin(); i!=classes.end(); i++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
std::string ext = i->GetSourceExtension();
|
2001-09-08 18:02:45 +04:00
|
|
|
if (!i->IsAHeaderFileOnly() && (ext!="def" && ext!="rc"))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-11 21:44:27 +04:00
|
|
|
std::string sourceName = i->GetSourceName();
|
|
|
|
cmSystemTools::ConvertToWindowsSlashes(sourceName);
|
2001-09-08 18:02:45 +04:00
|
|
|
fout << " \\\n " <<
|
2001-09-11 21:44:27 +04:00
|
|
|
sourceName
|
2001-09-07 01:28:24 +04:00
|
|
|
<< ".obj ";
|
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "\n\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
2001-09-12 04:00:21 +04:00
|
|
|
// Create the link dir list - use same for all targets
|
|
|
|
//
|
|
|
|
std::vector<std::string> linkdirs = m_Makefile->GetLinkDirectories();
|
|
|
|
replace = "@BCB_BIN_PATH@/../lib";
|
|
|
|
m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
linkdirs.push_back(replace);
|
|
|
|
replace = "@BCB_BIN_PATH@/../lib/debug";
|
|
|
|
m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
linkdirs.push_back(replace);
|
|
|
|
fout << "LINK_DIR =";
|
|
|
|
for (std::vector<std::string>::const_iterator d=linkdirs.begin(); d!=linkdirs.end(); d++)
|
|
|
|
{
|
|
|
|
std::string temp = cmSystemTools::EscapeSpaces(d->c_str());
|
|
|
|
fout << temp << ";";
|
|
|
|
}
|
|
|
|
fout << "\n\n";
|
|
|
|
//
|
2001-09-05 00:29:11 +04:00
|
|
|
// Create the link lib list for each target
|
2001-09-12 04:00:21 +04:00
|
|
|
// We also want to make all of these lib/bpi dependencies of the
|
|
|
|
// target, but Borland MAKE is very annoying and insists on the full
|
|
|
|
// path being used on the dependency line.
|
|
|
|
// If lib is a target add OUTDIRLIB
|
|
|
|
// otherwise try to find full path....
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
// do .lib files
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string libname;
|
2001-09-08 18:02:45 +04:00
|
|
|
for (cmTargets::const_iterator t=tgts.begin(); t!=tgts.end(); t++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
cmTarget::LinkLibraries const& libs = t->second.GetLinkLibraries();
|
2001-09-08 18:02:45 +04:00
|
|
|
|
2001-09-05 00:29:11 +04:00
|
|
|
if ((t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::EXECUTABLE) ||
|
|
|
|
(t->second.GetType() == cmTarget::WIN32_EXECUTABLE))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
fout << t->first << "_LINK_LIB = ";
|
|
|
|
for (cmTarget::LinkLibraries::const_iterator l=libs.begin();
|
2001-09-08 18:02:45 +04:00
|
|
|
l!=libs.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
if ((t->first!=l->first) &&
|
2001-09-12 04:00:21 +04:00
|
|
|
(t->second.GetType()!=cmTarget::INSTALL_FILES
|
2001-09-08 18:02:45 +04:00
|
|
|
|| t->second.GetType()!=cmTarget::INSTALL_PROGRAMS))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
// Get the lib name
|
|
|
|
libname = l->first;
|
|
|
|
// reject any bpi files
|
|
|
|
if (l->first.find(".bpi")!=std::string::npos) continue;
|
|
|
|
// make sure it has .lib extension
|
|
|
|
cmSystemTools::ReplaceString(libname, ".lib", "");
|
|
|
|
libname += ".lib";
|
2001-09-07 01:28:24 +04:00
|
|
|
// if this lib is not a target then don't add OUTDIRLIB to it
|
2001-09-12 04:00:21 +04:00
|
|
|
// but do try to find complete path
|
2001-09-07 01:28:24 +04:00
|
|
|
if (tgts.find(l->first)==tgts.end())
|
2001-09-12 04:00:21 +04:00
|
|
|
{
|
|
|
|
std::string path = cmSystemTools::FindFile(libname.c_str(),linkdirs);
|
|
|
|
if (path.size()) libname = path;
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
else
|
2001-09-12 04:00:21 +04:00
|
|
|
{
|
|
|
|
libname = "$(OUTDIRLIB)\\" + libname;
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " \\\n " << cmSystemTools::EscapeSpaces(libname.c_str());
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "\n\n";
|
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-12 04:00:21 +04:00
|
|
|
// Create the link bpi list for each target : see notes above for lib files
|
2001-09-07 01:28:24 +04:00
|
|
|
for (cmTargets::const_iterator t=tgts.begin(); t!=tgts.end(); t++)
|
|
|
|
{
|
|
|
|
cmTarget::LinkLibraries const& libs = t->second.GetLinkLibraries();
|
2001-09-12 04:00:21 +04:00
|
|
|
|
2001-09-05 00:29:11 +04:00
|
|
|
if ((t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::EXECUTABLE) ||
|
|
|
|
(t->second.GetType() == cmTarget::WIN32_EXECUTABLE))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
fout << t->first << "_LINK_BPI = ";
|
2001-09-12 04:00:21 +04:00
|
|
|
for (cmTarget::LinkLibraries::const_iterator l=libs.begin();
|
|
|
|
l!=libs.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
if ((t->first!=l->first) &&
|
2001-09-12 04:00:21 +04:00
|
|
|
(t->second.GetType()!=cmTarget::INSTALL_FILES
|
|
|
|
|| t->second.GetType()!=cmTarget::INSTALL_PROGRAMS))
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
// Get the lib name
|
|
|
|
libname = l->first;
|
|
|
|
// only allow bpi files
|
|
|
|
if (l->first.find(".bpi")==std::string::npos) continue;
|
|
|
|
// if this bpi is not a target then don't add OUTDIRLIB to it
|
|
|
|
// but do try to find complete path
|
2001-09-07 01:28:24 +04:00
|
|
|
if (tgts.find(l->first)==tgts.end())
|
2001-09-12 04:00:21 +04:00
|
|
|
{
|
|
|
|
std::string path = cmSystemTools::FindFile(libname.c_str(),linkdirs);
|
|
|
|
if (path.size()) libname = path;
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
else
|
2001-09-12 04:00:21 +04:00
|
|
|
{
|
|
|
|
libname = "$(OUTDIRLIB)\\" + libname + ".bpi";
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " \\\n " << cmSystemTools::EscapeSpaces(libname.c_str());
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "\n\n";
|
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
//
|
|
|
|
// The project rule - Build All targets
|
|
|
|
//
|
|
|
|
fout << "DEFAULT : \n";
|
|
|
|
fout << " @$(MAKE) makefile.mak \n";
|
|
|
|
fout << " @$(MAKE) ALL \n\n";
|
|
|
|
//
|
|
|
|
// Create a rule to allow us to setup the compiler and output dir
|
|
|
|
//
|
|
|
|
fout << "PREPARE : \n";
|
|
|
|
fout << " @if not exist \"$(OBJDIR)/.\" md \"$(OBJDIR)\" \n";
|
|
|
|
fout << " @copy &&| \n";
|
|
|
|
fout << " $(SYSDEFINES) $(CMAKEDEFINES) $(USERDEFINES)\n";
|
|
|
|
fout << " $(CPPFLAGS_DEBUG) $(CPPFLAGS_WARNING) \n";
|
|
|
|
fout << " $(INCLUDEPATH) \n";
|
|
|
|
fout << " -I\"$(BCB)/include\";\"$(BCB)/include/rw\";\"$(BCB)/include/vcl\"; \n";
|
|
|
|
fout << "| CPP_PROJ.CFG \n\n";
|
|
|
|
//
|
|
|
|
this->OutputDependencies(fout);
|
|
|
|
this->OutputTargets(fout);
|
|
|
|
this->OutputSubDirectoryRules(fout);
|
|
|
|
//
|
|
|
|
this->OutputCustomRules(fout);
|
|
|
|
this->OutputMakeRules(fout);
|
|
|
|
//
|
|
|
|
// We'll omit current dir in path where possible
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string fullname, outpath = m_Makefile->GetStartOutputDirectory();
|
2001-09-05 00:29:11 +04:00
|
|
|
outpath += "/";
|
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin(); l!=tgts.end(); l++)
|
|
|
|
{
|
|
|
|
std::vector<cmSourceFile> classes = l->second.GetSourceFiles();
|
|
|
|
if (classes.begin() != classes.end())
|
|
|
|
{
|
|
|
|
for (std::vector<cmSourceFile>::iterator i=classes.begin(); i!=classes.end(); i++)
|
|
|
|
{
|
|
|
|
if (!i->IsAHeaderFileOnly())
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
fullname = i->GetFullPath();
|
|
|
|
cmSystemTools::ReplaceString(fullname, outpath.c_str(), "");
|
2001-09-11 21:44:27 +04:00
|
|
|
std::string sourceName = i->GetSourceName();
|
|
|
|
cmSystemTools::ConvertToWindowsSlashes(sourceName);
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << ""
|
2001-09-11 21:44:27 +04:00
|
|
|
<< sourceName
|
2001-09-07 01:28:24 +04:00
|
|
|
<< ".obj : " << fullname << "\n";
|
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//
|
2001-09-08 18:02:45 +04:00
|
|
|
fout << "\n# End of File\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// output the list of libraries that the executables in this makefile will depend on.
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputDependencies(std::ostream& fout)
|
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
// not required with the Borland generator
|
|
|
|
// .autodepend
|
|
|
|
// is added to the start of the makefile to enable automatic dependency
|
|
|
|
// checking of source files
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-08 20:09:03 +04:00
|
|
|
|
2001-09-12 04:00:21 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputTargets(std::ostream& fout)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
// Do Libraries first as executables may depend on them
|
|
|
|
const cmTargets &tgts = m_Makefile->GetTargets();
|
2001-09-12 04:00:21 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin(); l!=tgts.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
if (l->second.GetType() == cmTarget::STATIC_LIBRARY)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
//
|
2001-09-08 20:09:03 +04:00
|
|
|
// WARNING. TLIB fails with Unix style Forward slashes - use $(OUTDIRLIB)\\
|
2001-09-07 01:28:24 +04:00
|
|
|
//
|
|
|
|
fout << "# this should be a static library \n";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "$(OUTDIRLIB)\\" << l->first << ".lib : ${" << l->first << "_SRC_OBJS} ${" << l->first << "_LINK_LIB} ${" << l->first << "_LINK_BPI} \n";
|
2001-09-08 20:09:03 +04:00
|
|
|
std::string Libname = "$(OUTDIRLIB)\\" + l->first + ".lib";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " TLib.exe $(LINKFLAGS_STATIC) /u " << Libname.c_str() << " @&&| \n";
|
|
|
|
fout << " $? \n";
|
|
|
|
fout << "| \n\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-08 20:09:03 +04:00
|
|
|
if (l->second.GetType() == cmTarget::SHARED_LIBRARY)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
fout << "# this should be a shared (DLL) library \n";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "$(OUTDIRLIB)\\" << l->first << ".dll : ${" << l->first << "_SRC_OBJS} ${" << l->first << "_LINK_LIB} ${" << l->first << "_LINK_BPI} \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " @ilink32.exe @&&| \n";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << " -L$(LINK_DIR) $(LINKFLAGS_DLL) $(LINKFLAGS_DEBUG) \"$(BCB)/lib/c0d32.obj\" ";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "$(" << l->first << "_SRC_OBJS) ";
|
|
|
|
fout << "$(" << l->first << "_LINK_BPI) , $<, $*, ";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "$(" << l->first << "_LINK_LIB) import32.lib cw32mti.lib \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "| \n";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << " @implib -w " << "$(OUTDIRLIB)\\" << l->first << ".lib " << "$(OUTDIRLIB)\\" << l->first << ".dll \n\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-12 04:00:21 +04:00
|
|
|
if (l->second.GetType() == cmTarget::MODULE_LIBRARY)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
fout << "# this should be a Borland Package library \n";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "$(OUTDIRLIB)\\" << l->first << ".bpl : ${" << l->first << "_SRC_OBJS} ${" << l->first << "_LINK_LIB} ${" << l->first << "_LINK_BPI} \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " @ilink32.exe @&&| \n";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << " -L\"$(BCB)/lib\" -L$(LINK_DIR) $(LINKFLAGS_BPL) $(LINKFLAGS_DEBUG) \"$(BCB)/lib/c0pkg32.obj \" ";
|
|
|
|
fout << "$(" << l->first << "_LINK_BPI) memmgr.lib sysinit.obj ";
|
|
|
|
fout << "$(" << l->first << "_SRC_OBJS) , $<, $*, ";
|
|
|
|
fout << "$(" << l->first << "_LINK_LIB) import32.lib cp32mti.lib \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "| \n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
// Do Executables
|
2001-09-12 04:00:21 +04:00
|
|
|
for (cmTargets::const_iterator l=tgts.begin(); l!=tgts.end(); l++)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
if (l->second.GetType()==cmTarget::WIN32_EXECUTABLE)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << l->first << ".exe : ${" << l->first << "_SRC_OBJS} ${" << l->first << "_LINK_LIB} ${" << l->first << "_LINK_BPI} \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " @ilink32.exe @&&| \n";
|
|
|
|
fout << " -L\"$(BCB)/lib\" -L$(LINK_DIR) $(LINKFLAGS_EXE) $(LINKFLAGS_DEBUG) \"$(BCB)/lib/c0w32.obj\" ";
|
|
|
|
fout << "$(" << l->first << "_SRC_OBJS) ";
|
|
|
|
fout << "$(" << l->first << "_LINK_BPI) , $<, $*, ";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "$(" << l->first << "_LINK_LIB) import32.lib cw32mti.lib \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "| \n\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
2001-09-12 04:00:21 +04:00
|
|
|
else if (l->second.GetType()==cmTarget::EXECUTABLE)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << l->first << ".exe : ${" << l->first << "_SRC_OBJS} ${" << l->first << "_LINK_LIB} ${" << l->first << "_LINK_BPI} \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " @ilink32.exe @&&| \n";
|
|
|
|
fout << " -L\"$(BCB)/lib\" -L$(LINK_DIR) $(LINKFLAGS_EXE) $(LINKFLAGS_DEBUG) \"$(BCB)/lib/c0x32.obj\" ";
|
|
|
|
fout << "$(" << l->first << "_SRC_OBJS) , $<, $*, ";
|
2001-09-12 04:00:21 +04:00
|
|
|
fout << "$(" << l->first << "_LINK_LIB) import32.lib cw32mti.lib \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << "| \n\n";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2001-09-12 04:00:21 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputSubDirectoryRules(std::ostream& fout)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
// output rules for decending into sub directories
|
2001-09-07 01:28:24 +04:00
|
|
|
const std::vector<std::string>& SubDirectories = m_Makefile->GetSubDirectories();
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
if ( SubDirectories.size() == 0)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
return;
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
this->OutputSubDirectoryVars(fout, "SUBDIR_BUILD", "build",
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
SubDirectories);
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// fix up names of directories so they can be used
|
|
|
|
// as targets in makefiles.
|
2001-09-07 01:28:24 +04:00
|
|
|
inline std::string FixDirectoryName(const char* dir)
|
2001-09-05 00:29:11 +04:00
|
|
|
{
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string s = dir;
|
2001-09-05 00:29:11 +04:00
|
|
|
// replace ../ with 3 under bars
|
|
|
|
size_t pos = s.find("../");
|
2001-09-07 01:28:24 +04:00
|
|
|
if (pos != std::string::npos)
|
2001-09-05 00:29:11 +04:00
|
|
|
{
|
|
|
|
s.replace(pos, 3, "___");
|
|
|
|
}
|
|
|
|
// replace / directory separators with a single under bar
|
|
|
|
pos = s.find("/");
|
2001-09-07 01:28:24 +04:00
|
|
|
while(pos != std::string::npos)
|
2001-09-05 00:29:11 +04:00
|
|
|
{
|
|
|
|
s.replace(pos, 1, "_");
|
|
|
|
pos = s.find("/");
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputSubDirectoryVars(std::ostream& fout,
|
|
|
|
const char* var,
|
|
|
|
const char* target,
|
|
|
|
const char* target1,
|
|
|
|
const char* target2,
|
|
|
|
const std::vector<std::string>& SubDirectories)
|
2001-09-05 00:29:11 +04:00
|
|
|
{
|
|
|
|
if (!SubDirectories.size()) return;
|
|
|
|
//
|
|
|
|
fout << "# Variable for making " << target << " in subdirectories.\n";
|
|
|
|
fout << var << " = \\\n";
|
|
|
|
unsigned int i;
|
2001-09-07 01:28:24 +04:00
|
|
|
for (i =0; i < SubDirectories.size(); i++)
|
|
|
|
{
|
|
|
|
std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << " " << target << "_" << subdir.c_str();
|
2001-09-07 01:28:24 +04:00
|
|
|
if (i == SubDirectories.size()-1)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << " \n\n";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << " \\\n";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
//
|
|
|
|
fout << "# Targets for making " << target << " in subdirectories.\n";
|
2001-09-07 01:28:24 +04:00
|
|
|
for (unsigned int i=0; i<SubDirectories.size(); i++)
|
|
|
|
{
|
|
|
|
std::string subdir = FixDirectoryName(SubDirectories[i].c_str());
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << target << "_" << subdir.c_str() << ":\n";
|
|
|
|
fout << " cd " << m_Makefile->GetStartOutputDirectory() << "/" << SubDirectories[i] << " \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
fout << " make makefile.mak\n";
|
|
|
|
fout << " make \n\n";
|
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Output each custom rule in the following format:
|
|
|
|
// output: source depends...
|
|
|
|
// (tab) command...
|
|
|
|
|
|
|
|
// This routine is copied direct from unix makefile generator
|
2001-09-12 04:00:21 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputCustomRules(std::ostream& fout)
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
2001-09-05 00:29:11 +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 =
|
|
|
|
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())
|
2001-09-07 01:28:24 +04:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2001-09-07 01:28:24 +04:00
|
|
|
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";
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
// 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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputMakeRules(std::ostream& fout)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
this->OutputMakeRule(fout,
|
|
|
|
"Rule to build c file(s)",
|
|
|
|
".c.obj",
|
|
|
|
0,
|
|
|
|
"$(CPP) -n$(OBJDIR) {$< }");
|
|
|
|
this->OutputMakeRule(fout,
|
|
|
|
"Rule to build cpp file(s)",
|
|
|
|
".cpp.obj",
|
|
|
|
0,
|
|
|
|
"$(CPP) -n$(OBJDIR) {$< }");
|
|
|
|
this->OutputMakeRule(fout,
|
|
|
|
"Rule to build cxx file(s)",
|
|
|
|
".cxx.obj",
|
|
|
|
0,
|
|
|
|
"$(CPP) -Pcxx -n$(OBJDIR) {$< }");
|
|
|
|
this->OutputMakeRule(fout,
|
|
|
|
"The project ALL rule",
|
|
|
|
"ALL",
|
|
|
|
"PREPARE ${TARGETS} ${SUBDIR_BUILD} ${CMAKE_COMMAND}",
|
|
|
|
0);
|
|
|
|
this->OutputMakeRule(fout,
|
|
|
|
"Rule to build the makefile",
|
|
|
|
"makefile.mak",
|
|
|
|
"${CMAKE_COMMAND} ${CMAKE_MAKEFILE_SOURCES} ",
|
|
|
|
"${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}");
|
|
|
|
this->OutputMakeRule(fout,
|
|
|
|
"Rebuild cmake dummy rule",
|
|
|
|
"${CMAKE_COMMAND}",
|
|
|
|
0,
|
|
|
|
"echo \"cmake might be out of date\"");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::OutputMakeRule(std::ostream& fout,
|
|
|
|
const char* comment,
|
|
|
|
const char* target,
|
|
|
|
const char* depends,
|
|
|
|
const char* command)
|
2001-09-05 00:29:11 +04:00
|
|
|
{
|
2001-09-07 01:28:24 +04:00
|
|
|
std::string replace;
|
|
|
|
if (comment)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
replace = comment;
|
|
|
|
m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
fout << "# " << comment << " \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
//
|
|
|
|
replace = target;
|
|
|
|
m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
fout << replace.c_str() << ": ";
|
2001-09-07 01:28:24 +04:00
|
|
|
if (depends)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
replace = depends;
|
|
|
|
m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
fout << replace.c_str();
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << "\n";
|
|
|
|
//
|
2001-09-07 01:28:24 +04:00
|
|
|
if (command)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
replace = command;
|
|
|
|
m_Makefile->ExpandVariablesInString(replace);
|
|
|
|
fout << " " << replace.c_str() << " \n";
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
fout << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::SetLocal (bool local)
|
|
|
|
{
|
|
|
|
if (local)
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
m_CacheOnly = false;
|
|
|
|
m_Recurse = false;
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
m_CacheOnly = true;
|
|
|
|
m_Recurse = true;
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
2001-09-05 00:29:11 +04:00
|
|
|
}
|
|
|
|
|
2001-09-07 01:28:24 +04:00
|
|
|
void cmBorlandMakefileGenerator::ComputeSystemInfo()
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
// now load the settings
|
2001-09-07 01:28:24 +04:00
|
|
|
if (!m_Makefile->GetDefinition("CMAKE_ROOT"))
|
|
|
|
{
|
2001-09-05 00:29:11 +04:00
|
|
|
cmSystemTools::Error("CMAKE_ROOT has not been defined, bad GUI or driver program");
|
|
|
|
return;
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
std::string fpath = m_Makefile->GetDefinition("CMAKE_ROOT");
|
2001-09-05 00:29:11 +04:00
|
|
|
fpath += "/Templates/CMakeWindowsBorlandConfig.cmake";
|
|
|
|
m_Makefile->ReadListFile(NULL,fpath.c_str());
|
|
|
|
}
|