2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-05-05 12:45:53 -04:00
|
|
|
#ifndef cmLocalUnixMakefileGenerator3_h
|
|
|
|
#define cmLocalUnixMakefileGenerator3_h
|
|
|
|
|
2017-08-25 20:39:02 +02:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2005-05-05 12:45:53 -04:00
|
|
|
|
2009-09-23 14:02:05 -04:00
|
|
|
#include "cmDepends.h"
|
2016-09-01 20:59:28 +02:00
|
|
|
#include "cmLocalCommonGenerator.h"
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2019-01-21 17:15:21 +01:00
|
|
|
#include <utility>
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <vector>
|
2009-09-23 14:02:05 -04:00
|
|
|
|
2005-05-05 12:45:53 -04:00
|
|
|
class cmCustomCommand;
|
2014-03-10 15:47:19 -04:00
|
|
|
class cmCustomCommandGenerator;
|
2016-09-01 20:59:28 +02:00
|
|
|
class cmGeneratorTarget;
|
|
|
|
class cmGlobalGenerator;
|
|
|
|
class cmMakefile;
|
2005-05-05 12:45:53 -04:00
|
|
|
|
|
|
|
/** \class cmLocalUnixMakefileGenerator3
|
|
|
|
* \brief Write a LocalUnix makefiles.
|
|
|
|
*
|
|
|
|
* cmLocalUnixMakefileGenerator3 produces a LocalUnix makefile from its
|
2006-03-15 11:02:08 -05:00
|
|
|
* member Makefile.
|
2005-05-05 12:45:53 -04:00
|
|
|
*/
|
2015-07-07 16:37:56 -04:00
|
|
|
class cmLocalUnixMakefileGenerator3 : public cmLocalCommonGenerator
|
2005-05-05 12:45:53 -04:00
|
|
|
{
|
|
|
|
public:
|
2015-08-02 11:41:51 +02:00
|
|
|
cmLocalUnixMakefileGenerator3(cmGlobalGenerator* gg, cmMakefile* mf);
|
2017-09-15 09:56:26 -04:00
|
|
|
~cmLocalUnixMakefileGenerator3() override;
|
2005-05-05 12:45:53 -04:00
|
|
|
|
2017-09-15 09:56:26 -04:00
|
|
|
void ComputeHomeRelativeOutputPath() override;
|
2015-06-13 08:38:27 +02:00
|
|
|
|
2006-02-15 10:34:11 -05:00
|
|
|
/**
|
2011-10-13 19:51:18 +02:00
|
|
|
* Generate the makefile for this directory.
|
2006-02-15 10:34:11 -05:00
|
|
|
*/
|
2017-09-15 09:56:26 -04:00
|
|
|
void Generate() override;
|
2005-05-06 14:49:38 -04:00
|
|
|
|
|
|
|
// this returns the relative path between the HomeOutputDirectory and this
|
|
|
|
// local generators StartOutputDirectory
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::string& GetHomeRelativeOutputPath();
|
2005-05-06 14:49:38 -04:00
|
|
|
|
2011-10-13 19:51:18 +02:00
|
|
|
// Write out a make rule
|
2016-05-16 10:34:04 -04:00
|
|
|
void WriteMakeRule(std::ostream& os, const char* comment,
|
2014-02-06 17:31:47 -05:00
|
|
|
const std::string& target,
|
2005-05-06 14:49:38 -04:00
|
|
|
const std::vector<std::string>& depends,
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::vector<std::string>& commands, bool symbolic,
|
2006-08-23 09:45:24 -04:00
|
|
|
bool in_help = false);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2005-05-06 14:49:38 -04:00
|
|
|
// write the main variables used by the makefiles
|
2005-08-05 17:07:07 -04:00
|
|
|
void WriteMakeVariables(std::ostream& makefileStream);
|
2005-05-06 14:49:38 -04:00
|
|
|
|
2005-05-05 12:45:53 -04:00
|
|
|
/**
|
|
|
|
* Set max makefile variable size, default is 0 which means unlimited.
|
|
|
|
*/
|
2006-03-15 11:02:08 -05:00
|
|
|
void SetMakefileVariableSize(int s) { this->MakefileVariableSize = s; }
|
2005-05-05 12:45:53 -04:00
|
|
|
|
2007-03-08 13:05:02 -05:00
|
|
|
/**
|
|
|
|
* Set whether passing a make target on a command line requires an
|
|
|
|
* extra level of escapes.
|
|
|
|
*/
|
|
|
|
void SetMakeCommandEscapeTargetTwice(bool b)
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
this->MakeCommandEscapeTargetTwice = b;
|
|
|
|
}
|
2007-03-08 13:05:02 -05:00
|
|
|
|
2007-05-17 10:53:18 -04:00
|
|
|
/**
|
|
|
|
* Set whether the Borland curly brace command line hack should be
|
|
|
|
* applied.
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
void SetBorlandMakeCurlyHack(bool b) { this->BorlandMakeCurlyHack = b; }
|
2007-05-17 10:53:18 -04:00
|
|
|
|
2006-02-15 10:34:11 -05:00
|
|
|
// used in writing out Cmake files such as WriteDirectoryInformation
|
|
|
|
static void WriteCMakeArgument(std::ostream& os, const char* s);
|
|
|
|
|
2011-03-19 11:41:00 +01:00
|
|
|
/** creates the common disclaimer text at the top of each makefile */
|
2006-02-15 10:34:11 -05:00
|
|
|
void WriteDisclaimer(std::ostream& os);
|
|
|
|
|
|
|
|
// write a comment line #====... in the stream
|
|
|
|
void WriteDivider(std::ostream& os);
|
|
|
|
|
|
|
|
/** used to create a recursive make call */
|
2019-01-22 10:39:08 -05:00
|
|
|
std::string GetRecursiveMakeCall(const std::string& makefile,
|
2014-02-06 17:31:47 -05:00
|
|
|
const std::string& tgt);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2007-05-10 14:43:55 -04:00
|
|
|
// append flags to a string
|
2017-12-15 11:00:52 +01:00
|
|
|
void AppendFlags(std::string& flags,
|
|
|
|
const std::string& newFlags) const override;
|
|
|
|
void AppendFlags(std::string& flags, const char* newFlags) const override;
|
2007-05-10 14:43:55 -04:00
|
|
|
|
2006-02-15 10:34:11 -05:00
|
|
|
// append an echo command
|
2016-05-16 10:34:04 -04:00
|
|
|
enum EchoColor
|
|
|
|
{
|
|
|
|
EchoNormal,
|
|
|
|
EchoDepend,
|
|
|
|
EchoBuild,
|
|
|
|
EchoLink,
|
|
|
|
EchoGenerate,
|
|
|
|
EchoGlobal
|
|
|
|
};
|
|
|
|
struct EchoProgress
|
|
|
|
{
|
|
|
|
std::string Dir;
|
|
|
|
std::string Arg;
|
|
|
|
};
|
2015-02-05 16:48:16 -05:00
|
|
|
void AppendEcho(std::vector<std::string>& commands, std::string const& text,
|
2017-08-22 23:42:36 +02:00
|
|
|
EchoColor color = EchoNormal, EchoProgress const* = nullptr);
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2008-10-15 10:40:57 -04:00
|
|
|
/** Get whether the makefile is to have color. */
|
|
|
|
bool GetColorMakefile() const { return this->ColorMakefile; }
|
|
|
|
|
2017-09-15 09:56:26 -04:00
|
|
|
std::string GetTargetDirectory(
|
|
|
|
cmGeneratorTarget const* target) const override;
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
// create a command that cds to the start dir then runs the commands
|
2011-10-13 19:51:18 +02:00
|
|
|
void CreateCDCommand(std::vector<std::string>& commands,
|
2018-01-31 18:20:02 +03:00
|
|
|
std::string const& targetDir,
|
|
|
|
std::string const& relDir);
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2019-01-22 10:39:08 -05:00
|
|
|
static std::string ConvertToQuotedOutputPath(const std::string& p,
|
2014-03-25 07:17:45 +01:00
|
|
|
bool useWatcomQuote);
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2014-02-21 19:05:55 -05:00
|
|
|
std::string CreateMakeVariable(const std::string& sin,
|
|
|
|
const std::string& s2in);
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2007-12-19 16:36:30 -05:00
|
|
|
/** Called from command-line hook to bring dependencies up to date
|
|
|
|
for a target. */
|
2019-01-22 10:39:08 -05:00
|
|
|
bool UpdateDependencies(const std::string& tgtInfo, bool verbose,
|
2017-09-15 09:56:26 -04:00
|
|
|
bool color) override;
|
2007-12-19 16:36:30 -05:00
|
|
|
|
|
|
|
/** Called from command-line hook to clear dependencies. */
|
2017-09-15 09:56:26 -04:00
|
|
|
void ClearDependencies(cmMakefile* mf, bool verbose) override;
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2006-02-15 10:34:11 -05:00
|
|
|
/** write some extra rules such as make test etc */
|
2005-05-06 14:49:38 -04:00
|
|
|
void WriteSpecialTargetsTop(std::ostream& makefileStream);
|
2005-05-05 12:45:53 -04:00
|
|
|
void WriteSpecialTargetsBottom(std::ostream& makefileStream);
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2015-10-15 00:12:53 +02:00
|
|
|
std::string GetRelativeTargetDirectory(cmGeneratorTarget* target);
|
2005-05-05 12:45:53 -04:00
|
|
|
|
2007-08-07 13:57:13 -04:00
|
|
|
// File pairs for implicit dependency scanning. The key of the map
|
|
|
|
// is the depender and the value is the explicit dependee.
|
2016-05-16 10:34:04 -04:00
|
|
|
struct ImplicitDependFileMap
|
|
|
|
: public std::map<std::string, cmDepends::DependencyVector>
|
|
|
|
{
|
|
|
|
};
|
|
|
|
struct ImplicitDependLanguageMap
|
|
|
|
: public std::map<std::string, ImplicitDependFileMap>
|
|
|
|
{
|
|
|
|
};
|
|
|
|
struct ImplicitDependTargetMap
|
|
|
|
: public std::map<std::string, ImplicitDependLanguageMap>
|
|
|
|
{
|
|
|
|
};
|
|
|
|
ImplicitDependLanguageMap const& GetImplicitDepends(
|
|
|
|
cmGeneratorTarget const* tgt);
|
2007-08-07 13:57:13 -04:00
|
|
|
|
2015-10-18 23:20:47 +02:00
|
|
|
void AddImplicitDepends(cmGeneratorTarget const* tgt,
|
2019-01-22 10:39:08 -05:00
|
|
|
const std::string& lang, const std::string& obj,
|
|
|
|
const std::string& src);
|
2007-08-07 13:57:13 -04:00
|
|
|
|
2005-10-20 13:40:28 -04:00
|
|
|
// write the target rules for the local Makefile into the stream
|
|
|
|
void WriteLocalAllRules(std::ostream& ruleFileStream);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2014-02-10 00:21:34 -05:00
|
|
|
std::vector<std::string> const& GetLocalHelp() { return this->LocalHelp; }
|
2006-08-23 09:45:24 -04:00
|
|
|
|
2006-08-07 23:25:21 -04:00
|
|
|
/** Get whether to create rules to generate preprocessed and
|
|
|
|
assembly sources. This could be converted to a variable lookup
|
|
|
|
later. */
|
2006-08-09 09:56:52 -04:00
|
|
|
bool GetCreatePreprocessedSourceRules()
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
2006-08-09 09:56:52 -04:00
|
|
|
return !this->SkipPreprocessedSourceRules;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2006-08-09 09:56:52 -04:00
|
|
|
bool GetCreateAssemblySourceRules()
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
2006-08-09 09:56:52 -04:00
|
|
|
return !this->SkipAssemblySourceRules;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2009-09-16 18:01:23 -04:00
|
|
|
|
2011-10-13 19:51:18 +02:00
|
|
|
// Fill the vector with the target names for the object files,
|
|
|
|
// preprocessed files and assembly files. Currently only used by the
|
2009-09-16 18:01:23 -04:00
|
|
|
// Eclipse generator.
|
|
|
|
void GetIndividualFileTargets(std::vector<std::string>& targets);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2005-05-05 12:45:53 -04:00
|
|
|
protected:
|
2006-02-15 10:34:11 -05:00
|
|
|
void WriteLocalMakefile();
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2005-05-11 08:45:16 -04:00
|
|
|
// write the target rules for the local Makefile into the stream
|
2005-10-20 13:40:28 -04:00
|
|
|
void WriteLocalMakefileTargets(std::ostream& ruleFileStream,
|
2016-05-16 10:34:04 -04:00
|
|
|
std::set<std::string>& emitted);
|
2005-06-30 09:53:03 -04:00
|
|
|
|
2009-02-09 16:36:56 -05:00
|
|
|
// this method Writes the Directory information files
|
2006-02-15 10:34:11 -05:00
|
|
|
void WriteDirectoryInformationFile();
|
|
|
|
|
2011-10-13 19:51:18 +02:00
|
|
|
// write the depend info
|
2015-10-09 22:19:57 +02:00
|
|
|
void WriteDependLanguageInfo(std::ostream& cmakefileStream,
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGeneratorTarget* tgt);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2006-02-15 10:34:11 -05:00
|
|
|
// this converts a file name that is relative to the StartOuputDirectory
|
|
|
|
// into a full path
|
|
|
|
std::string ConvertToFullPath(const std::string& localPath);
|
|
|
|
|
2005-05-06 14:49:38 -04:00
|
|
|
void WriteConvenienceRule(std::ostream& ruleFileStream,
|
2014-02-06 17:31:47 -05:00
|
|
|
const std::string& realTarget,
|
|
|
|
const std::string& helpTarget);
|
2006-02-15 10:34:11 -05:00
|
|
|
|
2005-05-05 12:45:53 -04:00
|
|
|
void AppendRuleDepend(std::vector<std::string>& depends,
|
|
|
|
const char* ruleFileName);
|
2011-03-15 14:07:36 -04:00
|
|
|
void AppendRuleDepends(std::vector<std::string>& depends,
|
|
|
|
std::vector<std::string> const& ruleFiles);
|
2005-05-05 12:45:53 -04:00
|
|
|
void AppendCustomDepends(std::vector<std::string>& depends,
|
|
|
|
const std::vector<cmCustomCommand>& ccs);
|
|
|
|
void AppendCustomDepend(std::vector<std::string>& depends,
|
2014-03-10 15:47:19 -04:00
|
|
|
cmCustomCommandGenerator const& cc);
|
2016-08-27 13:44:53 +02:00
|
|
|
void AppendCustomCommands(std::vector<std::string>& commands,
|
|
|
|
const std::vector<cmCustomCommand>& ccs,
|
|
|
|
cmGeneratorTarget* target,
|
|
|
|
std::string const& relative);
|
|
|
|
void AppendCustomCommand(std::vector<std::string>& commands,
|
|
|
|
cmCustomCommandGenerator const& ccg,
|
|
|
|
cmGeneratorTarget* target,
|
|
|
|
std::string const& relative,
|
|
|
|
bool echo_comment = false,
|
2017-08-22 23:42:36 +02:00
|
|
|
std::ostream* content = nullptr);
|
2005-05-05 12:45:53 -04:00
|
|
|
void AppendCleanCommand(std::vector<std::string>& commands,
|
2006-03-09 14:30:35 -05:00
|
|
|
const std::vector<std::string>& files,
|
2016-06-27 22:44:16 +02:00
|
|
|
cmGeneratorTarget* target,
|
2017-08-22 23:42:36 +02:00
|
|
|
const char* filename = nullptr);
|
2005-05-05 12:45:53 -04:00
|
|
|
|
2018-06-04 01:48:39 -04:00
|
|
|
// Helper methods for dependency updates.
|
2016-05-16 10:34:04 -04:00
|
|
|
bool ScanDependencies(
|
2019-01-18 20:20:00 -05:00
|
|
|
const std::string& targetDir,
|
2016-05-16 10:34:04 -04:00
|
|
|
std::map<std::string, cmDepends::DependencyVector>& validDeps);
|
2007-12-21 12:22:12 -05:00
|
|
|
void CheckMultipleOutputs(bool verbose);
|
|
|
|
|
2005-05-05 12:45:53 -04:00
|
|
|
private:
|
2016-08-27 13:44:53 +02:00
|
|
|
std::string MaybeConvertWatcomShellCommand(std::string const& cmd);
|
2009-02-10 08:51:15 -05:00
|
|
|
|
2006-02-15 10:34:11 -05:00
|
|
|
friend class cmMakefileTargetGenerator;
|
|
|
|
friend class cmMakefileExecutableTargetGenerator;
|
|
|
|
friend class cmMakefileLibraryTargetGenerator;
|
|
|
|
friend class cmMakefileUtilityTargetGenerator;
|
2006-05-23 09:11:46 -04:00
|
|
|
friend class cmGlobalUnixMakefileGenerator3;
|
2007-08-07 13:57:13 -04:00
|
|
|
|
|
|
|
ImplicitDependTargetMap ImplicitDepends;
|
2005-05-05 12:45:53 -04:00
|
|
|
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string HomeRelativeOutputPath;
|
2006-05-25 14:16:19 -04:00
|
|
|
|
2012-03-06 14:42:40 -05:00
|
|
|
struct LocalObjectEntry
|
|
|
|
{
|
2018-11-21 23:17:54 +01:00
|
|
|
cmGeneratorTarget* Target = nullptr;
|
2012-03-06 14:42:40 -05:00
|
|
|
std::string Language;
|
2018-11-21 23:17:54 +01:00
|
|
|
LocalObjectEntry() {}
|
2019-01-21 17:15:21 +01:00
|
|
|
LocalObjectEntry(cmGeneratorTarget* t, std::string lang)
|
2016-05-16 10:34:04 -04:00
|
|
|
: Target(t)
|
2019-01-21 17:15:21 +01:00
|
|
|
, Language(std::move(lang))
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
}
|
2012-03-06 14:42:40 -05:00
|
|
|
};
|
2016-05-16 10:34:04 -04:00
|
|
|
struct LocalObjectInfo : public std::vector<LocalObjectEntry>
|
2012-03-06 14:42:40 -05:00
|
|
|
{
|
2018-11-21 23:17:54 +01:00
|
|
|
bool HasSourceExtension = false;
|
|
|
|
bool HasPreprocessRule = false;
|
|
|
|
bool HasAssembleRule = false;
|
|
|
|
LocalObjectInfo() {}
|
2012-03-06 14:42:40 -05:00
|
|
|
};
|
2014-03-11 16:35:58 +01:00
|
|
|
void GetLocalObjectFiles(
|
2016-05-16 10:34:04 -04:00
|
|
|
std::map<std::string, LocalObjectInfo>& localObjectFiles);
|
2014-03-11 16:35:58 +01:00
|
|
|
|
2012-03-06 14:42:40 -05:00
|
|
|
void WriteObjectConvenienceRule(std::ostream& ruleFileStream,
|
2019-01-22 10:39:08 -05:00
|
|
|
const char* comment,
|
|
|
|
const std::string& output,
|
2012-03-06 14:42:40 -05:00
|
|
|
LocalObjectInfo const& info);
|
|
|
|
|
2014-02-10 00:21:34 -05:00
|
|
|
std::vector<std::string> LocalHelp;
|
2006-02-15 10:34:11 -05:00
|
|
|
|
|
|
|
/* does the work for each target */
|
2014-02-10 00:21:34 -05:00
|
|
|
std::map<std::string, std::string> MakeVariableMap;
|
|
|
|
std::map<std::string, std::string> ShortMakeVariableMap;
|
2015-06-06 09:46:10 +02:00
|
|
|
|
|
|
|
int MakefileVariableSize;
|
|
|
|
bool MakeCommandEscapeTargetTwice;
|
|
|
|
bool BorlandMakeCurlyHack;
|
|
|
|
bool ColorMakefile;
|
|
|
|
bool SkipPreprocessedSourceRules;
|
|
|
|
bool SkipAssemblySourceRules;
|
2005-05-05 12:45:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|