2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-05-05 20:45:53 +04:00
|
|
|
#ifndef cmGlobalUnixMakefileGenerator3_h
|
|
|
|
#define cmGlobalUnixMakefileGenerator3_h
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmGeneratorTarget.h"
|
|
|
|
#include "cmGlobalCommonGenerator.h"
|
2012-11-19 18:48:33 +04:00
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmState.h"
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
class cmGeneratedFileStream;
|
2016-09-01 21:59:28 +03:00
|
|
|
class cmLocalGenerator;
|
2005-05-06 22:49:38 +04:00
|
|
|
class cmLocalUnixMakefileGenerator3;
|
2016-09-01 21:59:28 +03:00
|
|
|
class cmMakefile;
|
|
|
|
class cmMakefileTargetGenerator;
|
|
|
|
class cmake;
|
|
|
|
struct cmDocumentationEntry;
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
/** \class cmGlobalUnixMakefileGenerator3
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalUnixMakefileGenerator3 manages UNIX build process for a tree
|
2010-11-12 00:02:07 +03:00
|
|
|
|
|
|
|
|
2005-05-31 19:46:49 +04:00
|
|
|
The basic approach of this generator is to produce Makefiles that will all
|
|
|
|
be run with the current working directory set to the Home Output
|
|
|
|
directory. The one exception to this is the subdirectory Makefiles which are
|
|
|
|
created as a convenience and just cd up to the Home Output directory and
|
2010-11-12 00:02:07 +03:00
|
|
|
invoke the main Makefiles.
|
|
|
|
|
2005-05-31 19:46:49 +04:00
|
|
|
The make process starts with Makefile. Makefile should only contain the
|
|
|
|
targets the user is likely to invoke directly from a make command line. No
|
|
|
|
internal targets should be in this file. Makefile2 contains the internal
|
|
|
|
targets that are required to make the process work.
|
2010-11-12 00:02:07 +03:00
|
|
|
|
2005-05-31 19:46:49 +04:00
|
|
|
Makefile2 in turn will recursively make targets in the correct order. Each
|
2011-03-20 16:22:39 +03:00
|
|
|
target has its own directory \<target\>.dir and its own makefile build.make in
|
2005-05-31 19:46:49 +04:00
|
|
|
that directory. Also in that directory is a couple makefiles per source file
|
|
|
|
used by the target. Typically these are named source.obj.build.make and
|
|
|
|
source.obj.build.depend.make. The source.obj.build.make contains the rules
|
|
|
|
for building, cleaning, and computing dependencies for the given source
|
|
|
|
file. The build.depend.make contains additional dependencies that were
|
|
|
|
computed during dependency scanning. An additional file called
|
|
|
|
source.obj.depend is used as a marker to indicate when dependencies must be
|
|
|
|
rescanned.
|
|
|
|
|
|
|
|
Rules for custom commands follow the same model as rules for source files.
|
2010-11-12 00:02:07 +03:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
*/
|
2005-05-31 19:46:49 +04:00
|
|
|
|
2015-07-07 23:37:56 +03:00
|
|
|
class cmGlobalUnixMakefileGenerator3 : public cmGlobalCommonGenerator
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalUnixMakefileGenerator3(cmake* cm);
|
2016-05-16 17:34:04 +03:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<
|
|
|
|
cmGlobalUnixMakefileGenerator3>();
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
///! Get the name for the generator.
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
return cmGlobalUnixMakefileGenerator3::GetActualName();
|
|
|
|
}
|
|
|
|
static std::string GetActualName() { return "Unix Makefiles"; }
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2015-02-15 22:17:54 +03:00
|
|
|
/**
|
|
|
|
* Utilized by the generator factory to determine if this generator
|
|
|
|
* supports toolsets.
|
|
|
|
*/
|
|
|
|
static bool SupportsToolset() { return false; }
|
|
|
|
|
2016-07-11 16:44:37 +03:00
|
|
|
/**
|
|
|
|
* Utilized by the generator factory to determine if this generator
|
|
|
|
* supports platforms.
|
|
|
|
*/
|
|
|
|
static bool SupportsPlatform() { return false; }
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 19:42:24 +04:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2010-11-12 00:02:07 +03:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
cmLocalGenerator* CreateLocalGenerator(cmMakefile* mf) CM_OVERRIDE;
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
/**
|
2014-10-10 03:22:45 +04:00
|
|
|
* Try to determine system information such as shared library
|
2010-11-12 00:02:07 +03:00
|
|
|
* extension, pthreads, byte order etc.
|
2005-05-05 20:45:53 +04:00
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
|
|
|
|
bool optional) CM_OVERRIDE;
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
void Configure() CM_OVERRIDE;
|
2013-11-12 17:44:08 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
/**
|
|
|
|
* Generate the all required files for building this project/tree. This
|
|
|
|
* basically creates a series of LocalGenerators for each directory and
|
2010-11-12 00:02:07 +03:00
|
|
|
* requests that they Generate.
|
2005-05-05 20:45:53 +04:00
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
void Generate() CM_OVERRIDE;
|
2010-11-12 00:02:07 +03:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
void WriteMainCMakefileLanguageRules(cmGeneratedFileStream& cmakefileStream,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<cmLocalGenerator*>&);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-10-20 21:40:28 +04:00
|
|
|
// write out the help rule listing the valid targets
|
|
|
|
void WriteHelpRule(std::ostream& ruleFileStream,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocalUnixMakefileGenerator3*);
|
2005-10-20 21:40:28 +04:00
|
|
|
|
2011-03-19 13:41:00 +03:00
|
|
|
// write the top level target rules
|
2010-11-12 00:02:07 +03:00
|
|
|
void WriteConvenienceRules(std::ostream& ruleFileStream,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::set<std::string>& emitted);
|
2005-10-20 21:40:28 +04:00
|
|
|
|
2007-05-16 21:24:17 +04:00
|
|
|
/** Get the command to use for a target that has no rule. This is
|
|
|
|
used for multiple output dependencies and for cmake_force. */
|
|
|
|
std::string GetEmptyRuleHackCommand() { return this->EmptyRuleHackCommand; }
|
2006-05-02 17:56:42 +04:00
|
|
|
|
2006-12-14 22:30:41 +03:00
|
|
|
/** Get the fake dependency to use when a rule has no real commands
|
|
|
|
or dependencies. */
|
|
|
|
std::string GetEmptyRuleHackDepends() { return this->EmptyRuleHackDepends; }
|
2006-05-02 17:56:42 +04:00
|
|
|
|
|
|
|
// change the build command for speed
|
2016-06-27 22:25:27 +03:00
|
|
|
void GenerateBuildCommand(std::vector<std::string>& makeCommand,
|
|
|
|
const std::string& makeProgram,
|
|
|
|
const std::string& projectName,
|
|
|
|
const std::string& projectDir,
|
|
|
|
const std::string& targetName,
|
|
|
|
const std::string& config, bool fast, bool verbose,
|
|
|
|
std::vector<std::string> const& makeOptions =
|
|
|
|
std::vector<std::string>()) CM_OVERRIDE;
|
2006-05-02 17:56:42 +04:00
|
|
|
|
2009-06-25 17:58:51 +04:00
|
|
|
/** Record per-target progress information. */
|
|
|
|
void RecordTargetProgress(cmMakefileTargetGenerator* tg);
|
2006-05-25 18:55:24 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void AddCXXCompileCommand(const std::string& sourceFile,
|
|
|
|
const std::string& workingDirectory,
|
|
|
|
const std::string& compileCommand);
|
2011-01-13 07:39:13 +03:00
|
|
|
|
2013-12-19 01:39:11 +04:00
|
|
|
/** Does the make tool tolerate .NOTPARALLEL? */
|
|
|
|
virtual bool AllowNotParallel() const { return true; }
|
|
|
|
|
2015-03-30 23:32:26 +03:00
|
|
|
/** Does the make tool tolerate .DELETE_ON_ERROR? */
|
|
|
|
virtual bool AllowDeleteOnError() const { return true; }
|
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
void ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const CM_OVERRIDE;
|
2015-05-16 06:18:39 +03:00
|
|
|
|
|
|
|
std::string IncludeDirective;
|
2015-05-16 06:20:36 +03:00
|
|
|
bool DefineWindowsNULL;
|
2015-05-16 06:20:58 +03:00
|
|
|
bool PassMakeflags;
|
2015-05-16 06:21:24 +03:00
|
|
|
bool UnixCD;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
protected:
|
2005-05-31 19:46:49 +04:00
|
|
|
void WriteMainMakefile2();
|
2005-05-05 20:45:53 +04:00
|
|
|
void WriteMainCMakefile();
|
2007-08-03 23:44:25 +04:00
|
|
|
|
|
|
|
void WriteConvenienceRules2(std::ostream& ruleFileStream,
|
|
|
|
cmLocalUnixMakefileGenerator3*);
|
2005-05-31 19:46:49 +04:00
|
|
|
|
2006-03-02 02:54:17 +03:00
|
|
|
void WriteDirectoryRule2(std::ostream& ruleFileStream,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocalUnixMakefileGenerator3* lg, const char* pass,
|
|
|
|
bool check_all, bool check_relink);
|
2006-03-02 02:54:17 +03:00
|
|
|
void WriteDirectoryRules2(std::ostream& ruleFileStream,
|
|
|
|
cmLocalUnixMakefileGenerator3* lg);
|
2005-05-18 21:46:00 +04:00
|
|
|
|
|
|
|
void AppendGlobalTargetDepends(std::vector<std::string>& depends,
|
2015-06-06 14:08:17 +03:00
|
|
|
cmGeneratorTarget* target);
|
2005-05-18 21:46:00 +04:00
|
|
|
|
2005-05-24 19:17:30 +04:00
|
|
|
// does this generator need a requires step for any of its targets
|
2015-10-19 00:20:47 +03:00
|
|
|
bool NeedRequiresStep(cmGeneratorTarget const*);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2011-10-10 17:44:33 +04:00
|
|
|
// Target name hooks for superclass.
|
2016-06-27 22:25:27 +03:00
|
|
|
const char* GetAllTargetName() const CM_OVERRIDE { return "all"; }
|
|
|
|
const char* GetInstallTargetName() const CM_OVERRIDE { return "install"; }
|
|
|
|
const char* GetInstallLocalTargetName() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return "install/local";
|
|
|
|
}
|
|
|
|
const char* GetInstallStripTargetName() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return "install/strip";
|
|
|
|
}
|
|
|
|
const char* GetPreinstallTargetName() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return "preinstall";
|
|
|
|
}
|
|
|
|
const char* GetTestTargetName() const CM_OVERRIDE { return "test"; }
|
|
|
|
const char* GetPackageTargetName() const CM_OVERRIDE { return "package"; }
|
|
|
|
const char* GetPackageSourceTargetName() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return "package_source";
|
|
|
|
}
|
|
|
|
const char* GetEditCacheTargetName() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return "edit_cache";
|
|
|
|
}
|
|
|
|
const char* GetRebuildCacheTargetName() const CM_OVERRIDE
|
|
|
|
{
|
|
|
|
return "rebuild_cache";
|
|
|
|
}
|
|
|
|
const char* GetCleanTargetName() const CM_OVERRIDE { return "clean"; }
|
|
|
|
|
|
|
|
bool CheckALLOW_DUPLICATE_CUSTOM_TARGETS() const CM_OVERRIDE { return true; }
|
2008-02-15 00:42:29 +03:00
|
|
|
|
2006-02-17 02:50:16 +03:00
|
|
|
// Some make programs (Borland) do not keep a rule if there are no
|
|
|
|
// dependencies or commands. This is a problem for creating rules
|
|
|
|
// that might not do anything but might have other dependencies
|
|
|
|
// added later. If non-empty this variable holds a fake dependency
|
|
|
|
// that can be added.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string EmptyRuleHackDepends;
|
2006-04-11 19:06:19 +04:00
|
|
|
|
2007-05-16 21:24:17 +04:00
|
|
|
// Some make programs (Watcom) do not like rules with no commands.
|
|
|
|
// If non-empty this variable holds a bogus command that may be put
|
|
|
|
// in the rule to satisfy the make program.
|
|
|
|
std::string EmptyRuleHackCommand;
|
2006-04-13 18:15:48 +04:00
|
|
|
|
2009-06-25 17:58:51 +04:00
|
|
|
// Store per-target progress counters.
|
|
|
|
struct TargetProgress
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
TargetProgress()
|
|
|
|
: NumberOfActions(0)
|
|
|
|
{
|
|
|
|
}
|
2009-06-25 17:58:51 +04:00
|
|
|
unsigned long NumberOfActions;
|
|
|
|
std::string VariableFile;
|
2010-06-25 16:48:59 +04:00
|
|
|
std::vector<unsigned long> Marks;
|
2009-06-25 17:58:51 +04:00
|
|
|
void WriteProgressVariables(unsigned long total, unsigned long& current);
|
|
|
|
};
|
2015-10-21 20:51:50 +03:00
|
|
|
typedef std::map<cmGeneratorTarget const*, TargetProgress,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratorTarget::StrictTargetComparison>
|
|
|
|
ProgressMapType;
|
2009-06-25 17:58:51 +04:00
|
|
|
ProgressMapType ProgressMap;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
size_t CountProgressMarksInTarget(
|
|
|
|
cmGeneratorTarget const* target,
|
|
|
|
std::set<cmGeneratorTarget const*>& emitted);
|
2015-10-22 02:06:46 +03:00
|
|
|
size_t CountProgressMarksInAll(cmLocalGenerator* lg);
|
2011-01-13 07:39:13 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratedFileStream* CommandDatabase;
|
|
|
|
|
2012-03-07 23:01:46 +04:00
|
|
|
private:
|
2016-06-27 22:25:27 +03:00
|
|
|
const char* GetBuildIgnoreErrorsFlag() const CM_OVERRIDE { return "-i"; }
|
|
|
|
std::string GetEditCacheCommand() const CM_OVERRIDE;
|
2015-08-02 11:22:12 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::map<cmState::Snapshot, std::set<cmGeneratorTarget const*>,
|
|
|
|
cmState::Snapshot::StrictWeakOrder>
|
|
|
|
DirectoryTargetsMap;
|
2016-06-27 22:25:27 +03:00
|
|
|
void InitializeProgressMarks() CM_OVERRIDE;
|
2005-05-05 20:45:53 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|