2002-08-31 00:01:48 +04:00
/*=========================================================================
2002-10-24 02:03:27 +04:00
Program : CMake - Cross - Platform Makefile Generator
2002-08-31 00:01:48 +04:00
Module : $ RCSfile $
Language : C + +
Date : $ Date $
Version : $ Revision $
2002-10-24 02:03:27 +04:00
Copyright ( c ) 2002 Kitware , Inc . , Insight Consortium . All rights reserved .
See Copyright . txt or http : //www.cmake.org/HTML/Copyright.html for details.
2002-08-31 00:01:48 +04:00
This software is distributed WITHOUT ANY WARRANTY ; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE . See the above copyright notices for more information .
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
# include "cmGlobalGenerator.h"
# include "cmLocalUnixMakefileGenerator.h"
# include "cmMakefile.h"
# include "cmSystemTools.h"
# include "cmSourceFile.h"
# include "cmMakeDepend.h"
# include "cmCacheManager.h"
# include "cmGeneratedFileStream.h"
2002-11-08 23:46:08 +03:00
# include <stdio.h>
2002-08-31 00:01:48 +04:00
cmLocalUnixMakefileGenerator : : cmLocalUnixMakefileGenerator ( )
{
2002-11-08 23:46:08 +03:00
m_WindowsShell = false ;
m_IncludeDirective = " include " ;
m_MakefileVariableSize = 0 ;
2002-08-31 00:01:48 +04:00
}
cmLocalUnixMakefileGenerator : : ~ cmLocalUnixMakefileGenerator ( )
{
}
void cmLocalUnixMakefileGenerator : : Generate ( bool fromTheTop )
{
// suppoirt override in output directories
if ( m_Makefile - > GetDefinition ( " LIBRARY_OUTPUT_PATH " ) )
{
m_LibraryOutputPath = m_Makefile - > GetDefinition ( " LIBRARY_OUTPUT_PATH " ) ;
if ( m_LibraryOutputPath . size ( ) )
{
if ( m_LibraryOutputPath [ m_LibraryOutputPath . size ( ) - 1 ] ! = ' / ' )
{
m_LibraryOutputPath + = " / " ;
}
if ( ! cmSystemTools : : MakeDirectory ( m_LibraryOutputPath . c_str ( ) ) )
{
cmSystemTools : : Error ( " Error failed create "
" LIBRARY_OUTPUT_PATH directory: " ,
m_LibraryOutputPath . c_str ( ) ) ;
}
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 ( ) )
{
if ( m_ExecutableOutputPath [ m_ExecutableOutputPath . size ( ) - 1 ] ! = ' / ' )
{
m_ExecutableOutputPath + = " / " ;
}
if ( ! cmSystemTools : : MakeDirectory ( m_ExecutableOutputPath . c_str ( ) ) )
{
cmSystemTools : : Error ( " Error failed to create "
" EXECUTABLE_OUTPUT_PATH directory: " ,
m_ExecutableOutputPath . c_str ( ) ) ;
}
m_Makefile - > AddLinkDirectory ( m_ExecutableOutputPath . c_str ( ) ) ;
}
}
if ( ! fromTheTop )
{
// Generate depends
cmMakeDepend md ;
md . SetMakefile ( m_Makefile ) ;
md . GenerateMakefileDependencies ( ) ;
this - > ProcessDepends ( md ) ;
}
// output the makefile fragment
2002-09-06 21:06:23 +04:00
std : : string dest = m_Makefile - > GetStartOutputDirectory ( ) ;
dest + = " /Makefile " ;
this - > OutputMakefile ( dest . c_str ( ) , ! fromTheTop ) ;
2002-08-31 00:01:48 +04:00
}
2002-12-10 17:28:05 +03:00
void
cmLocalUnixMakefileGenerator : : AddDependenciesToSourceFile ( cmDependInformation const * info ,
cmSourceFile * i ,
std : : set < cmDependInformation const * > * visited )
{
// add info to the visited set
visited - > insert ( info ) ;
// add this dependency and the recurse
2002-12-10 21:59:53 +03:00
// now recurse with info's dependencies
for ( cmDependInformation : : DependencySet : : const_iterator d =
info - > m_DependencySet . begin ( ) ;
d ! = info - > m_DependencySet . end ( ) ; + + d )
2002-12-10 17:28:05 +03:00
{
2002-12-10 21:59:53 +03:00
if ( visited - > find ( * d ) = = visited - > end ( ) )
{
if ( ( * d ) - > m_FullPath ! = " " )
2002-12-10 17:28:05 +03:00
{
i - > GetDepends ( ) . push_back ( ( * d ) - > m_FullPath ) ;
}
2002-12-10 21:59:53 +03:00
this - > AddDependenciesToSourceFile ( * d , i , visited ) ;
2002-12-10 17:28:05 +03:00
}
}
}
2002-08-31 00:01:48 +04:00
void cmLocalUnixMakefileGenerator : : 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 ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
// 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 ( ) ) ;
2002-12-10 17:28:05 +03:00
2002-08-31 00:01:48 +04:00
// Now add the real dependencies for the file.
if ( info )
{
2002-12-10 17:28:05 +03:00
// create visited set
std : : set < cmDependInformation const * > visited ;
this - > AddDependenciesToSourceFile ( info , * i , & visited ) ;
2002-08-31 00:01:48 +04:00
}
}
}
}
}
// This is where CMakeTargets.make is generated
void cmLocalUnixMakefileGenerator : : OutputMakefile ( const char * file ,
bool withDepends )
{
// 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 by \" " < < m_GlobalGenerator - > GetName ( ) < < " \" "
< < " Generator, CMake Version "
< < cmMakefile : : GetMajorVersion ( ) < < " . "
< < cmMakefile : : GetMinorVersion ( ) < < " \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 " ;
2002-11-08 23:46:08 +03:00
if ( ! m_Makefile - > IsOn ( " CMAKE_VERBOSE_MAKEFILE " ) )
{
fout < < " # Suppresses display of executed commands \n " ;
fout < < " .SILENT: \n " ;
}
2002-08-31 00:01:48 +04:00
fout < < " # disable some common implicit rules to speed things up \n " ;
fout < < " .SUFFIXES: \n " ;
fout < < " .SUFFIXES:.hpuxmakemusthaverule \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 < < " " < < cmSystemTools : : ConvertToOutputPath ( i - > c_str ( ) ) ;
}
// Add the cache to the list
std : : string cacheFile = m_Makefile - > GetHomeOutputDirectory ( ) ;
cacheFile + = " /CMakeCache.txt " ;
fout < < " " < < cmSystemTools : : ConvertToOutputPath ( cacheFile . c_str ( ) ) ;
fout < < " \n \n \n " ;
2002-12-05 22:56:31 +03:00
this - > OutputMakeVariables ( fout ) ;
2002-12-06 00:53:09 +03:00
std : : string checkCache = m_Makefile - > GetHomeOutputDirectory ( ) ;
checkCache + = " /cmake.check_cache " ;
checkCache = cmSystemTools : : ConvertToOutputPath ( checkCache . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
// Set up the default target as the VERY first target, so that make with no arguments will run it
this - >
OutputMakeRule ( fout ,
" Default target executed when no arguments are given to make, first make sure cmake.depends exists, cmake.check_depends is up-to-date, check the sources, then build the all target " ,
" default_target " ,
2002-12-06 00:53:09 +03:00
checkCache . c_str ( ) ,
2002-08-31 00:01:48 +04:00
" $(MAKE) $(MAKESILENT) cmake.depends " ,
" $(MAKE) $(MAKESILENT) cmake.check_depends " ,
" $(MAKE) $(MAKESILENT) -f cmake.check_depends " ,
" $(MAKE) $(MAKESILENT) all " ) ;
this - > OutputTargetRules ( fout ) ;
this - > OutputDependLibs ( fout ) ;
this - > OutputTargets ( fout ) ;
this - > OutputSubDirectoryRules ( fout ) ;
std : : string dependName = m_Makefile - > GetStartOutputDirectory ( ) ;
dependName + = " /cmake.depends " ;
if ( withDepends )
{
std : : ofstream dependout ( dependName . c_str ( ) ) ;
if ( ! dependout )
{
cmSystemTools : : Error ( " Error can not open for write: " , dependName . c_str ( ) ) ;
return ;
}
dependout < < " # .o dependencies in this directory. " < < std : : endl ;
std : : string checkDepend = m_Makefile - > GetStartOutputDirectory ( ) ;
checkDepend + = " /cmake.check_depends " ;
std : : ofstream checkdependout ( checkDepend . c_str ( ) ) ;
if ( ! checkdependout )
{
cmSystemTools : : Error ( " Error can not open for write: " , checkDepend . c_str ( ) ) ;
return ;
}
checkdependout < < " # This file is used as a tag file, that all sources depend on. If a source changes, then the rule to rebuild this file will cause cmake.depends to be rebuilt. " < < std : : endl ;
// if there were any depends output, then output the check depends
// information inot checkdependout
if ( this - > OutputObjectDepends ( dependout ) )
{
this - > OutputCheckDepends ( checkdependout ) ;
}
else
{
checkdependout < < " all: \n \t @echo cmake.depends is up-to-date \n " ;
}
}
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 ( ) ) )
{
2002-11-08 23:46:08 +03:00
fout < < m_IncludeDirective < < " cmake.depends \n " ;
2002-08-31 00:01:48 +04:00
}
}
2002-11-08 23:46:08 +03:00
# if defined(_WIN32) && ! defined(__CYGWIN__)
2002-11-20 17:06:23 +03:00
std : : string cmLocalUnixMakefileGenerator : : GetOutputExtension ( const char * s )
{
2002-11-19 22:40:23 +03:00
std : : string sourceExtension = s ;
2002-11-08 23:46:08 +03:00
if ( sourceExtension = = " def " )
{
return " " ;
}
if ( sourceExtension = = " ico " | | sourceExtension = = " rc2 " )
{
return " " ;
}
if ( sourceExtension = = " rc " )
{
return " .res " ;
}
return " .obj " ;
2002-11-20 17:06:23 +03:00
}
2002-11-08 23:46:08 +03:00
# else
2002-11-20 17:06:23 +03:00
std : : string cmLocalUnixMakefileGenerator : : GetOutputExtension ( const char * )
{
2002-11-08 23:46:08 +03:00
return " .o " ;
2002-08-31 00:01:48 +04:00
}
2002-11-20 17:06:23 +03:00
# endif
2002-08-31 00:01:48 +04:00
// Output the rules for any targets
void cmLocalUnixMakefileGenerator : : 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 ( ) )
{
2002-12-21 01:15:45 +03:00
const char * targetPrefix = l - > second . GetProperty ( " PREFIX " ) ;
const char * targetSuffix = l - > second . GetProperty ( " SUFFIX " ) ;
2002-11-08 23:46:08 +03:00
std : : string path = m_LibraryOutputPath ;
2002-12-21 01:15:45 +03:00
const char * prefixVar = 0 ;
const char * suffixVar = 0 ;
switch ( l - > second . GetType ( ) )
2002-08-31 00:01:48 +04:00
{
2002-12-21 01:15:45 +03:00
case cmTarget : : STATIC_LIBRARY :
prefixVar = " CMAKE_STATIC_LIBRARY_PREFIX " ;
suffixVar = " CMAKE_STATIC_LIBRARY_SUFFIX " ;
break ;
case cmTarget : : SHARED_LIBRARY :
prefixVar = " CMAKE_SHARED_LIBRARY_PREFIX " ;
suffixVar = " CMAKE_SHARED_LIBRARY_SUFFIX " ;
break ;
case cmTarget : : MODULE_LIBRARY :
prefixVar = " CMAKE_SHARED_MODULE_PREFIX " ;
suffixVar = " CMAKE_SHARED_MODULE_SUFFIX " ;
break ;
2002-12-23 17:51:11 +03:00
case cmTarget : : EXECUTABLE :
case cmTarget : : WIN32_EXECUTABLE :
case cmTarget : : UTILITY :
case cmTarget : : INSTALL_FILES :
case cmTarget : : INSTALL_PROGRAMS :
break ;
2002-08-31 00:01:48 +04:00
}
2002-12-21 01:15:45 +03:00
// if it is a library this will be set
if ( prefixVar )
2002-08-31 00:01:48 +04:00
{
2002-12-21 01:15:45 +03:00
// if there is no prefix on the target use the cmake definition
if ( ! targetPrefix )
{
targetPrefix = this - > GetSafeDefinition ( prefixVar ) ;
}
// if there is no suffix on the target use the cmake definition
if ( ! targetSuffix )
{
targetSuffix = this - > GetSafeDefinition ( suffixVar ) ;
}
2002-11-08 23:46:08 +03:00
path + =
2002-12-21 01:15:45 +03:00
targetPrefix + l - > first + targetSuffix ;
2002-08-31 00:01:48 +04:00
fout < < " \\ \n "
< < cmSystemTools : : ConvertToOutputPath ( path . c_str ( ) ) ;
}
}
}
// 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 ( ) )
{
std : : string path = m_ExecutableOutputPath + l - > first +
2002-11-08 23:46:08 +03:00
cmSystemTools : : GetExecutableExtension ( ) ;
2002-08-31 00:01:48 +04:00
fout < < " \\ \n " < < cmSystemTools : : ConvertToOutputPath ( path . c_str ( ) ) ;
}
}
// list utilities last
for ( cmTargets : : const_iterator l = tgts . begin ( ) ;
l ! = tgts . end ( ) ; l + + )
{
if ( l - > second . GetType ( ) = = cmTarget : : UTILITY & &
2002-10-10 18:43:59 +04:00
l - > second . IsInAll ( ) )
2002-08-31 00:01:48 +04:00
{
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 < < this - > CreateMakeVariable ( l - > first . c_str ( ) , " _SRC_OBJS " ) < < " = " ;
for ( std : : vector < cmSourceFile * > : : iterator i = classes . begin ( ) ;
i ! = classes . end ( ) ; i + + )
{
if ( ! ( * i ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
2002-11-08 23:46:08 +03:00
std : : string outExt (
this - > GetOutputExtension ( ( * i ) - > GetSourceExtension ( ) . c_str ( ) ) ) ;
2002-08-31 00:01:48 +04:00
if ( outExt . size ( ) )
{
2002-11-08 23:46:08 +03:00
fout < < " \\ \n "
< < cmSystemTools : : ConvertToOutputPath ( ( * i ) - > GetSourceName ( ) . c_str ( ) )
2002-08-31 00:01:48 +04:00
< < outExt . c_str ( ) < < " " ;
}
}
}
fout < < " \n \n " ;
fout < < this - > CreateMakeVariable ( l - > first . c_str ( ) , " _SRC_OBJS_QUOTED " ) < < " = " ;
for ( std : : vector < cmSourceFile * > : : iterator i = classes . begin ( ) ;
i ! = classes . end ( ) ; i + + )
{
if ( ! ( * i ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
std : : string outExt ( this - > GetOutputExtension ( ( * i ) - > GetSourceExtension ( ) . c_str ( ) ) ) ;
if ( outExt . size ( ) )
{
fout < < " \\ \n \" " < < cmSystemTools : : ConvertToOutputPath ( ( * i ) - > GetSourceName ( ) . c_str ( ) )
< < outExt . c_str ( ) < < " \" " ;
}
}
}
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 < < " $( " < < this - > CreateMakeVariable ( l - > first . c_str ( ) , " _SRC_OBJS " )
< < " ) " ;
}
}
fout < < " \n \n " ;
2002-09-12 00:43:35 +04:00
const char * qt_files = m_Makefile - > GetDefinition ( " GENERATED_QT_FILES " ) ;
2002-09-13 16:18:13 +04:00
if ( qt_files ! = NULL & &
2002-09-12 00:43:35 +04:00
strlen ( m_Makefile - > GetDefinition ( " GENERATED_QT_FILES " ) ) > 0 )
{
fout < < " GENERATED_QT_FILES = " ;
2002-09-13 16:18:13 +04:00
fout < < qt_files ;
2002-09-12 00:43:35 +04:00
fout < < " \n \n " ;
}
2002-08-31 00:01:48 +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 cmLocalUnixMakefileGenerator : : 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 ;
bool cxx = tgt . HasCxx ( ) ;
if ( ! cxx )
{
// if linking a c executable use the C runtime flag as cc
// may not be the same program that creates shared libaries
// and may have different flags
2002-11-12 20:47:44 +03:00
runtimeFlag = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_RUNTIME_FLAG " ) ;
2002-11-08 23:46:08 +03:00
runtimeSep = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_RUNTIME_FLAG_SEP " ) ;
2002-08-31 00:01:48 +04:00
}
else
2002-11-08 23:46:08 +03:00
{
runtimeFlag = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG " ) ;
runtimeSep = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP " ) ;
2002-08-31 00:01:48 +04:00
}
// concatenate all paths or no?
bool runtimeConcatenate = ( runtimeSep ! = " " ) ;
if ( runtimeFlag = = " " | | m_Makefile - > IsOn ( " CMAKE_SKIP_RPATH " ) )
{
outputRuntime = false ;
}
// Some search paths should never be emitted
emitted . insert ( " " ) ;
emitted . insert ( " /usr/lib " ) ;
2002-11-08 23:46:08 +03:00
std : : string libPathFlag = m_Makefile - > GetDefinition ( " CMAKE_LIBRARY_PATH_FLAG " ) ;
std : : string libLinkFlag = this - > GetSafeDefinition ( " CMAKE_LINK_LIBRARY_FLAG " ) ;
2002-08-31 00:01:48 +04:00
// collect all the flags needed for linking libraries
std : : string linkLibs ;
2002-11-12 20:47:44 +03:00
// Flags to link an executable to shared libraries.
if ( tgt . GetType ( ) = = cmTarget : : EXECUTABLE )
{
if ( cxx )
{
linkLibs = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS " ) ;
}
else
{
linkLibs = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_LINK_FLAGS " ) ;
}
linkLibs + = " " ;
}
2002-08-31 00:01:48 +04:00
const std : : vector < std : : string > & libdirs = tgt . GetLinkDirectories ( ) ;
for ( std : : vector < std : : string > : : const_iterator libDir = libdirs . begin ( ) ;
libDir ! = libdirs . end ( ) ; + + libDir )
{
std : : string libpath = cmSystemTools : : ConvertToOutputPath ( libDir - > c_str ( ) ) ;
if ( emitted . insert ( libpath ) . second )
{
2002-11-08 23:46:08 +03:00
std : : string : : size_type pos = libDir - > find ( libPathFlag . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
if ( ( pos = = std : : string : : npos | | pos > 0 )
& & libDir - > find ( " ${ " ) = = std : : string : : npos )
{
2002-11-08 23:46:08 +03:00
linkLibs + = libPathFlag ;
2002-08-31 00:01:48 +04:00
if ( outputRuntime )
{
runtimeDirs . push_back ( libpath ) ;
}
}
linkLibs + = libpath ;
linkLibs + = " " ;
}
}
2002-11-08 23:46:08 +03:00
std : : string linkSuffix = this - > GetSafeDefinition ( " CMAKE_LINK_LIBRARY_SUFFIX " ) ;
std : : string regexp = " .* \\ " ;
regexp + = linkSuffix ;
regexp + = " $ " ;
2002-11-12 21:06:45 +03:00
cmRegularExpression hasSuffix ( regexp . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
std : : string librariesLinked ;
const cmTarget : : LinkLibraries & libs = tgt . GetLinkLibraries ( ) ;
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) | ( [ \ t ] * \ \ - framework ) | ( \ \ $ { ) " );
if ( lib - > first . find ( ' / ' ) ! = std : : string : : npos
& & ! reg . find ( lib - > first ) )
{
std : : string dir , file ;
cmSystemTools : : SplitProgramPath ( lib - > first . c_str ( ) ,
dir , file ) ;
2002-11-14 17:37:58 +03:00
std : : string libpath = this - > ConvertToOutputForExisting ( dir . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
if ( emitted . insert ( libpath ) . second )
{
2002-11-08 23:46:08 +03:00
linkLibs + = libPathFlag ;
2002-08-31 00:01:48 +04:00
linkLibs + = libpath ;
linkLibs + = " " ;
if ( outputRuntime )
{
runtimeDirs . push_back ( libpath ) ;
}
2002-11-08 23:46:08 +03:00
}
2002-11-11 21:15:52 +03:00
cmRegularExpression libname ( " lib([^/]*) ( \ \ . so | \ \ . lib | \ \ . dll | \ \ . sl | \ \ . a | \ \ . dylib ) . * " ) ;
cmRegularExpression libname_noprefix ( " ([^/]*) ( \ \ . so | \ \ . lib | \ \ . dll | \ \ . sl | \ \ . a | \ \ . dylib ) . * " ) ;
2002-08-31 00:01:48 +04:00
if ( libname . find ( file ) )
{
2002-12-04 22:18:10 +03:00
// Library had "lib" prefix.
2002-11-08 23:46:08 +03:00
librariesLinked + = libLinkFlag ;
2002-08-31 00:01:48 +04:00
file = libname . match ( 1 ) ;
2002-10-10 18:43:59 +04:00
librariesLinked + = file ;
2002-11-08 23:46:08 +03:00
if ( linkSuffix . size ( ) & & ! hasSuffix . find ( file ) )
{
librariesLinked + = linkSuffix ;
}
2002-08-31 00:01:48 +04:00
librariesLinked + = " " ;
}
else if ( libname_noprefix . find ( file ) )
{
2002-12-04 22:18:10 +03:00
// Library had no "lib" prefix.
2002-11-08 23:46:08 +03:00
librariesLinked + = libLinkFlag ;
2002-08-31 00:01:48 +04:00
file = libname_noprefix . match ( 1 ) ;
2002-10-10 18:43:59 +04:00
librariesLinked + = file ;
2002-11-08 23:46:08 +03:00
if ( linkSuffix . size ( ) & & ! hasSuffix . find ( file ) )
{
librariesLinked + = linkSuffix ;
}
2002-08-31 00:01:48 +04:00
librariesLinked + = " " ;
}
2002-12-04 22:18:10 +03:00
else
{
// Error parsing the library name. Just use the full path.
// The linker will give an error if it is invalid.
librariesLinked + = lib - > first ;
librariesLinked + = " " ;
}
2002-08-31 00:01:48 +04:00
}
// not a full path, so add -l name
else
{
if ( ! reg . find ( lib - > first ) )
{
2002-11-08 23:46:08 +03:00
librariesLinked + = libLinkFlag ;
2002-08-31 00:01:48 +04:00
}
librariesLinked + = lib - > first ;
2002-11-08 23:46:08 +03:00
if ( linkSuffix . size ( ) & & ! hasSuffix . find ( lib - > first ) )
{
librariesLinked + = linkSuffix ;
}
2002-08-31 00:01:48 +04:00
librariesLinked + = " " ;
}
}
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 < < " " ;
}
2002-11-08 23:46:08 +03:00
if ( m_Makefile - > GetDefinition ( " CMAKE_STANDARD_LIBRARIES " ) )
{
fout < < m_Makefile - > GetDefinition ( " CMAKE_STANDARD_LIBRARIES " ) < < " " ;
}
2002-08-31 00:01:48 +04:00
}
std : : string cmLocalUnixMakefileGenerator : : CreateTargetRules ( const cmTarget & target ,
const char * targetName )
{
std : : string customRuleCode = " " ;
bool initNext = false ;
for ( std : : vector < cmCustomCommand > : : const_iterator cr =
target . GetCustomCommands ( ) . begin ( ) ;
cr ! = target . GetCustomCommands ( ) . end ( ) ; + + cr )
{
cmCustomCommand cc ( * cr ) ;
cc . ExpandVariables ( * m_Makefile ) ;
if ( cc . GetSourceName ( ) = = targetName )
{
if ( initNext )
{
customRuleCode + = " \n \t " ;
}
else
{
initNext = true ;
}
std : : string command = cmSystemTools : : ConvertToOutputPath ( cc . GetCommand ( ) . c_str ( ) ) ;
customRuleCode + = command + " " + cc . GetArguments ( ) ;
}
}
return customRuleCode ;
}
2002-11-08 23:46:08 +03:00
struct RuleVariables
{
const char * replace ;
const char * lookup ;
} ;
2002-08-31 00:01:48 +04:00
2002-11-08 23:46:08 +03:00
static RuleVariables ruleReplaceVars [ ] =
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
{ " <CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS> " , " CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS " } ,
{ " <CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS> " , " CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS " } ,
2002-11-21 16:45:45 +03:00
{ " <CMAKE_SHARED_MODULE_C_FLAGS> " , " CMAKE_SHARED_MODULE_C_FLAGS " } ,
{ " <CMAKE_SHARED_MODULE_CXX_FLAGS> " , " CMAKE_SHARED_MODULE_CXX_FLAGS " } ,
{ " <CMAKE_SHARED_LIBRARY_C_FLAGS> " , " CMAKE_SHARED_LIBRARY_C_FLAGS " } ,
{ " <CMAKE_SHARED_LIBRARY_CXX_FLAGS> " , " CMAKE_SHARED_LIBRARY_CXX_FLAGS " } ,
{ " <CMAKE_CXX_LINK_FLAGS> " , " CMAKE_CXX_LINK_FLAGS " } ,
2002-11-08 23:46:08 +03:00
{ " <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> " , " CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS " } ,
{ " <CMAKE_SHARED_MODULE_CREATE_C_FLAGS> " , " CMAKE_SHARED_MODULE_CREATE_C_FLAGS " } ,
{ " <CMAKE_C_LINK_FLAGS> " , " CMAKE_C_LINK_FLAGS " } ,
{ " <CMAKE_AR> " , " CMAKE_AR " } ,
{ " <CMAKE_RANLIB> " , " CMAKE_RANLIB " } ,
2002-11-19 17:12:23 +03:00
{ 0 , 0 }
2002-11-08 23:46:08 +03:00
} ;
void
cmLocalUnixMakefileGenerator : : ExpandRuleVariables ( std : : string & s ,
const char * objects ,
const char * target ,
const char * linkLibs ,
const char * source ,
const char * object ,
const char * flags ,
const char * objectsquoted ,
2002-11-12 02:10:30 +03:00
const char * targetBase ,
const char * linkFlags )
2002-11-08 23:46:08 +03:00
{
2002-11-13 00:58:38 +03:00
std : : string cxxcompiler = this - > ConvertToOutputForExisting (
this - > GetSafeDefinition ( " CMAKE_CXX_COMPILER " ) ) ;
std : : string ccompiler = this - > ConvertToOutputForExisting (
this - > GetSafeDefinition ( " CMAKE_C_COMPILER " ) ) ;
cmSystemTools : : ReplaceString ( s , " <CMAKE_CXX_COMPILER> " , cxxcompiler . c_str ( ) ) ;
cmSystemTools : : ReplaceString ( s , " <CMAKE_C_COMPILER> " , ccompiler . c_str ( ) ) ;
2002-11-12 02:10:30 +03:00
if ( linkFlags )
{
cmSystemTools : : ReplaceString ( s , " <LINK_FLAGS> " , linkFlags ) ;
}
2002-11-08 23:46:08 +03:00
if ( flags )
{
cmSystemTools : : ReplaceString ( s , " <FLAGS> " , flags ) ;
}
if ( source )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
cmSystemTools : : ReplaceString ( s , " <SOURCE> " , source ) ;
2002-08-31 00:01:48 +04:00
}
2002-11-08 23:46:08 +03:00
if ( object )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
cmSystemTools : : ReplaceString ( s , " <OBJECT> " , object ) ;
2002-08-31 00:01:48 +04:00
}
2002-11-08 23:46:08 +03:00
if ( objects )
{
cmSystemTools : : ReplaceString ( s , " <OBJECTS> " , objects ) ;
}
if ( objectsquoted )
{
cmSystemTools : : ReplaceString ( s , " <OBJECTS_QUOTED> " , objectsquoted ) ;
}
if ( target )
{
cmSystemTools : : ReplaceString ( s , " <TARGET> " , target ) ;
}
if ( targetBase )
{
2002-12-22 23:19:48 +03:00
// special case for quoted paths with spaces
// if you see <TARGET_BASE>.lib then put the .lib inside
// the quotes, same for .dll
if ( ( strlen ( targetBase ) > 1 ) & & targetBase [ 0 ] = = ' \" ' )
{
std : : string base = targetBase ;
base [ base . size ( ) - 1 ] = ' . ' ;
std : : string baseLib = base + " lib \" " ;
std : : string baseDll = base + " dll \" " ;
cmSystemTools : : ReplaceString ( s , " <TARGET_BASE>.lib " , baseLib . c_str ( ) ) ;
cmSystemTools : : ReplaceString ( s , " <TARGET_BASE>.dll " , baseDll . c_str ( ) ) ;
}
2002-11-08 23:46:08 +03:00
cmSystemTools : : ReplaceString ( s , " <TARGET_BASE> " , targetBase ) ;
}
if ( linkLibs )
{
cmSystemTools : : ReplaceString ( s , " <LINK_LIBRARIES> " , linkLibs ) ;
}
RuleVariables * rv = ruleReplaceVars ;
while ( rv - > replace )
{
cmSystemTools : : ReplaceString ( s , rv - > replace ,
this - > GetSafeDefinition ( rv - > lookup ) ) ;
rv + + ;
}
}
void cmLocalUnixMakefileGenerator : : OutputLibraryRule ( std : : ostream & fout ,
const char * name ,
const cmTarget & t ,
const char * prefix ,
const char * suffix ,
const char * createVariable ,
2002-11-12 02:10:30 +03:00
const char * comment ,
const char * linkFlags
2002-11-08 23:46:08 +03:00
)
{
// create the library name
std : : string targetNameBase = prefix ;
targetNameBase + = name ;
std : : string targetName = prefix ;
targetName + = name ;
targetName + = suffix ;
// create the target full path name
std : : string targetFullPath = m_LibraryOutputPath + targetName ;
std : : string targetBaseFullPath = m_LibraryOutputPath + targetNameBase ;
targetBaseFullPath =
cmSystemTools : : ConvertToOutputPath ( targetBaseFullPath . c_str ( ) ) ;
targetFullPath = cmSystemTools : : ConvertToOutputPath ( targetFullPath . c_str ( ) ) ;
// get the objects that are used to link this library
std : : string objs = " $( " + this - > CreateMakeVariable ( name , " _SRC_OBJS " ) + " ) " ;
std : : string objsQuoted = " $( " + this - > CreateMakeVariable ( name , " _SRC_OBJS_QUOTED " ) + " ) " ;
// create a variable with the objects that this library depends on
std : : string depend = objs + " $( "
+ this - > CreateMakeVariable ( name , " _DEPEND_LIBS " ) + " ) " ;
// collect up the build rules
std : : vector < std : : string > rules ;
std : : string command = " $(RM) " + targetFullPath ;
rules . push_back ( command ) ;
rules . push_back ( m_Makefile - > GetDefinition ( createVariable ) ) ;
// expand multi-command semi-colon separated lists
// of commands into separate commands
std : : vector < std : : string > commands ;
2002-12-12 02:13:33 +03:00
cmSystemTools : : ExpandList ( rules , commands ) ;
2002-11-08 23:46:08 +03:00
// collect custom commands for this target and add them to the list
2002-08-31 00:01:48 +04:00
std : : string customCommands = this - > CreateTargetRules ( t , name ) ;
if ( customCommands . size ( ) > 0 )
{
2002-11-08 23:46:08 +03:00
commands . push_back ( customCommands ) ;
2002-08-31 00:01:48 +04:00
}
2002-11-08 23:46:08 +03:00
// collect up the link libraries
cmOStringStream linklibs ;
this - > OutputLinkLibraries ( linklibs , name , t ) ;
for ( std : : vector < std : : string > : : iterator i = commands . begin ( ) ;
i ! = commands . end ( ) ; + + i )
{
this - > ExpandRuleVariables ( * i ,
objs . c_str ( ) ,
targetFullPath . c_str ( ) ,
linklibs . str ( ) . c_str ( ) ,
0 , 0 , 0 , objsQuoted . c_str ( ) ,
2002-11-12 02:10:30 +03:00
targetBaseFullPath . c_str ( ) ,
linkFlags ) ;
2002-11-08 23:46:08 +03:00
}
this - > OutputMakeRule ( fout , comment ,
targetFullPath . c_str ( ) ,
2002-08-31 00:01:48 +04:00
depend . c_str ( ) ,
2002-11-08 23:46:08 +03:00
commands ) ;
}
void cmLocalUnixMakefileGenerator : : OutputSharedLibraryRule ( std : : ostream & fout ,
const char * name ,
const cmTarget & t )
{
const char * createRule ;
if ( t . HasCxx ( ) )
{
createRule = " CMAKE_CXX_CREATE_SHARED_LIBRARY " ;
}
else
{
createRule = " CMAKE_C_CREATE_SHARED_LIBRARY " ;
}
2002-11-12 02:10:30 +03:00
std : : string buildType = this - > GetSafeDefinition ( " CMAKE_BUILD_TYPE " ) ;
buildType = cmSystemTools : : UpperCase ( buildType ) ;
std : : string linkFlags = this - > GetSafeDefinition ( " CMAKE_SHARED_LINKER_FLAGS " ) ;
linkFlags + = " " ;
if ( buildType . size ( ) )
{
std : : string build = " CMAKE_SHARED_LINKER_FLAGS_ " ;
build + = buildType ;
linkFlags + = this - > GetSafeDefinition ( build . c_str ( ) ) ;
linkFlags + = " " ;
}
2002-11-12 23:24:31 +03:00
# ifdef _WIN32
const std : : vector < cmSourceFile * > & sources = t . GetSourceFiles ( ) ;
for ( std : : vector < cmSourceFile * > : : const_iterator i = sources . begin ( ) ;
i ! = sources . end ( ) ; + + i )
{
if ( ( * i ) - > GetSourceExtension ( ) = = " def " )
{
linkFlags + = this - > GetSafeDefinition ( " CMAKE_LINK_DEF_FILE_FLAG " ) ;
linkFlags + = ( * i ) - > GetFullPath ( ) ;
linkFlags + = " " ;
}
}
# endif
2002-12-21 01:15:45 +03:00
const char * targetPrefix = t . GetProperty ( " PREFIX " ) ;
if ( ! targetPrefix )
{
targetPrefix = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_PREFIX " ) ;
}
const char * targetSuffix = t . GetProperty ( " SUFFIX " ) ;
if ( ! targetSuffix )
{
targetSuffix = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_SUFFIX " ) ;
}
const char * targetLinkFlags = t . GetProperty ( " LINK_FLAGS " ) ;
if ( targetLinkFlags )
{
linkFlags + = targetLinkFlags ;
linkFlags + = " " ;
}
2002-11-08 23:46:08 +03:00
this - > OutputLibraryRule ( fout , name , t ,
2002-12-21 01:15:45 +03:00
targetPrefix ,
targetSuffix ,
2002-11-08 23:46:08 +03:00
createRule ,
2002-11-12 02:10:30 +03:00
" shared library " ,
linkFlags . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputModuleLibraryRule ( std : : ostream & fout ,
const char * name ,
const cmTarget & t )
{
2002-11-08 23:46:08 +03:00
const char * createRule ;
2002-08-31 00:01:48 +04:00
if ( t . HasCxx ( ) )
{
2002-11-08 23:46:08 +03:00
createRule = " CMAKE_CXX_CREATE_SHARED_MODULE " ;
2002-08-31 00:01:48 +04:00
}
else
{
2002-11-08 23:46:08 +03:00
createRule = " CMAKE_C_CREATE_SHARED_MODULE " ;
2002-08-31 00:01:48 +04:00
}
2002-11-12 02:10:30 +03:00
std : : string buildType = this - > GetSafeDefinition ( " CMAKE_BUILD_TYPE " ) ;
buildType = cmSystemTools : : UpperCase ( buildType ) ;
std : : string linkFlags = this - > GetSafeDefinition ( " CMAKE_MODULE_LINKER_FLAGS " ) ;
linkFlags + = " " ;
if ( buildType . size ( ) )
{
std : : string build = " CMAKE_MODULE_LINKER_FLAGS_ " ;
build + = buildType ;
linkFlags + = this - > GetSafeDefinition ( build . c_str ( ) ) ;
linkFlags + = " " ;
}
2002-12-21 01:15:45 +03:00
const char * targetPrefix = t . GetProperty ( " PREFIX " ) ;
if ( ! targetPrefix )
{
targetPrefix = this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_PREFIX " ) ;
}
const char * targetSuffix = t . GetProperty ( " SUFFIX " ) ;
if ( ! targetSuffix )
{
targetSuffix = this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_SUFFIX " ) ;
}
const char * targetLinkFlags = t . GetProperty ( " LINK_FLAGS " ) ;
if ( targetLinkFlags )
{
linkFlags + = targetLinkFlags ;
linkFlags + = " " ;
}
2002-11-08 23:46:08 +03:00
this - > OutputLibraryRule ( fout , name , t ,
2002-12-21 01:15:45 +03:00
targetPrefix ,
targetSuffix ,
2002-11-08 23:46:08 +03:00
createRule ,
2002-11-12 02:10:30 +03:00
" shared module " ,
linkFlags . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputStaticLibraryRule ( std : : ostream & fout ,
const char * name ,
const cmTarget & t )
{
2002-11-08 23:46:08 +03:00
const char * createRule ;
2002-08-31 00:01:48 +04:00
if ( t . HasCxx ( ) )
{
2002-11-08 23:46:08 +03:00
createRule = " CMAKE_CXX_CREATE_STATIC_LIBRARY " ;
2002-08-31 00:01:48 +04:00
}
else
{
2002-11-08 23:46:08 +03:00
createRule = " CMAKE_C_CREATE_STATIC_LIBRARY " ;
2002-12-21 01:15:45 +03:00
}
const char * targetPrefix = t . GetProperty ( " PREFIX " ) ;
if ( ! targetPrefix )
{
targetPrefix = this - > GetSafeDefinition ( " CMAKE_STATIC_LIBRARY_PREFIX " ) ;
}
const char * targetSuffix = t . GetProperty ( " SUFFIX " ) ;
if ( ! targetSuffix )
{
targetSuffix = this - > GetSafeDefinition ( " CMAKE_STATIC_LIBRARY_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
2002-12-31 20:59:02 +03:00
std : : string linkFlags ;
const char * targetLinkFlags = t . GetProperty ( " LINK_FLAGS " ) ;
if ( targetLinkFlags )
{
linkFlags + = targetLinkFlags ;
linkFlags + = " " ;
}
2002-11-08 23:46:08 +03:00
this - > OutputLibraryRule ( fout , name , t ,
2002-12-21 01:15:45 +03:00
targetPrefix ,
targetSuffix ,
2002-11-08 23:46:08 +03:00
createRule ,
2002-12-31 20:41:12 +03:00
" static library " ,
2002-12-31 20:59:02 +03:00
linkFlags . c_str ( ) ) ;
2002-11-08 23:46:08 +03:00
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputExecutableRule ( std : : ostream & fout ,
2002-11-12 02:10:30 +03:00
const char * name ,
const cmTarget & t )
2002-08-31 00:01:48 +04:00
{
2002-11-12 02:10:30 +03:00
std : : string linkFlags ;
std : : string buildType = this - > GetSafeDefinition ( " CMAKE_BUILD_TYPE " ) ;
buildType = cmSystemTools : : UpperCase ( buildType ) ;
2002-11-08 23:46:08 +03:00
std : : string flags ;
std : : string target = m_ExecutableOutputPath + name
+ cmSystemTools : : GetExecutableExtension ( ) ;
2002-11-13 23:59:40 +03:00
target = cmSystemTools : : ConvertToOutputPath ( target . c_str ( ) ) ;
2002-11-08 23:46:08 +03:00
std : : string objs = " $( " + this - > CreateMakeVariable ( name , " _SRC_OBJS " ) + " ) " ;
2002-08-31 00:01:48 +04:00
std : : string depend = " $( " ;
depend + = this - > CreateMakeVariable ( name , " _SRC_OBJS " )
+ " ) $( " + this - > CreateMakeVariable ( name , " _DEPEND_LIBS " ) + " ) " ;
2002-11-08 23:46:08 +03:00
std : : vector < std : : string > rules ;
2002-11-12 02:10:30 +03:00
linkFlags + = this - > GetSafeDefinition ( " CMAKE_EXE_LINKER_FLAGS " ) ;
linkFlags + = " " ;
if ( buildType . size ( ) )
{
std : : string build = " CMAKE_EXE_LINKER_FLAGS_ " ;
build + = buildType ;
linkFlags + = this - > GetSafeDefinition ( build . c_str ( ) ) ;
linkFlags + = " " ;
}
2002-11-14 04:14:05 +03:00
2002-08-31 00:01:48 +04:00
if ( t . HasCxx ( ) )
{
2002-11-08 23:46:08 +03:00
rules . push_back ( m_Makefile - > GetDefinition ( " CMAKE_CXX_LINK_EXECUTABLE " ) ) ;
flags + = this - > GetSafeDefinition ( " CMAKE_CXX_FLAGS " ) ;
flags + = " " ;
2002-11-14 04:14:05 +03:00
flags + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_CXX_FLAGS " ) ;
flags + = " " ;
2002-08-31 00:01:48 +04:00
}
else
{
2002-11-14 04:14:05 +03:00
flags + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_LINK_FLAGS " ) ;
flags + = " " ;
2002-11-08 23:46:08 +03:00
rules . push_back ( m_Makefile - > GetDefinition ( " CMAKE_C_LINK_EXECUTABLE " ) ) ;
flags + = this - > GetSafeDefinition ( " CMAKE_C_FLAGS " ) ;
flags + = " " ;
2002-08-31 00:01:48 +04:00
}
2002-10-10 18:43:59 +04:00
cmOStringStream linklibs ;
2002-08-31 00:01:48 +04:00
this - > OutputLinkLibraries ( linklibs , 0 , t ) ;
2002-11-08 23:46:08 +03:00
std : : string comment = " executable " ;
2002-08-31 00:01:48 +04:00
2002-11-08 23:46:08 +03:00
std : : vector < std : : string > commands ;
2002-12-12 02:13:33 +03:00
cmSystemTools : : ExpandList ( rules , commands ) ;
2002-08-31 00:01:48 +04:00
std : : string customCommands = this - > CreateTargetRules ( t , name ) ;
if ( customCommands . size ( ) > 0 )
{
2002-11-08 23:46:08 +03:00
commands . push_back ( customCommands . c_str ( ) ) ;
}
2002-11-14 04:14:05 +03:00
if ( cmSystemTools : : IsOn ( m_Makefile - > GetDefinition ( " BUILD_SHARED_LIBS " ) ) )
{
linkFlags + = this - > GetSafeDefinition ( " CMAKE_SHARED_BUILD_CXX_FLAGS " ) ;
linkFlags + = " " ;
}
2002-11-08 23:46:08 +03:00
if ( t . GetType ( ) = = cmTarget : : WIN32_EXECUTABLE )
{
linkFlags + = this - > GetSafeDefinition ( " CMAKE_CREATE_WIN32_EXE " ) ;
linkFlags + = " " ;
}
else
{
linkFlags + = this - > GetSafeDefinition ( " CMAKE_CREATE_CONSOLE_EXE " ) ;
linkFlags + = " " ;
}
2002-12-21 01:15:45 +03:00
const char * targetLinkFlags = t . GetProperty ( " LINK_FLAGS " ) ;
if ( targetLinkFlags )
{
linkFlags + = targetLinkFlags ;
linkFlags + = " " ;
}
2002-11-08 23:46:08 +03:00
for ( std : : vector < std : : string > : : iterator i = commands . begin ( ) ;
i ! = commands . end ( ) ; + + i )
{
this - > ExpandRuleVariables ( * i ,
objs . c_str ( ) ,
target . c_str ( ) ,
linklibs . str ( ) . c_str ( ) ,
2002-11-12 02:10:30 +03:00
0 ,
0 ,
flags . c_str ( ) ,
0 ,
0 ,
linkFlags . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
}
this - > OutputMakeRule ( fout ,
comment . c_str ( ) ,
target . c_str ( ) ,
depend . c_str ( ) ,
2002-11-08 23:46:08 +03:00
commands ) ;
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputUtilityRule ( std : : ostream & fout ,
const char * name ,
const cmTarget & t )
{
std : : string customCommands = this - > CreateTargetRules ( t , name ) ;
const char * cc = 0 ;
if ( customCommands . size ( ) > 0 )
{
cc = customCommands . c_str ( ) ;
}
2002-11-08 23:46:08 +03:00
std : : string comment = " Utility " ;
2002-08-31 00:01:48 +04:00
std : : string depends ;
2002-09-06 16:33:21 +04:00
std : : string replaceVars ;
2002-08-31 00:01:48 +04:00
const std : : vector < cmCustomCommand > & ccs = t . GetCustomCommands ( ) ;
for ( std : : vector < cmCustomCommand > : : const_iterator i = ccs . begin ( ) ;
i ! = ccs . end ( ) ; + + i )
{
2002-09-06 16:33:21 +04:00
const std : : vector < std : : string > & dep = i - > GetDepends ( ) ;
for ( std : : vector < std : : string > : : const_iterator d = dep . begin ( ) ;
d ! = dep . end ( ) ; + + d )
{
depends + = " \\ \n " ;
replaceVars = * d ;
m_Makefile - > ExpandVariablesInString ( replaceVars ) ;
2002-09-06 17:24:30 +04:00
depends + = cmSystemTools : : ConvertToOutputPath ( replaceVars . c_str ( ) ) ;
2002-09-06 16:33:21 +04:00
}
2002-08-31 00:01:48 +04:00
}
2002-09-06 16:33:21 +04:00
this - > OutputMakeRule ( fout , comment . c_str ( ) , name ,
depends . c_str ( ) , cc ) ;
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputTargets ( std : : ostream & fout )
{
// for each target
const cmTargets & tgts = m_Makefile - > GetTargets ( ) ;
for ( cmTargets : : const_iterator l = tgts . begin ( ) ;
l ! = tgts . end ( ) ; l + + )
{
switch ( l - > second . GetType ( ) )
{
case cmTarget : : STATIC_LIBRARY :
this - > OutputStaticLibraryRule ( fout , l - > first . c_str ( ) , l - > second ) ;
break ;
case cmTarget : : SHARED_LIBRARY :
this - > OutputSharedLibraryRule ( fout , l - > first . c_str ( ) , l - > second ) ;
break ;
case cmTarget : : MODULE_LIBRARY :
this - > OutputModuleLibraryRule ( fout , l - > first . c_str ( ) , l - > second ) ;
break ;
case cmTarget : : EXECUTABLE :
case cmTarget : : WIN32_EXECUTABLE :
this - > OutputExecutableRule ( fout , l - > first . c_str ( ) , l - > second ) ;
break ;
case cmTarget : : UTILITY :
this - > OutputUtilityRule ( fout , l - > first . c_str ( ) , l - > second ) ;
break ;
// This is handled by the OutputCustomRules method
case cmTarget : : INSTALL_FILES :
// This is handled by the OutputInstallRules method
case cmTarget : : INSTALL_PROGRAMS :
// This is handled by the OutputInstallRules method
2002-10-10 18:43:59 +04:00
break ;
2002-08-31 00:01:48 +04:00
}
}
}
// For each target that is an executable or shared library, generate
// the "<name>_DEPEND_LIBS" variable listing its library dependencies.
void cmLocalUnixMakefileGenerator : : OutputDependLibs ( std : : ostream & fout )
{
// Build a set of libraries that will be linked into any target in
// this directory.
std : : set < std : : string > used ;
// for each target
const cmTargets & tgts = m_Makefile - > GetTargets ( ) ;
2002-12-06 23:35:22 +03:00
2002-08-31 00:01:48 +04:00
for ( cmTargets : : const_iterator l = tgts . begin ( ) ;
l ! = tgts . end ( ) ; l + + )
{
// Each dependency should only be emitted once per target.
std : : set < std : : string > emitted ;
if ( ( l - > second . GetType ( ) = = cmTarget : : SHARED_LIBRARY )
| | ( l - > second . GetType ( ) = = cmTarget : : MODULE_LIBRARY )
2002-12-06 23:35:22 +03:00
| | ( l - > second . GetType ( ) = = cmTarget : : STATIC_LIBRARY )
2002-08-31 00:01:48 +04:00
| | ( l - > second . GetType ( ) = = cmTarget : : EXECUTABLE )
| | ( l - > second . GetType ( ) = = cmTarget : : WIN32_EXECUTABLE ) )
{
fout < < this - > CreateMakeVariable ( l - > first . c_str ( ) , " _DEPEND_LIBS " ) < < " = " ;
// A library should not depend on itself!
emitted . insert ( l - > first ) ;
2002-12-06 23:35:22 +03:00
// for static libraries do not depend on other libraries
if ( l - > second . GetType ( ) ! = cmTarget : : STATIC_LIBRARY )
2002-08-31 00:01:48 +04:00
{
2002-12-06 23:35:22 +03:00
// Now, look at all link libraries specific to this target.
const cmTarget : : LinkLibraries & tlibs = l - > second . GetLinkLibraries ( ) ;
for ( cmTarget : : LinkLibraries : : const_iterator lib = tlibs . begin ( ) ;
lib ! = tlibs . end ( ) ; + + lib )
2002-08-31 00:01:48 +04:00
{
2002-12-06 23:35:22 +03:00
// Record that this library was used.
used . insert ( lib - > first ) ;
// Don't emit the same library twice for this target.
if ( emitted . insert ( lib - > first ) . second )
{
// Output this dependency.
this - > OutputLibDepend ( fout , lib - > first . c_str ( ) ) ;
}
2002-08-31 00:01:48 +04:00
}
}
2002-12-06 23:35:22 +03:00
// for all targets depend on utilities
2002-08-31 00:01:48 +04:00
// Now, look at all utilities specific to this target.
const std : : set < cmStdString > & tutils = l - > second . GetUtilities ( ) ;
for ( std : : set < cmStdString > : : const_iterator util = tutils . begin ( ) ;
util ! = tutils . end ( ) ; + + util )
2002-12-06 23:35:22 +03:00
{
2002-08-31 00:01:48 +04:00
// Record that this utility was used.
used . insert ( * util ) ;
// Don't emit the same utility twice for this target.
if ( emitted . insert ( * util ) . second )
{
// Output this dependency.
this - > OutputExeDepend ( fout , util - > c_str ( ) ) ;
}
}
fout < < " \n " ;
}
}
fout < < " \n " ;
// Loop over the libraries used and make sure there is a rule to
// build them in this makefile. If the library is in another
// directory, add a rule to jump to that directory and make sure it
// exists.
for ( std : : set < std : : string > : : const_iterator lib = used . begin ( ) ;
lib ! = used . end ( ) ; + + lib )
{
// 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
std : : string libPath = * lib + " _CMAKE_PATH " ;
const char * cacheValue = m_Makefile - > GetDefinition ( libPath . c_str ( ) ) ;
2002-12-06 23:35:22 +03:00
2002-08-31 00:01:48 +04:00
// if cache and not the current directory add a rule, to
// jump into the directory and build for the first time
if ( cacheValue & &
( ! this - > SamePath ( m_Makefile - > GetCurrentOutputDirectory ( ) , cacheValue ) ) )
{
// add the correct extension
std : : string ltname = * lib + " _LIBRARY_TYPE " ;
const char * libType
= m_Makefile - > GetDefinition ( ltname . c_str ( ) ) ;
// if it was a library..
if ( libType )
{
2002-11-08 23:46:08 +03:00
std : : string library ;
2002-08-31 00:01:48 +04:00
std : : string libpath = cacheValue ;
if ( libType & & std : : string ( libType ) = = " SHARED " )
{
2002-11-08 23:46:08 +03:00
library = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_PREFIX " ) ;
library + = * lib ;
library + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
else if ( libType & & std : : string ( libType ) = = " MODULE " )
{
2002-11-08 23:46:08 +03:00
library = this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_PREFIX " ) ;
library + = * lib ;
library + = this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
else if ( libType & & std : : string ( libType ) = = " STATIC " )
{
2002-11-08 23:46:08 +03:00
library = this - > GetSafeDefinition ( " CMAKE_STATIC_LIBRARY_PREFIX " ) ;
library + = * lib ;
library + = this - > GetSafeDefinition ( " CMAKE_STATIC_LIBRARY_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
else
{
cmSystemTools : : Error ( " Unknown library type! " ) ;
return ;
}
if ( m_LibraryOutputPath . size ( ) )
{
libpath = m_LibraryOutputPath ;
}
else
{
libpath + = " / " ;
}
libpath + = library ;
// put out a rule to build the library if it does not exist
this - > OutputBuildTargetInDir ( fout ,
cacheValue ,
library . c_str ( ) ,
libpath . c_str ( ) ,
m_Makefile - >
GetDefinition ( " LIBRARY_OUTPUT_PATH " )
) ;
}
// something other than a library...
else
{
std : : string exepath = cacheValue ;
if ( m_ExecutableOutputPath . size ( ) )
{
exepath = m_ExecutableOutputPath ;
}
else
{
exepath + = " / " ;
}
2002-12-06 23:35:22 +03:00
std : : string fullName = lib - > c_str ( ) ;
fullName + = cmSystemTools : : GetExecutableExtension ( ) ;
exepath + = fullName ;
2002-08-31 00:01:48 +04:00
this - > OutputBuildTargetInDir ( fout ,
2002-12-06 23:35:22 +03:00
cacheValue ,
fullName . c_str ( ) ,
exepath . c_str ( ) ,
m_Makefile - >
2002-08-31 00:01:48 +04:00
GetDefinition ( " EXECUTABLE_OUTPUT_PATH " )
2002-12-06 23:35:22 +03:00
) ;
2002-08-31 00:01:48 +04:00
}
}
}
}
2002-11-14 02:27:29 +03:00
void cmLocalUnixMakefileGenerator : : OutputBuildTargetInDirWindows ( std : : ostream & fout ,
const char * path ,
const char * library ,
const char * fullpath ,
const char * libOutPath )
{
const char * makeTarget = library ;
std : : string currentDir =
cmSystemTools : : ConvertToOutputPath ( m_Makefile - > GetCurrentOutputDirectory ( ) ) ;
2002-12-22 19:50:24 +03:00
std : : string wpath = this - > ConvertToOutputForExisting ( path ) ;
std : : string wfullpath = this - > ConvertToOutputForExisting ( fullpath ) ;
2002-11-14 02:27:29 +03:00
if ( libOutPath & & strcmp ( libOutPath , " " ) ! = 0 )
{
makeTarget = wfullpath . c_str ( ) ;
}
fout < < wfullpath
< < " : \n \t cd " < < wpath < < " \n "
< < " \t $(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.depends \n "
< < " \t $(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.check_depends \n "
< < " \t $(MAKE) -$(MAKEFLAGS) $(MAKESILENT) -f cmake.check_depends \n "
< < " \t $(MAKE) $(MAKESILENT) " < < makeTarget
< < " \n \t cd " < < currentDir < < " \n " ;
}
2002-08-31 00:01:48 +04:00
void cmLocalUnixMakefileGenerator : : OutputBuildTargetInDir ( std : : ostream & fout ,
const char * path ,
const char * library ,
const char * fullpath ,
const char * outputPath )
{
2002-11-14 02:27:29 +03:00
if ( m_WindowsShell )
{
this - > OutputBuildTargetInDirWindows ( fout , path , library , fullpath , outputPath ) ;
return ;
}
2002-08-31 00:01:48 +04:00
const char * makeTarget = library ;
if ( outputPath & & strcmp ( outputPath , " " ) ! = 0 )
{
makeTarget = fullpath ;
}
2002-12-22 19:50:24 +03:00
fout < < this - > ConvertToOutputForExisting ( fullpath )
< < " : \n \t cd " < < this - > ConvertToOutputForExisting ( path )
2002-08-31 00:01:48 +04:00
< < " ; $(MAKE) $(MAKESILENT) cmake.depends "
< < " ; $(MAKE) $(MAKESILENT) cmake.check_depends "
< < " ; $(MAKE) $(MAKESILENT) -f cmake.check_depends "
< < " ; $(MAKE) $(MAKESILENT) "
< < cmSystemTools : : ConvertToOutputPath ( makeTarget ) < < " \n \n " ;
}
bool cmLocalUnixMakefileGenerator : : SamePath ( const char * path1 , const char * path2 )
{
2002-11-08 23:46:08 +03:00
if ( strcmp ( path1 , path2 ) = = 0 )
{
return true ;
}
# if defined(_WIN32) || defined(__APPLE__)
return
cmSystemTools : : LowerCase ( this - > ConvertToOutputForExisting ( path1 ) ) = =
cmSystemTools : : LowerCase ( this - > ConvertToOutputForExisting ( path2 ) ) ;
# else
return false ;
# endif
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputLibDepend ( std : : ostream & fout ,
const char * name )
{
std : : string libPath = name ;
libPath + = " _CMAKE_PATH " ;
const char * cacheValue = m_Makefile - > GetDefinition ( libPath . 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 ( ! this - > SamePath ( m_Makefile - > GetCurrentOutputDirectory ( ) , cacheValue ) )
{
// if the library is not in the current directory, then get the full
// path to it
if ( m_LibraryOutputPath . size ( ) )
{
libpath = m_LibraryOutputPath ;
}
else
{
libpath = cacheValue ;
libpath + = " / " ;
}
}
else
{
// library is in current Makefile so use lib as a prefix
libpath = m_LibraryOutputPath ;
}
// add the correct extension
std : : string ltname = name ;
ltname + = " _LIBRARY_TYPE " ;
const char * libType = m_Makefile - > GetDefinition ( ltname . c_str ( ) ) ;
if ( libType & & std : : string ( libType ) = = " SHARED " )
{
2002-11-08 23:46:08 +03:00
libpath + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_PREFIX " ) ;
libpath + = name ;
libpath + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
else if ( libType & & std : : string ( libType ) = = " MODULE " )
{
2002-11-08 23:46:08 +03:00
libpath + = this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_PREFIX " ) ;
libpath + = name ;
libpath + = this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
else if ( libType & & std : : string ( libType ) = = " STATIC " )
{
2002-11-08 23:46:08 +03:00
libpath + = this - > GetSafeDefinition ( " CMAKE_STATIC_LIBRARY_PREFIX " ) ;
libpath + = name ;
libpath + = this - > GetSafeDefinition ( " CMAKE_STATIC_LIBRARY_SUFFIX " ) ;
2002-08-31 00:01:48 +04:00
}
fout < < cmSystemTools : : ConvertToOutputPath ( libpath . c_str ( ) ) < < " " ;
}
}
void cmLocalUnixMakefileGenerator : : OutputExeDepend ( std : : ostream & fout ,
const char * name )
{
std : : string exePath = name ;
exePath + = " _CMAKE_PATH " ;
const char * cacheValue = m_Makefile - > GetDefinition ( exePath . c_str ( ) ) ;
if ( cacheValue )
{
// if there is a cache value, then this is a executable/utility that cmake
// knows how to build, so we can depend on it
std : : string exepath ;
if ( ! this - > SamePath ( m_Makefile - > GetCurrentOutputDirectory ( ) , cacheValue ) )
{
// if the exe/utility is not in the current directory, then get the full
// path to it
if ( m_ExecutableOutputPath . size ( ) )
{
exepath = m_ExecutableOutputPath ;
}
else
{
exepath = cacheValue ;
exepath + = " / " ;
}
}
else
{
// library is in current Makefile
exepath = m_ExecutableOutputPath ;
}
// add the library name
exepath + = name ;
// add the correct extension
2002-11-08 23:46:08 +03:00
exepath + = cmSystemTools : : GetExecutableExtension ( ) ;
2002-08-31 00:01:48 +04:00
fout < < cmSystemTools : : ConvertToOutputPath ( exepath . c_str ( ) ) < < " " ;
}
}
// 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 ;
}
2002-11-08 23:46:08 +03:00
void cmLocalUnixMakefileGenerator : : BuildInSubDirectoryWindows ( std : : ostream & fout ,
const char * directory ,
const char * target1 ,
const char * target2 ,
bool silent )
{
if ( target1 )
{
2002-12-22 19:50:24 +03:00
std : : string dir = this - > ConvertToOutputForExisting ( directory ) ;
2002-11-23 00:59:21 +03:00
if ( dir [ 0 ] = = ' \" ' )
{
dir = dir . substr ( 1 , dir . size ( ) - 2 ) ;
}
2002-11-08 23:46:08 +03:00
fout < < " \t if not exist \" " < < dir < < " \\ $(NULL) \" "
< < " "
< < " $(MAKE) $(MAKESILENT) rebuild_cache \n " ;
if ( ! silent )
{
fout < < " \t echo " < < directory < < " : building " < < target1 < < " \n " ;
}
fout < < " \t cd " < < dir < < " \n "
< < " \t $(MAKE) -$(MAKEFLAGS) $(MAKESILENT) " < < target1 < < " \n " ;
}
if ( target2 )
{
if ( ! silent )
{
fout < < " \t echo " < < directory < < " : building " < < target2 < < " \n " ;
}
fout < < " \t $(MAKE) -$(MAKEFLAGS) $(MAKESILENT) " < < target2 < < " \n " ;
}
std : : string currentDir = m_Makefile - > GetCurrentOutputDirectory ( ) ;
2002-12-22 19:50:24 +03:00
fout < < " \t cd " < < this - > ConvertToOutputForExisting ( currentDir . c_str ( ) ) < < " \n \n " ;
2002-11-08 23:46:08 +03:00
}
2002-08-31 00:01:48 +04:00
void cmLocalUnixMakefileGenerator : : BuildInSubDirectory ( std : : ostream & fout ,
const char * dir ,
const char * target1 ,
const char * target2 ,
bool silent )
{
2002-11-08 23:46:08 +03:00
if ( m_WindowsShell )
{
this - > BuildInSubDirectoryWindows ( fout , dir , target1 , target2 , silent ) ;
return ;
}
2002-08-31 00:01:48 +04:00
std : : string directory = cmSystemTools : : ConvertToOutputPath ( dir ) ;
if ( target1 )
{
fout < < " \t @if test ! -d " < < directory
< < " ; then $(MAKE) rebuild_cache; fi \n " ;
if ( ! silent )
{
fout < < " \t echo " < < directory < < " : building " < < target1 < < " \n " ;
}
fout < < " \t @cd " < < directory
< < " ; $(MAKE) " < < target1 < < " \n " ;
}
if ( target2 )
{
if ( ! silent )
{
fout < < " \t echo " < < directory < < " : building " < < target2 < < " \n " ;
}
fout < < " \t @cd " < < directory
< < " ; $(MAKE) " < < target2 < < " \n " ;
}
fout < < " \n " ;
}
void
cmLocalUnixMakefileGenerator : :
OutputSubDirectoryVars ( std : : ostream & fout ,
const char * var ,
const char * target ,
const char * target1 ,
const char * target2 ,
const char * depend ,
const std : : vector < std : : string > & SubDirectories ,
bool silent )
{
if ( ! depend )
{
depend = " " ;
}
if ( SubDirectories . size ( ) = = 0 )
{
return ;
}
fout < < " # Variable for making " < < target < < " in subdirectories. \n " ;
fout < < var < < " = \\ \n " ;
2002-10-17 18:51:23 +04:00
unsigned int ii ;
for ( ii = 0 ; ii < SubDirectories . size ( ) ; ii + + )
2002-08-31 00:01:48 +04:00
{
2002-10-17 18:51:23 +04:00
std : : string subdir = FixDirectoryName ( SubDirectories [ ii ] . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
fout < < target < < " _ " < < subdir . c_str ( ) ;
2002-10-17 18:51:23 +04:00
if ( ii = = SubDirectories . size ( ) - 1 )
2002-08-31 00:01:48 +04:00
{
fout < < " \n \n " ;
}
else
{
fout < < " \\ \n " ;
}
}
fout < < " # Targets for making " < < target < < " in subdirectories. \n " ;
std : : string last = " " ;
2002-10-17 18:51:23 +04:00
for ( unsigned int cc = 0 ; cc < SubDirectories . size ( ) ; cc + + )
2002-08-31 00:01:48 +04:00
{
2002-10-17 18:51:23 +04:00
std : : string subdir = FixDirectoryName ( SubDirectories [ cc ] . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
fout < < target < < " _ " < < subdir . c_str ( ) < < " : " < < depend ;
// Make each subdirectory depend on previous one. This forces
// parallel builds (make -j 2) to build in same order as a single
// threaded build to avoid dependency problems.
2002-10-17 18:51:23 +04:00
if ( cc > 0 )
2002-08-31 00:01:48 +04:00
{
fout < < " " < < target < < " _ " < < last . c_str ( ) ;
}
fout < < " \n " ;
last = subdir ;
std : : string dir = m_Makefile - > GetCurrentOutputDirectory ( ) ;
dir + = " / " ;
2002-10-17 18:51:23 +04:00
dir + = SubDirectories [ cc ] ;
2002-08-31 00:01:48 +04:00
this - > BuildInSubDirectory ( fout , dir . c_str ( ) ,
target1 , target2 , silent ) ;
}
fout < < " \n \n " ;
}
// output rules for decending into sub directories
void cmLocalUnixMakefileGenerator : : OutputSubDirectoryRules ( std : : ostream & fout )
{
// Output Sub directory build rules
const std : : vector < std : : string > & SubDirectories
= m_Makefile - > GetSubDirectories ( ) ;
if ( SubDirectories . size ( ) = = 0 )
{
return ;
}
2002-12-05 22:56:31 +03:00
2002-08-31 00:01:48 +04:00
this - > OutputSubDirectoryVars ( fout ,
" SUBDIR_BUILD " ,
" default_target " ,
" default_target " ,
0 , " $(TARGETS) " ,
SubDirectories ,
false ) ;
this - > OutputSubDirectoryVars ( fout , " SUBDIR_CLEAN " , " clean " ,
" clean " ,
0 , 0 ,
SubDirectories ) ;
this - > OutputSubDirectoryVars ( fout , " SUBDIR_DEPEND " , " depend " ,
" depend " ,
0 , 0 ,
SubDirectories ) ;
this - > OutputSubDirectoryVars ( fout , " SUBDIR_INSTALL " , " install " ,
" install " ,
0 , 0 ,
SubDirectories ) ;
}
// Output the depend information for all the classes
// in the makefile. These would have been generated
// by the class cmMakeDepend GenerateMakefile
bool cmLocalUnixMakefileGenerator : : OutputObjectDepends ( std : : ostream & fout )
{
bool ret = false ;
// Iterate over every target.
std : : map < cmStdString , cmTarget > & targets = m_Makefile - > GetTargets ( ) ;
for ( std : : map < cmStdString , 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 ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
if ( ! ( * source ) - > GetDepends ( ) . empty ( ) )
{
// Iterate through all the dependencies for this source.
for ( std : : vector < std : : string > : : const_iterator dep =
( * source ) - > GetDepends ( ) . begin ( ) ;
dep ! = ( * source ) - > GetDepends ( ) . end ( ) ; + + dep )
{
2002-11-08 23:46:08 +03:00
fout < < ( * source ) - > GetSourceName ( )
< < this - > GetOutputExtension (
( * source ) - > GetSourceExtension ( ) . c_str ( ) ) < < " : "
2002-09-24 17:51:42 +04:00
< < cmSystemTools : : ConvertToOutputPath ( dep - > c_str ( ) ) < < " \n " ;
2002-08-31 00:01:48 +04:00
ret = true ;
}
fout < < " \n \n " ;
}
}
}
}
return ret ;
}
// Output the depend information for all the classes
// in the makefile. These would have been generated
// by the class cmMakeDepend GenerateMakefile
void cmLocalUnixMakefileGenerator : : OutputCheckDepends ( std : : ostream & fout )
{
std : : set < std : : string > emittedLowerPath ;
std : : set < std : : string > emitted ;
// Iterate over every target.
std : : map < cmStdString , cmTarget > & targets = m_Makefile - > GetTargets ( ) ;
fout < < " # Suppresses display of executed commands \n " ;
fout < < " .SILENT: \n " ;
fout < < " # disable some common implicit rules to speed things up \n " ;
fout < < " .SUFFIXES: \n " ;
fout < < " .SUFFIXES:.hpuxmakemusthaverule \n " ;
this - > OutputMakeVariables ( fout ) ;
fout < < " default: \n " ;
fout < < " \t $(MAKE) $(MAKESILENT) -f cmake.check_depends all \n "
< < " \t $(MAKE) $(MAKESILENT) -f cmake.check_depends cmake.depends \n \n " ;
for ( std : : map < cmStdString , 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 ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
if ( ! ( * source ) - > GetDepends ( ) . empty ( ) )
{
for ( std : : vector < std : : string > : : const_iterator dep =
( * source ) - > GetDepends ( ) . begin ( ) ;
dep ! = ( * source ) - > GetDepends ( ) . end ( ) ; + + dep )
{
std : : string dependfile =
cmSystemTools : : ConvertToOutputPath ( cmSystemTools : : CollapseFullPath ( dep - > c_str ( ) ) . c_str ( ) ) ;
// use the lower path function to create uniqe names
std : : string lowerpath = this - > LowerCasePath ( dependfile . c_str ( ) ) ;
if ( emittedLowerPath . insert ( lowerpath ) . second )
{
emitted . insert ( dependfile ) ;
2002-09-07 00:30:24 +04:00
fout < < " all:: " < < dependfile < < " \n " ;
2002-08-31 00:01:48 +04:00
}
}
}
}
}
}
fout < < " \n \n # if any of these files changes run make dependlocal \n " ;
std : : set < std : : string > : : iterator i ;
for ( i = emitted . begin ( ) ; i ! = emitted . end ( ) ; + + i )
{
2002-09-07 00:30:24 +04:00
fout < < " cmake.depends:: " < < * i < <
" \n \t $(MAKE) $(MAKESILENT) dependlocal \n \n " ;
2002-08-31 00:01:48 +04:00
}
fout < < " \n \n " ;
fout < < " # if a .h file is removed then run make dependlocal \n \n " ;
2002-10-17 18:51:23 +04:00
for ( std : : set < std : : string > : : iterator it = emitted . begin ( ) ;
it ! = emitted . end ( ) ; + + it )
2002-08-31 00:01:48 +04:00
{
2002-10-17 18:51:23 +04:00
fout < < * it < < " : \n "
2002-08-31 00:01:48 +04:00
< < " \t $(MAKE) $(MAKESILENT) dependlocal \n \n " ;
}
}
// Output each custom rule in the following format:
// output: source depends...
// (tab) command...
void cmLocalUnixMakefileGenerator : : 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 )
{
// if the source for the custom command is the same name
// as the target, then to not create a rule in the makefile for
// the custom command, as the command will be fired when the other target
// is built.
if ( cr - > GetSourceName ( ) . compare ( tgt - > first ) ! = 0 )
2002-10-10 18:43:59 +04:00
{
cmSourceGroup & sourceGroup =
m_Makefile - > FindSourceGroup ( cr - > GetSourceName ( ) . c_str ( ) ,
sourceGroups ) ;
cmCustomCommand cc ( * cr ) ;
cc . ExpandVariables ( * m_Makefile ) ;
sourceGroup . AddCustomCommand ( cc ) ;
}
2002-08-31 00:01:48 +04:00
}
}
// 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 . m_Commands ;
// Loop through every command generating code from the current source.
for ( cmSourceGroup : : Commands : : const_iterator c = commands . begin ( ) ;
c ! = commands . end ( ) ; + + c )
{
// escape spaces and convert to native slashes path for
// the command
2002-12-11 00:47:37 +03:00
const char * comment = c - > second . m_Comment . c_str ( ) ;
2002-12-06 23:35:22 +03:00
std : : string command = c - > second . m_Command ;
cmSystemTools : : ReplaceString ( command , " /./ " , " / " ) ;
command = cmSystemTools : : ConvertToOutputPath ( command . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
command + = " " ;
// now add the arguments
command + = c - > second . m_Arguments ;
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 )
{
std : : string depends ;
// collect 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 )
2002-12-06 23:35:22 +03:00
{
std : : string dep = * d ;
cmSystemTools : : ReplaceString ( dep , " /./ " , " / " ) ;
cmSystemTools : : ReplaceString ( dep , " /$(IntDir)/ " , " / " ) ;
dep = cmSystemTools : : ConvertToOutputPath ( dep . c_str ( ) ) ;
depends + = " " ;
2002-08-31 00:01:48 +04:00
depends + = dep ;
}
// output rule
this - > OutputMakeRule ( fout ,
2002-12-11 00:47:37 +03:00
( * comment ? comment : " Custom command " ) ,
2002-08-31 00:01:48 +04:00
source . c_str ( ) ,
depends . c_str ( ) ,
command . c_str ( ) ) ;
}
// 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 : : ConvertToOutputPath ( source . c_str ( ) ) ;
std : : string depends ;
depends + = src ;
// Collect 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 )
{
2002-12-06 23:35:22 +03:00
std : : string dep = * d ;
cmSystemTools : : ReplaceString ( dep , " /./ " , " / " ) ;
cmSystemTools : : ReplaceString ( dep , " /$(IntDir)/ " , " / " ) ;
dep = cmSystemTools : : ConvertToOutputPath ( dep . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
depends + = " " ;
depends + = dep ;
}
// output rule
this - > OutputMakeRule ( fout ,
2002-12-11 00:47:37 +03:00
( * comment ? comment : " Custom command " ) ,
2002-08-31 00:01:48 +04:00
output - > c_str ( ) ,
depends . c_str ( ) ,
command . c_str ( ) ) ;
}
}
}
if ( name ! = " " )
{
fout < < " # End of source group \" " < < name . c_str ( ) < < " \" \n \n " ;
}
}
}
2002-11-08 23:46:08 +03:00
std : : string
cmLocalUnixMakefileGenerator : : ConvertToOutputForExisting ( const char * p )
{
std : : string ret = cmSystemTools : : ConvertToOutputPath ( p ) ;
2002-11-13 00:58:38 +03:00
// if there are spaces in the path, then get the short path version
// if there is one
if ( ret . find ( ' ' ) ! = std : : string : : npos )
{
2002-12-22 19:50:24 +03:00
if ( cmSystemTools : : FileExists ( p ) )
2002-11-23 00:59:21 +03:00
{
2002-12-22 19:50:24 +03:00
if ( ! cmSystemTools : : GetShortPath ( ret . c_str ( ) , ret ) )
{
ret = p ;
}
2002-11-23 00:59:21 +03:00
}
2002-11-13 00:58:38 +03:00
}
2002-11-08 23:46:08 +03:00
return ret ;
}
2002-08-31 00:01:48 +04:00
void cmLocalUnixMakefileGenerator : : OutputMakeVariables ( std : : ostream & fout )
{
const char * variables =
" # the standard shell for make \n "
" SHELL = /bin/sh \n "
" \n " ;
2002-11-08 23:46:08 +03:00
if ( ! m_WindowsShell )
{
fout < < variables ;
}
else
{
fout < <
" !IF \" $(OS) \" == \" Windows_NT \" \n "
" NULL= \n "
" !ELSE \n "
" NULL=nul \n "
" !ENDIF \n " ;
}
if ( m_MakeSilentFlag . size ( ) )
{
fout < < " MAKESILENT = " < < m_MakeSilentFlag < < " \n " ;
}
std : : string cmakecommand = this - > ConvertToOutputForExisting (
m_Makefile - > GetDefinition ( " CMAKE_COMMAND " ) ) ;
2002-08-31 00:01:48 +04:00
fout < < " CMAKE_COMMAND = "
2002-11-08 23:46:08 +03:00
< < cmakecommand
2002-08-31 00:01:48 +04:00
< < " \n " ;
2002-11-08 23:46:08 +03:00
fout < < " RM = " < < cmakecommand . c_str ( ) < < " -E remove -f \n " ;
2002-08-31 00:01:48 +04:00
if ( m_Makefile - > GetDefinition ( " CMAKE_EDIT_COMMAND " ) )
{
fout < < " CMAKE_EDIT_COMMAND = "
2002-11-08 23:46:08 +03:00
< < this - > ConvertToOutputForExisting ( m_Makefile - > GetDefinition ( " CMAKE_EDIT_COMMAND " ) )
2002-08-31 00:01:48 +04:00
< < " \n " ;
}
fout < < " CMAKE_CURRENT_SOURCE = " < <
2002-11-08 23:46:08 +03:00
cmSystemTools : : ConvertToOutputPath ( m_Makefile - > GetStartDirectory ( ) )
< < " \n " ;
2002-08-31 00:01:48 +04:00
fout < < " CMAKE_CURRENT_BINARY = " < <
2002-11-08 23:46:08 +03:00
cmSystemTools : : ConvertToOutputPath ( m_Makefile - > GetStartOutputDirectory ( ) )
< < " \n " ;
2002-08-31 00:01:48 +04:00
fout < < " CMAKE_SOURCE_DIR = " < <
2002-11-08 23:46:08 +03:00
cmSystemTools : : ConvertToOutputPath ( m_Makefile - > GetHomeDirectory ( ) )
< < " \n " ;
2002-08-31 00:01:48 +04:00
fout < < " CMAKE_BINARY_DIR = " < <
2002-11-08 23:46:08 +03:00
cmSystemTools : : ConvertToOutputPath ( m_Makefile - > GetHomeOutputDirectory ( ) )
< < " \n " ;
2002-08-31 00:01:48 +04:00
// Output Include paths
fout < < " INCLUDE_FLAGS = " ;
std : : vector < std : : string > & includes = m_Makefile - > GetIncludeDirectories ( ) ;
std : : vector < std : : string > : : iterator i ;
fout < < " -I " < <
2002-11-14 19:33:25 +03:00
this - > ConvertToOutputForExisting ( m_Makefile - > GetStartDirectory ( ) ) < < " " ;
2002-08-31 00:01:48 +04:00
for ( i = includes . begin ( ) ; i ! = includes . end ( ) ; + + i )
{
std : : string include = * i ;
// Don't output a -I for the standard include path "/usr/include".
// This can cause problems with certain standard library
// implementations because the wrong headers may be found first.
if ( include ! = " /usr/include " )
{
2002-11-14 19:33:25 +03:00
fout < < " -I " < < this - > ConvertToOutputForExisting ( i - > c_str ( ) ) < < " " ;
2002-08-31 00:01:48 +04:00
}
}
fout < < m_Makefile - > GetDefineFlags ( ) ;
fout < < " \n \n " ;
}
void cmLocalUnixMakefileGenerator : : OutputInstallRules ( std : : ostream & fout )
{
const char * root
= m_Makefile - > GetDefinition ( " 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
= m_Makefile - > GetDefinition ( " 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 $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < <
2002-10-10 18:43:59 +04:00
" ] ; then \\ \n " ;
2002-08-31 00:01:48 +04:00
fout < < " \t echo \" Making directory $(DESTDIR) " < < prefix
2002-10-10 18:43:59 +04:00
< < l - > second . GetInstallPath ( ) < < " \" ; \\ \n " ;
2002-08-31 00:01:48 +04:00
fout < < " \t mkdir -p $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( )
2002-10-10 18:43:59 +04:00
< < " ; \\ \n " ;
2002-08-31 00:01:48 +04:00
fout < < " \t chmod 755 $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( )
2002-10-10 18:43:59 +04:00
< < " ; \\ \n " ;
2002-08-31 00:01:48 +04:00
fout < < " \t else true; \\ \n " ;
fout < < " \t fi \n " ;
// now install the target
switch ( l - > second . GetType ( ) )
2002-10-10 18:43:59 +04:00
{
case cmTarget : : STATIC_LIBRARY :
fout < < " \t $(INSTALL_DATA) " < < m_LibraryOutputPath < < " lib "
2002-08-31 00:01:48 +04:00
< < l - > first ;
fout < < " .a " ;
2002-10-10 18:43:59 +04:00
fout < < " $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < < " \n " ;
break ;
case cmTarget : : SHARED_LIBRARY :
2002-11-12 22:48:38 +03:00
fout < < " \t $(INSTALL_DATA) " < < m_LibraryOutputPath
< < this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_PREFIX " )
2002-08-31 00:01:48 +04:00
< < l - > first ;
2002-11-12 22:48:38 +03:00
fout < < this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_SUFFIX " ) ;
2002-10-10 18:43:59 +04:00
fout < < " $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < < " \n " ;
break ;
case cmTarget : : MODULE_LIBRARY :
2002-11-12 22:48:38 +03:00
fout < < " \t $(INSTALL_DATA) " < < m_LibraryOutputPath
< < this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_PREFIX " )
2002-08-31 00:01:48 +04:00
< < l - > first ;
2002-11-12 22:48:38 +03:00
fout < < this - > GetSafeDefinition ( " CMAKE_SHARED_MODULE_SUFFIX " ) ;
2002-10-10 18:43:59 +04:00
fout < < " $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < < " \n " ;
break ;
case cmTarget : : WIN32_EXECUTABLE :
case cmTarget : : EXECUTABLE :
2002-08-31 00:01:48 +04:00
fout < < " \t $(INSTALL_PROGRAM) " < < m_ExecutableOutputPath
< < l - > first
< < cmSystemTools : : GetExecutableExtension ( )
2002-10-10 18:43:59 +04:00
< < " $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < < " \n " ;
break ;
case cmTarget : : INSTALL_FILES :
{
2002-09-17 18:56:18 +04:00
std : : string sourcePath = m_Makefile - > GetCurrentDirectory ( ) ;
std : : string binaryPath = m_Makefile - > GetCurrentOutputDirectory ( ) ;
sourcePath + = " / " ;
binaryPath + = " / " ;
2002-10-10 18:43:59 +04:00
const std : : vector < std : : string > & sf = l - > second . GetSourceLists ( ) ;
std : : vector < std : : string > : : const_iterator i ;
for ( i = sf . begin ( ) ; i ! = sf . end ( ) ; + + i )
{
2002-09-17 18:56:18 +04:00
std : : string f = * i ;
if ( f . substr ( 0 , sourcePath . length ( ) ) = = sourcePath )
2002-08-31 00:01:48 +04:00
{
2002-09-17 18:56:18 +04:00
f = f . substr ( sourcePath . length ( ) ) ;
2002-08-31 00:01:48 +04:00
}
2002-09-17 18:56:18 +04:00
else if ( f . substr ( 0 , binaryPath . length ( ) ) = = binaryPath )
2002-08-31 00:01:48 +04:00
{
2002-09-17 18:56:18 +04:00
f = f . substr ( binaryPath . length ( ) ) ;
2002-08-31 00:01:48 +04:00
}
2002-10-10 18:43:59 +04:00
fout < < " \t @echo \" Installing " < < f . c_str ( ) < < " \" \n " ;
2002-08-31 00:01:48 +04:00
// avoid using install-sh to install install-sh
2002-09-17 18:56:18 +04:00
// does not work on windows....
if ( * i = = " install-sh " )
2002-08-31 00:01:48 +04:00
{
2002-09-17 18:56:18 +04:00
fout < < " \t @cp " ;
2002-08-31 00:01:48 +04:00
}
else
{
2002-09-17 18:56:18 +04:00
fout < < " \t @$(INSTALL_DATA) " ;
2002-08-31 00:01:48 +04:00
}
2002-10-10 18:43:59 +04:00
fout < < * i
< < " $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < < " \n " ;
}
}
break ;
case cmTarget : : INSTALL_PROGRAMS :
{
2002-09-17 18:56:18 +04:00
std : : string sourcePath = m_Makefile - > GetCurrentDirectory ( ) ;
std : : string binaryPath = m_Makefile - > GetCurrentOutputDirectory ( ) ;
sourcePath + = " / " ;
binaryPath + = " / " ;
2002-10-10 18:43:59 +04:00
const std : : vector < std : : string > & sf = l - > second . GetSourceLists ( ) ;
std : : vector < std : : string > : : const_iterator i ;
for ( i = sf . begin ( ) ; i ! = sf . end ( ) ; + + i )
{
2002-09-17 18:56:18 +04:00
std : : string f = * i ;
if ( f . substr ( 0 , sourcePath . length ( ) ) = = sourcePath )
2002-08-31 00:01:48 +04:00
{
2002-09-17 18:56:18 +04:00
f = f . substr ( sourcePath . length ( ) ) ;
2002-08-31 00:01:48 +04:00
}
2002-09-17 18:56:18 +04:00
else if ( f . substr ( 0 , binaryPath . length ( ) ) = = binaryPath )
2002-08-31 00:01:48 +04:00
{
2002-09-17 18:56:18 +04:00
f = f . substr ( binaryPath . length ( ) ) ;
2002-08-31 00:01:48 +04:00
}
2002-10-10 18:43:59 +04:00
fout < < " \t @echo \" Installing " < < f . c_str ( ) < < " \" \n " ;
2002-08-31 00:01:48 +04:00
// avoid using install-sh to install install-sh
2002-09-17 18:56:18 +04:00
// does not work on windows....
if ( * i = = " install-sh " )
2002-08-31 00:01:48 +04:00
{
2002-09-17 18:56:18 +04:00
fout < < " \t @cp " ;
2002-08-31 00:01:48 +04:00
}
else
{
2002-09-17 22:40:22 +04:00
fout < < " \t @$(INSTALL_PROGRAM) " ;
2002-08-31 00:01:48 +04:00
}
2002-10-10 18:43:59 +04:00
fout < < * i
< < " $(DESTDIR) " < < prefix < < l - > second . GetInstallPath ( ) < < " \n " ;
}
}
break ;
2002-08-31 00:01:48 +04:00
case cmTarget : : UTILITY :
default :
break ;
2002-10-10 18:43:59 +04:00
}
2002-08-31 00:01:48 +04:00
}
}
}
void cmLocalUnixMakefileGenerator : : OutputMakeRules ( std : : ostream & fout )
{
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" default build rule " ,
2002-08-31 00:01:48 +04:00
" all " ,
" cmake.depends $(TARGETS) $(SUBDIR_BUILD) " ,
0 ) ;
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" clean generated files " ,
2002-08-31 00:01:48 +04:00
" clean " ,
" $(SUBDIR_CLEAN) " ,
" -@ $(RM) $(CLEAN_OBJECT_FILES) "
" $(TARGETS) $(GENERATED_QT_FILES) $(GENERATED_FLTK_FILES) " ) ;
// collect up all the sources
std : : string allsources ;
std : : map < cmStdString , cmTarget > & targets = m_Makefile - > GetTargets ( ) ;
for ( std : : map < cmStdString , 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 ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
allsources + = " \\ \n " ;
allsources + = cmSystemTools : : ConvertToOutputPath ( ( * source ) - > GetFullPath ( ) . c_str ( ) ) ;
}
}
}
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" dependencies. " ,
2002-08-31 00:01:48 +04:00
" cmake.depends " ,
" $(CMAKE_MAKEFILE_SOURCES) " ,
" $(CMAKE_COMMAND) "
" -S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) "
) ;
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" dependencies " ,
2002-08-31 00:01:48 +04:00
" cmake.check_depends " ,
allsources . c_str ( ) ,
" $(CMAKE_COMMAND) "
" -S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) "
) ;
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" dependencies " ,
2002-08-31 00:01:48 +04:00
" depend " ,
" $(SUBDIR_DEPEND) " ,
" $(CMAKE_COMMAND) "
" -S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) " ) ;
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" dependencies " ,
2002-08-31 00:01:48 +04:00
" dependlocal " ,
0 ,
" $(CMAKE_COMMAND) "
" -S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) " ) ;
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" CMakeCache.txt " ,
2002-08-31 00:01:48 +04:00
" rebuild_cache " ,
" $(CMAKE_BINARY_DIR)/CMakeCache.txt " ,
" $(CMAKE_COMMAND) "
2002-12-06 00:53:09 +03:00
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) " ) ;
std : : string checkCache = m_Makefile - > GetHomeOutputDirectory ( ) ;
checkCache + = " /cmake.check_cache " ;
checkCache = cmSystemTools : : ConvertToOutputPath ( checkCache . c_str ( ) ) ;
std : : string CMakeCache = m_Makefile - > GetHomeOutputDirectory ( ) ;
CMakeCache + = " /CMakeCache.txt " ;
CMakeCache = cmSystemTools : : ConvertToOutputPath ( CMakeCache . c_str ( ) ) ;
2002-12-05 22:56:31 +03:00
this - > OutputMakeRule ( fout ,
" CMakeCache.txt because out-of-date: " ,
2002-12-06 00:53:09 +03:00
checkCache . c_str ( ) ,
CMakeCache . c_str ( ) ,
2002-12-05 22:56:31 +03:00
" $(CMAKE_COMMAND) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) " ) ;
2002-08-31 00:01:48 +04:00
// if CMAKE_EDIT_COMMAND is defined then add a rule to run it
// called edit_cache
if ( m_Makefile - > GetDefinition ( " CMAKE_EDIT_COMMAND " ) )
{
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" edit CMakeCache.txt " ,
2002-08-31 00:01:48 +04:00
" edit_cache " ,
0 ,
" $(CMAKE_EDIT_COMMAND) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) " ) ;
}
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" CMakeCache.txt " ,
2002-08-31 00:01:48 +04:00
" $(CMAKE_BINARY_DIR)/CMakeCache.txt " ,
0 ,
" $(CMAKE_COMMAND) "
" -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) " ) ;
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 ) ;
this - > OutputSourceObjectBuildRules ( fout ) ;
// find ctest
std : : string ctest = m_Makefile - > GetDefinition ( " CMAKE_COMMAND " ) ;
ctest = cmSystemTools : : GetFilenamePath ( ctest . c_str ( ) ) ;
ctest + = " / " ;
ctest + = " ctest " ;
ctest + = cmSystemTools : : GetExecutableExtension ( ) ;
if ( ! cmSystemTools : : FileExists ( ctest . c_str ( ) ) )
{
ctest = m_Makefile - > GetDefinition ( " CMAKE_COMMAND " ) ;
ctest = cmSystemTools : : GetFilenamePath ( ctest . c_str ( ) ) ;
ctest + = " /Debug/ " ;
ctest + = " ctest " ;
ctest + = cmSystemTools : : GetExecutableExtension ( ) ;
}
if ( ! cmSystemTools : : FileExists ( ctest . c_str ( ) ) )
{
ctest = m_Makefile - > GetDefinition ( " CMAKE_COMMAND " ) ;
ctest = cmSystemTools : : GetFilenamePath ( ctest . c_str ( ) ) ;
ctest + = " /Release/ " ;
ctest + = " ctest " ;
ctest + = cmSystemTools : : GetExecutableExtension ( ) ;
}
if ( cmSystemTools : : FileExists ( ctest . c_str ( ) ) )
{
this - > OutputMakeRule ( fout ,
2002-11-08 23:46:08 +03:00
" tests " ,
2002-08-31 00:01:48 +04:00
" test " ,
" " ,
2002-11-08 23:46:08 +03:00
this - > ConvertToOutputForExisting ( ctest . c_str ( ) ) . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
}
}
void
cmLocalUnixMakefileGenerator : :
OutputBuildObjectFromSource ( std : : ostream & fout ,
const char * shortName ,
const cmSourceFile & source ,
const char * extraCompileFlags ,
bool shared )
{
// Header files shouldn't have build rules.
if ( source . GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
return ;
}
2002-11-08 23:46:08 +03:00
std : : string comment = " object file " ;
std : : string objectFile = std : : string ( shortName ) +
this - > GetOutputExtension ( source . GetSourceExtension ( ) . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
objectFile = cmSystemTools : : ConvertToOutputPath ( objectFile . c_str ( ) ) ;
2002-11-08 23:46:08 +03:00
cmSystemTools : : FileFormat format =
2002-09-25 17:31:13 +04:00
cmSystemTools : : GetFileFormat ( source . GetSourceExtension ( ) . c_str ( ) ) ;
2002-11-08 23:46:08 +03:00
std : : vector < std : : string > rules ;
std : : string flags ;
if ( extraCompileFlags )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
flags + = extraCompileFlags ;
2002-08-31 00:01:48 +04:00
}
2002-11-08 23:46:08 +03:00
std : : string sourceFile =
cmSystemTools : : ConvertToOutputPath ( source . GetFullPath ( ) . c_str ( ) ) ;
std : : string buildType = this - > GetSafeDefinition ( " CMAKE_BUILD_TYPE " ) ;
buildType = cmSystemTools : : UpperCase ( buildType ) ;
switch ( format )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
case cmSystemTools : : C_FILE_FORMAT :
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
rules . push_back ( m_Makefile - > GetDefinition ( " CMAKE_C_COMPILE_OBJECT " ) ) ;
flags + = this - > GetSafeDefinition ( " CMAKE_C_FLAGS " ) ;
flags + = " " ;
2002-11-14 22:06:54 +03:00
if ( buildType . size ( ) )
{
std : : string build = " CMAKE_C_FLAGS_ " ;
build + = buildType ;
flags + = this - > GetSafeDefinition ( build . c_str ( ) ) ;
flags + = " " ;
}
2002-11-08 23:46:08 +03:00
if ( shared )
{
flags + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_C_FLAGS " ) ;
2002-11-14 17:38:28 +03:00
flags + = " " ;
2002-11-16 01:45:03 +03:00
}
if ( cmSystemTools : : IsOn ( m_Makefile - > GetDefinition ( " BUILD_SHARED_LIBS " ) ) )
{
flags + = this - > GetSafeDefinition ( " CMAKE_SHARED_BUILD_C_FLAGS " ) ;
flags + = " " ;
2002-11-08 23:46:08 +03:00
}
break ;
2002-08-31 00:01:48 +04:00
}
2002-11-08 23:46:08 +03:00
case cmSystemTools : : CXX_FILE_FORMAT :
{
rules . push_back ( m_Makefile - > GetDefinition ( " CMAKE_CXX_COMPILE_OBJECT " ) ) ;
flags + = this - > GetSafeDefinition ( " CMAKE_CXX_FLAGS " ) ;
flags + = " " ;
if ( buildType . size ( ) )
{
std : : string build = " CMAKE_CXX_FLAGS_ " ;
build + = buildType ;
flags + = this - > GetSafeDefinition ( build . c_str ( ) ) ;
flags + = " " ;
}
if ( shared )
{
flags + = this - > GetSafeDefinition ( " CMAKE_SHARED_LIBRARY_CXX_FLAGS " ) ;
flags + = " " ;
}
2002-11-14 07:37:20 +03:00
if ( cmSystemTools : : IsOn ( m_Makefile - > GetDefinition ( " BUILD_SHARED_LIBS " ) ) )
{
flags + = this - > GetSafeDefinition ( " CMAKE_SHARED_BUILD_CXX_FLAGS " ) ;
flags + = " " ;
}
2002-11-08 23:46:08 +03:00
break ;
}
case cmSystemTools : : HEADER_FILE_FORMAT :
return ;
case cmSystemTools : : DEFINITION_FILE_FORMAT :
return ;
case cmSystemTools : : RESOURCE_FILE_FORMAT :
{
flags = " $(INCLUDE_FLAGS) " ;
// use rc rule here if it is defined
const char * rule = m_Makefile - > GetDefinition ( " CMAKE_COMPILE_RESOURCE " ) ;
if ( rule )
{
rules . push_back ( rule ) ;
}
}
break ;
case cmSystemTools : : NO_FILE_FORMAT :
case cmSystemTools : : JAVA_FILE_FORMAT :
case cmSystemTools : : STATIC_LIBRARY_FILE_FORMAT :
case cmSystemTools : : SHARED_LIBRARY_FILE_FORMAT :
case cmSystemTools : : MODULE_FILE_FORMAT :
case cmSystemTools : : OBJECT_FILE_FORMAT :
case cmSystemTools : : UNKNOWN_FILE_FORMAT :
cmSystemTools : : Error ( " Unexpected file type " ,
sourceFile . c_str ( ) ) ;
break ;
}
2002-11-16 01:45:03 +03:00
flags + = " $(INCLUDE_FLAGS) " ;
2002-11-08 23:46:08 +03:00
// expand multi-command semi-colon separated lists
// of commands into separate commands
std : : vector < std : : string > commands ;
2002-12-12 02:13:33 +03:00
cmSystemTools : : ExpandList ( rules , commands ) ;
2002-11-08 23:46:08 +03:00
for ( std : : vector < std : : string > : : iterator i = commands . begin ( ) ;
i ! = commands . end ( ) ; + + i )
{
this - > ExpandRuleVariables ( * i ,
0 , // no objects
0 , // no target
0 , // no link libs
sourceFile . c_str ( ) ,
objectFile . c_str ( ) ,
2002-11-12 02:10:30 +03:00
flags . c_str ( ) ) ;
2002-08-31 00:01:48 +04:00
}
2002-12-14 00:16:48 +03:00
std : : vector < std : : string > sourceAndDeps ;
sourceAndDeps . push_back ( sourceFile ) ;
// Check for extra object-file dependencies.
2002-12-14 01:34:34 +03:00
std : : vector < std : : string > depends ;
2002-12-14 00:16:48 +03:00
const char * additionalDeps = source . GetProperty ( " OBJECT_DEPENDS " ) ;
if ( additionalDeps )
{
cmSystemTools : : ExpandListArgument ( additionalDeps , depends ) ;
for ( std : : vector < std : : string > : : iterator i = depends . begin ( ) ;
i ! = depends . end ( ) ; + + i )
{
sourceAndDeps . push_back ( cmSystemTools : : ConvertToOutputPath ( i - > c_str ( ) ) ) ;
}
}
2002-08-31 00:01:48 +04:00
this - > OutputMakeRule ( fout ,
comment . c_str ( ) ,
objectFile . c_str ( ) ,
2002-12-14 01:34:34 +03:00
sourceAndDeps ,
2002-11-08 23:46:08 +03:00
commands ) ;
2002-08-31 00:01:48 +04:00
}
void cmLocalUnixMakefileGenerator : : OutputSourceObjectBuildRules ( std : : ostream & fout )
{
2002-11-08 23:46:08 +03:00
fout < < " # Rules to build " < < this - > GetOutputExtension ( " " )
2002-08-31 00:01:48 +04:00
< < " files from their sources: \n " ;
std : : set < std : : string > rules ;
// Iterate over every target.
std : : map < cmStdString , cmTarget > & targets = m_Makefile - > GetTargets ( ) ;
for ( std : : map < cmStdString , cmTarget > : : const_iterator target = targets . begin ( ) ;
target ! = targets . end ( ) ; + + target )
{
bool shared = ( ( target - > second . GetType ( ) = = cmTarget : : SHARED_LIBRARY ) | |
2002-10-10 18:43:59 +04:00
( target - > second . GetType ( ) = = cmTarget : : MODULE_LIBRARY ) ) ;
2002-08-31 00:01:48 +04:00
std : : string exportsDef = " " ;
if ( shared )
{
exportsDef = " -D " + target - > first + " _EXPORTS " ;
}
// 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 ) - > GetPropertyAsBool ( " HEADER_FILE_ONLY " ) )
{
std : : string shortName ;
std : : string sourceName ;
// 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 ) )
{
sourceName = ( * source ) - > GetSourceName ( ) + " . " + ( * source ) - > GetSourceExtension ( ) ;
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
{
sourceName = ( * source ) - > GetFullPath ( ) ;
shortName = cmSystemTools : : GetFilenameName ( ( * source ) - > GetSourceName ( ) ) ;
}
std : : string shortNameWithExt = shortName +
( * source ) - > GetSourceExtension ( ) ;
// Only output a rule for each .o once.
2002-12-02 18:33:35 +03:00
std : : string compileFlags = exportsDef ;
compileFlags + = " " ;
2002-08-31 00:01:48 +04:00
if ( rules . find ( shortNameWithExt ) = = rules . end ( ) )
{
2002-12-02 18:33:35 +03:00
2002-08-31 00:01:48 +04:00
if ( ( * source ) - > GetProperty ( " COMPILE_FLAGS " ) )
{
2002-12-02 18:33:35 +03:00
compileFlags + = ( * source ) - > GetProperty ( " COMPILE_FLAGS " ) ;
2002-12-02 21:18:38 +03:00
compileFlags + = " " ;
2002-08-31 00:01:48 +04:00
}
this - > OutputBuildObjectFromSource ( fout ,
shortName . c_str ( ) ,
* ( * source ) ,
2002-12-02 18:33:35 +03:00
compileFlags . c_str ( ) ,
2002-08-31 00:01:48 +04:00
shared ) ;
rules . insert ( shortNameWithExt ) ;
}
}
}
}
}
2002-11-08 23:46:08 +03:00
2002-08-31 00:01:48 +04:00
void cmLocalUnixMakefileGenerator : : OutputMakeRule ( std : : ostream & fout ,
2002-11-08 23:46:08 +03:00
const char * comment ,
const char * target ,
const char * depends ,
const char * command ,
const char * command2 ,
const char * command3 ,
const char * command4 )
{
std : : vector < std : : string > commands ;
if ( command )
{
commands . push_back ( command ) ;
}
if ( command2 )
{
commands . push_back ( command2 ) ;
}
if ( command3 )
{
commands . push_back ( command3 ) ;
}
if ( command4 )
{
commands . push_back ( command4 ) ;
}
this - > OutputMakeRule ( fout , comment , target , depends , commands ) ;
}
void cmLocalUnixMakefileGenerator : : OutputMakeRule ( std : : ostream & fout ,
const char * comment ,
const char * target ,
const char * depends ,
const std : : vector < std : : string > & commands )
2002-12-14 00:16:48 +03:00
{
std : : vector < std : : string > depend ;
if ( depends )
{
depend . push_back ( depends ) ;
}
this - > OutputMakeRule ( fout , comment , target , depend , commands ) ;
}
void cmLocalUnixMakefileGenerator : : OutputMakeRule ( std : : ostream & fout ,
const char * comment ,
const char * target ,
const std : : vector < std : : string > & depends ,
const std : : vector < std : : string > & commands )
2002-08-31 00:01:48 +04:00
{
if ( ! target )
{
cmSystemTools : : Error ( " no target for OutputMakeRule " ) ;
return ;
}
std : : string replace ;
if ( comment )
{
replace = comment ;
m_Makefile - > ExpandVariablesInString ( replace ) ;
fout < < " #--------------------------------------------------------- \n " ;
fout < < " # " < < replace ;
fout < < " \n # \n " ;
}
fout < < " \n " ;
replace = target ;
m_Makefile - > ExpandVariablesInString ( replace ) ;
2002-12-14 00:16:48 +03:00
fout < < cmSystemTools : : ConvertToOutputPath ( replace . c_str ( ) ) < < " : " ;
2002-08-31 00:01:48 +04:00
2002-12-14 00:16:48 +03:00
for ( std : : vector < std : : string > : : const_iterator dep = depends . begin ( ) ;
dep ! = depends . end ( ) ; + + dep )
2002-08-31 00:01:48 +04:00
{
2002-12-14 00:16:48 +03:00
replace = * dep ;
2002-08-31 00:01:48 +04:00
m_Makefile - > ExpandVariablesInString ( replace ) ;
2002-12-14 00:16:48 +03:00
fout < < " " < < replace . c_str ( ) ;
2002-08-31 00:01:48 +04:00
}
fout < < " \n " ;
2002-11-08 23:46:08 +03:00
int count = 0 ;
for ( std : : vector < std : : string > : : const_iterator i = commands . begin ( ) ;
i ! = commands . end ( ) ; + + i )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
replace = * i ;
m_Makefile - > ExpandVariablesInString ( replace ) ;
2002-12-11 00:47:37 +03:00
if ( count = = 0 & & replace . find_first_not_of ( " \t \n \r " ) ! = std : : string : : npos & &
replace [ 0 ] ! = ' - ' & & replace . find ( " echo " ) ! = 0
2002-11-08 23:46:08 +03:00
& & replace . find ( " $(MAKE) " ) ! = 0 )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
std : : string echostring = " Building " ;
echostring + = comment ;
echostring + = " " ;
echostring + = target ;
echostring + = " ... " ;
// for unix we want to quote the output of echo
// for nmake and borland, the echo should not be quoted
if ( strcmp ( m_GlobalGenerator - > GetName ( ) , " Unix Makefiles " ) = = 0 )
2002-08-31 00:01:48 +04:00
{
2002-11-08 23:46:08 +03:00
cmSystemTools : : ReplaceString ( echostring , " \\ \n " , " " ) ;
cmSystemTools : : ReplaceString ( echostring , " \t " , " " ) ;
cmSystemTools : : ReplaceString ( echostring , " \n \t " , " \" \n \t echo \" " ) ;
fout < < " \t echo \" " < < echostring . c_str ( ) < < " \" \n " ;
}
else
{
cmSystemTools : : ReplaceString ( echostring , " \n \t " , " \n \t echo " ) ;
fout < < " \t echo " < < echostring . c_str ( ) < < " \n " ;
2002-08-31 00:01:48 +04:00
}
}
2002-11-08 23:46:08 +03:00
fout < < " \t " < < replace . c_str ( ) < < " \n " ;
count + + ;
2002-08-31 00:01:48 +04:00
}
fout < < " \n " ;
}
2002-11-08 23:46:08 +03:00
const char * cmLocalUnixMakefileGenerator : : GetSafeDefinition ( const char * def )
{
const char * ret = m_Makefile - > GetDefinition ( def ) ;
if ( ! ret )
{
return " " ;
}
return ret ;
}
std : : string cmLocalUnixMakefileGenerator : : LowerCasePath ( const char * path )
{
# ifdef _WIN32
return cmSystemTools : : LowerCase ( path ) ;
# else
return std : : string ( path ) ;
# endif
}
std : : string
cmLocalUnixMakefileGenerator : : CreateMakeVariable ( const char * s , const char * s2 )
{
if ( ! m_MakefileVariableSize )
{
return std : : string ( s ) + std : : string ( s2 ) ;
}
std : : string unmodified = s ;
unmodified + = s2 ;
// see if th
std : : map < cmStdString , cmStdString > : : iterator i = m_MakeVariableMap . find ( unmodified ) ;
if ( i ! = m_MakeVariableMap . end ( ) )
{
return i - > second ;
}
std : : string ret = unmodified ;
// if the string is greater the 32 chars it is an invalid vairable name
// for borland make
2002-11-18 01:31:12 +03:00
if ( static_cast < int > ( ret . size ( ) ) > m_MakefileVariableSize )
2002-11-08 23:46:08 +03:00
{
int keep = m_MakefileVariableSize - 8 ;
int size = keep + 3 ;
std : : string str1 = s ;
std : : string str2 = s2 ;
// we must shorten the combined string by 4 charactors
// keep no more than 24 charactors from the second string
2002-11-18 01:31:12 +03:00
if ( static_cast < int > ( str2 . size ( ) ) > keep )
2002-11-08 23:46:08 +03:00
{
str2 = str2 . substr ( 0 , keep ) ;
}
2002-11-18 01:31:12 +03:00
if ( static_cast < int > ( str1 . size ( ) ) + static_cast < int > ( str2 . size ( ) ) > size )
2002-11-08 23:46:08 +03:00
{
str1 = str1 . substr ( 0 , size - str2 . size ( ) ) ;
}
char buffer [ 5 ] ;
2002-12-09 06:34:17 +03:00
int ni = 0 ;
sprintf ( buffer , " %04d " , ni ) ;
2002-11-08 23:46:08 +03:00
ret = str1 + str2 + buffer ;
2002-12-09 06:34:17 +03:00
while ( m_ShortMakeVariableMap . count ( ret ) & & ni < 1000 )
2002-11-08 23:46:08 +03:00
{
2002-12-09 06:34:17 +03:00
+ + ni ;
sprintf ( buffer , " %04d " , ni ) ;
2002-11-08 23:46:08 +03:00
ret = str1 + str2 + buffer ;
}
2002-12-09 06:34:17 +03:00
if ( ni = = 1000 )
2002-11-08 23:46:08 +03:00
{
cmSystemTools : : Error ( " Borland makefile varible length too long " ) ;
return unmodified ;
}
// once an unused variable is found
m_ShortMakeVariableMap [ ret ] = " 1 " ;
}
// always make an entry into the unmodified to varible map
m_MakeVariableMap [ unmodified ] = ret ;
return ret ;
}