2005-05-05 20:45:53 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmLocalUnixMakefileGenerator3_h
|
|
|
|
#define cmLocalUnixMakefileGenerator3_h
|
|
|
|
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
|
|
|
|
class cmCustomCommand;
|
|
|
|
class cmDependInformation;
|
|
|
|
class cmDepends;
|
|
|
|
class cmMakeDepend;
|
|
|
|
class cmTarget;
|
|
|
|
class cmSourceFile;
|
|
|
|
|
|
|
|
/** \class cmLocalUnixMakefileGenerator3
|
|
|
|
* \brief Write a LocalUnix makefiles.
|
|
|
|
*
|
|
|
|
* cmLocalUnixMakefileGenerator3 produces a LocalUnix makefile from its
|
|
|
|
* member m_Makefile.
|
|
|
|
*/
|
|
|
|
class cmLocalUnixMakefileGenerator3 : public cmLocalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmLocalUnixMakefileGenerator3();
|
|
|
|
virtual ~cmLocalUnixMakefileGenerator3();
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
/**
|
|
|
|
* Generate the makefile for this directory.
|
|
|
|
*/
|
|
|
|
virtual void Generate();
|
|
|
|
|
2005-06-01 21:37:49 +04:00
|
|
|
/**
|
|
|
|
* Process the CMakeLists files for this directory to fill in the
|
|
|
|
* m_Makefile ivar
|
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
/** creates the common disclainer text at the top of each makefile */
|
|
|
|
void WriteDisclaimer(std::ostream& os);
|
|
|
|
|
|
|
|
// this returns the relative path between the HomeOutputDirectory and this
|
|
|
|
// local generators StartOutputDirectory
|
2005-06-01 21:37:49 +04:00
|
|
|
const std::string &GetHomeRelativeOutputPath();
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// Write out a make rule
|
|
|
|
void WriteMakeRule(std::ostream& os,
|
|
|
|
const char* comment,
|
|
|
|
const char* target,
|
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const std::vector<std::string>& commands);
|
|
|
|
|
|
|
|
// write the main variables used by the makefiles
|
2005-08-06 01:07:07 +04:00
|
|
|
void WriteMakeVariables(std::ostream& makefileStream);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// write a comment line #====... in the stream
|
|
|
|
void WriteDivider(std::ostream& os);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If true, then explicitly pass MAKEFLAGS on the make all target for makes
|
|
|
|
* that do not use environment variables.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void SetPassMakeflags(bool s){m_PassMakeflags = s;}
|
|
|
|
bool GetPassMakeflags() { return m_PassMakeflags; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the flag used to keep the make program silent.
|
|
|
|
*/
|
|
|
|
void SetMakeSilentFlag(const char* s) { m_MakeSilentFlag = s; }
|
|
|
|
std::string &GetMakeSilentFlag() { return m_MakeSilentFlag; }
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
/** used to create a recursive make call */
|
2006-01-30 22:25:07 +03:00
|
|
|
std::string GetRecursiveMakeCall(const char *makefile, const char* tgt);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
/** Set whether the echo command needs its argument quoted. */
|
|
|
|
void SetEchoNeedsQuote(bool b) { m_EchoNeedsQuote = b; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set to true if the shell being used is the windows shell.
|
|
|
|
* This controls if statements in the makefile and the SHELL variable.
|
|
|
|
* The default is false.
|
|
|
|
*/
|
|
|
|
void SetWindowsShell(bool v) {m_WindowsShell = v;}
|
|
|
|
|
2005-12-23 00:42:36 +03:00
|
|
|
/**
|
|
|
|
* If set to true, then NULL is set to nil for non Windows_NT.
|
|
|
|
* This uses make syntax used by nmake and borland.
|
|
|
|
* The default is false.
|
|
|
|
*/
|
|
|
|
void SetDefineWindowsNULL(bool v) {m_DefineWindowsNULL = v;}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If set to true, cd dir && command is used to
|
|
|
|
* run commands in a different directory.
|
|
|
|
*/
|
|
|
|
void SetUnixCD(bool v) {m_UnixCD = v;}
|
|
|
|
|
2006-01-17 18:21:45 +03:00
|
|
|
/**
|
|
|
|
* Set Support Verbose Variable. If true, then .SILENT will
|
|
|
|
* be not end with : i.e. .SILENT: or .SILENT
|
|
|
|
*/
|
|
|
|
void SetSilentNoColon(bool v) {m_SilentNoColon = v;}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
/**
|
|
|
|
* Set the string used to include one makefile into another default
|
|
|
|
* is include.
|
|
|
|
*/
|
|
|
|
void SetIncludeDirective(const char* s) { m_IncludeDirective = s; }
|
|
|
|
const char *GetIncludeDirective() { return m_IncludeDirective.c_str(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set max makefile variable size, default is 0 which means unlimited.
|
|
|
|
*/
|
|
|
|
void SetMakefileVariableSize(int s) { m_MakefileVariableSize = s; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If ignore lib prefix is true, then do not strip lib from the name
|
|
|
|
* of a library.
|
|
|
|
*/
|
|
|
|
void SetIgnoreLibPrefix(bool s) { m_IgnoreLibPrefix = s; }
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
/** Called from command-line hook to scan dependencies. */
|
2005-05-12 18:49:56 +04:00
|
|
|
virtual bool ScanDependencies(std::vector<std::string> const& args);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
/** Called from command-line hook to check dependencies. */
|
2005-06-10 18:45:08 +04:00
|
|
|
virtual void CheckDependencies(cmMakefile* mf, bool verbose,
|
|
|
|
bool clear);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
/** write some extra rules suahc as make test etc */
|
|
|
|
void WriteSpecialTargetsTop(std::ostream& makefileStream);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
void WriteSpecialTargetsBottom(std::ostream& makefileStream);
|
2005-06-22 17:06:46 +04:00
|
|
|
std::string GetRelativeTargetDirectory(cmTarget& target);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// List the files for which to check dependency integrity. Each
|
|
|
|
// language has its own list because integrity may be checked
|
|
|
|
// differently.
|
2005-07-27 17:49:37 +04:00
|
|
|
struct IntegrityCheckSet: public std::set<cmSourceFile *> {};
|
|
|
|
struct IntegrityCheckSetMap: public std::map<cmStdString, IntegrityCheckSet> {};
|
|
|
|
std::map<cmStdString, IntegrityCheckSetMap> &GetIntegrityCheckSet()
|
2005-05-05 20:45:53 +04:00
|
|
|
{ return m_CheckDependFiles;}
|
|
|
|
|
2005-05-18 21:46:00 +04:00
|
|
|
void AppendTargetDepends(std::vector<std::string>& depends,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target);
|
2005-05-18 21:46:00 +04:00
|
|
|
|
|
|
|
void AppendGlobalTargetDepends(std::vector<std::string>& depends,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target);
|
2005-05-18 21:46:00 +04:00
|
|
|
|
2005-05-20 19:01:21 +04:00
|
|
|
void AppendEcho(std::vector<std::string>& commands,
|
|
|
|
const char* text);
|
|
|
|
|
2005-10-20 21:40:28 +04:00
|
|
|
// write the target rules for the local Makefile into the stream
|
|
|
|
void WriteLocalAllRules(std::ostream& ruleFileStream);
|
2006-01-02 20:36:54 +03:00
|
|
|
|
|
|
|
std::map<cmStdString,std::vector<cmTarget *> > GetLocalObjectFiles()
|
|
|
|
{ return m_LocalObjectFiles;}
|
2005-05-05 20:45:53 +04:00
|
|
|
protected:
|
2005-12-26 21:14:19 +03:00
|
|
|
// Return the a string with -F flags on apple
|
|
|
|
std::string GetFrameworkFlags(cmTarget&);
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// write the depend info
|
|
|
|
void WriteDependLanguageInfo(std::ostream& cmakefileStream, cmTarget &tgt);
|
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
// write the target rules for the local Makefile into the stream
|
2005-10-20 21:40:28 +04:00
|
|
|
void WriteLocalMakefileTargets(std::ostream& ruleFileStream,
|
|
|
|
std::set<cmStdString> &emitted);
|
2005-06-30 17:53:03 +04:00
|
|
|
|
|
|
|
// write the local help rule
|
|
|
|
void WriteHelpRule(std::ostream& ruleFileStream);
|
2005-05-11 16:45:16 +04:00
|
|
|
|
2005-10-19 18:03:20 +04:00
|
|
|
// create a command that cds to the start dir then runs the commands
|
2005-10-20 21:40:28 +04:00
|
|
|
void CreateCDCommand(std::vector<std::string>& commands,
|
|
|
|
const char *targetDir, const char *returnDir);
|
2005-10-19 18:03:20 +04:00
|
|
|
|
|
|
|
// these two methods just compute reasonable values for m_LibraryOutputPath
|
|
|
|
// and m_ExecutableOutputPath
|
2005-05-06 22:49:38 +04:00
|
|
|
void ConfigureOutputPaths();
|
|
|
|
void FormatOutputPath(std::string& path, const char* name);
|
|
|
|
|
|
|
|
// this converts a file name that is relative to the StartOuputDirectory
|
|
|
|
// into a full path
|
|
|
|
std::string ConvertToFullPath(const std::string& localPath);
|
|
|
|
|
|
|
|
// this is responsible for writing all of the rules for all this
|
|
|
|
// directories custom commands (but not utility targets)
|
2005-07-28 23:24:31 +04:00
|
|
|
void WriteCustomCommands(std::ostream& os,
|
2005-05-24 22:42:23 +04:00
|
|
|
std::vector<std::string>& cleanFiles);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// this method Writes the Directory informaiton files
|
|
|
|
void WriteDirectoryInformationFile();
|
|
|
|
|
|
|
|
// cleanup the name of a potential target
|
|
|
|
std::string ConvertToMakeTarget(const char* tgt);
|
|
|
|
|
|
|
|
// used in writing out Cmake files such as WriteDirectoryInformation
|
|
|
|
void WriteCMakeArgument(std::ostream& os, const char* s);
|
|
|
|
|
|
|
|
// write out all the rules for this target
|
2005-06-22 17:06:46 +04:00
|
|
|
void WriteTargetRuleFiles(cmTarget& target);
|
|
|
|
void WriteUtilityRuleFiles(cmTarget& target);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// create the rule files for an object
|
2005-06-22 17:06:46 +04:00
|
|
|
void WriteObjectRuleFiles(cmTarget& target,
|
2005-07-27 17:49:37 +04:00
|
|
|
cmSourceFile& source,
|
|
|
|
std::vector<std::string>& objects,
|
2005-08-01 18:19:35 +04:00
|
|
|
std::ostream &filestr,
|
|
|
|
std::ostream &flagstr);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// write the build rule for an object
|
|
|
|
void WriteObjectBuildFile(std::string &obj,
|
|
|
|
const char *lang,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-07-27 17:49:37 +04:00
|
|
|
cmSourceFile& source,
|
2005-05-06 22:49:38 +04:00
|
|
|
std::vector<std::string>& depends,
|
2005-08-01 18:19:35 +04:00
|
|
|
std::ostream &filestr,
|
|
|
|
std::ostream &flagstr);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// write the depend.make file for an object
|
2005-07-27 19:33:39 +04:00
|
|
|
void WriteObjectDependRules(cmSourceFile& source,
|
2005-07-27 19:31:17 +04:00
|
|
|
std::vector<std::string>& depends);
|
2005-05-17 19:15:09 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
void GenerateCustomRuleFile(const cmCustomCommand& cc,
|
|
|
|
std::ostream &ruleStream);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// these three make some simple changes and then call WriteLibraryRule
|
2005-05-05 20:45:53 +04:00
|
|
|
void WriteStaticLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles);
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
void WriteSharedLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles);
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
void WriteModuleLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// the main code for writing the Executable target rules
|
|
|
|
void WriteExecutableRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-06 22:49:38 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// the main method for writing library rules
|
2005-05-05 20:45:53 +04:00
|
|
|
void WriteLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
const char* linkRuleVar,
|
2005-05-24 22:42:23 +04:00
|
|
|
const char* extraLinkFlags,
|
|
|
|
std::vector<std::string>& cleanFiles);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
void WriteLocalMakefile();
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
void WriteConvenienceRule(std::ostream& ruleFileStream,
|
|
|
|
const char* realTarget,
|
|
|
|
const char* helpTarget);
|
2005-05-05 20:45:53 +04:00
|
|
|
void WriteObjectsVariable(std::ostream& ruleFileStream,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::string& variableName,
|
|
|
|
std::string& variableNameExternal);
|
2005-05-17 19:15:09 +04:00
|
|
|
void WriteTargetDependRule(std::ostream& ruleFileStream,
|
2005-07-27 19:36:43 +04:00
|
|
|
cmTarget& target);
|
2005-05-24 22:42:23 +04:00
|
|
|
void WriteTargetCleanRule(std::ostream& ruleFileStream,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& files);
|
2005-05-11 16:45:16 +04:00
|
|
|
void WriteTargetRequiresRule(std::ostream& ruleFileStream,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-17 19:15:09 +04:00
|
|
|
const std::vector<std::string>& objects);
|
2005-05-11 16:45:16 +04:00
|
|
|
|
2005-06-22 17:06:46 +04:00
|
|
|
std::string GetTargetDirectory(cmTarget& target);
|
|
|
|
std::string GetObjectFileName(cmTarget& target,
|
2006-01-02 20:36:54 +03:00
|
|
|
const cmSourceFile& source,
|
|
|
|
std::string* nameWithoutTargetDir = 0);
|
2005-05-05 20:45:53 +04:00
|
|
|
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
|
|
|
std::string ConvertToQuotedOutputPath(const char* p);
|
|
|
|
|
|
|
|
void AppendRuleDepend(std::vector<std::string>& depends,
|
|
|
|
const char* ruleFileName);
|
|
|
|
void AppendCustomDepends(std::vector<std::string>& depends,
|
|
|
|
const std::vector<cmCustomCommand>& ccs);
|
|
|
|
void AppendCustomDepend(std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommand& cc);
|
|
|
|
void AppendCustomCommands(std::vector<std::string>& commands,
|
|
|
|
const std::vector<cmCustomCommand>& ccs);
|
|
|
|
void AppendCustomCommand(std::vector<std::string>& commands,
|
|
|
|
const cmCustomCommand& cc);
|
|
|
|
void AppendCleanCommand(std::vector<std::string>& commands,
|
|
|
|
const std::vector<std::string>& files);
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
std::string& CreateSafeUniqueObjectFileName(const char* sin);
|
|
|
|
std::string CreateMakeVariable(const char* sin, const char* s2in);
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
private:
|
2005-07-27 17:49:37 +04:00
|
|
|
std::map<cmStdString, IntegrityCheckSetMap> m_CheckDependFiles;
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
// Configuration settings.
|
|
|
|
int m_MakefileVariableSize;
|
|
|
|
std::map<cmStdString, cmStdString> m_MakeVariableMap;
|
|
|
|
std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
|
|
|
|
std::map<cmStdString, cmStdString> m_UniqueObjectNamesMap;
|
|
|
|
std::string m_IncludeDirective;
|
|
|
|
std::string m_MakeSilentFlag;
|
|
|
|
std::string m_ExecutableOutputPath;
|
|
|
|
std::string m_LibraryOutputPath;
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string m_ConfigurationName;
|
2005-12-23 00:42:36 +03:00
|
|
|
bool m_DefineWindowsNULL;
|
|
|
|
bool m_UnixCD;
|
2005-05-05 20:45:53 +04:00
|
|
|
bool m_PassMakeflags;
|
2006-01-17 18:21:45 +03:00
|
|
|
bool m_SilentNoColon;
|
2005-05-05 20:45:53 +04:00
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
// Flag for whether echo command needs quotes.
|
|
|
|
bool m_EchoNeedsQuote;
|
|
|
|
|
2005-06-01 21:37:49 +04:00
|
|
|
std::string m_HomeRelativeOutputPath;
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Set of object file names that will be built in this directory.
|
|
|
|
std::set<cmStdString> m_ObjectFiles;
|
2005-06-02 21:41:34 +04:00
|
|
|
|
2005-06-22 17:06:46 +04:00
|
|
|
std::map<cmStdString,std::vector<cmTarget *> > m_LocalObjectFiles;
|
2005-05-05 20:45:53 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|