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
|
|
|
|
|
|
|
|
#include "cmGlobalGenerator.h"
|
2012-11-19 18:48:33 +04:00
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
class cmGeneratedFileStream;
|
2009-06-25 17:58:51 +04:00
|
|
|
class cmMakefileTargetGenerator;
|
2005-05-06 22:49:38 +04:00
|
|
|
class cmLocalUnixMakefileGenerator3;
|
|
|
|
|
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
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
class cmGlobalUnixMakefileGenerator3 : public cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalUnixMakefileGenerator3();
|
2012-11-19 18:48:33 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalUnixMakefileGenerator3>(); }
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
///! Get the name for the generator.
|
2014-02-25 02:36:27 +04:00
|
|
|
virtual std::string GetName() const {
|
2005-05-05 20:45:53 +04:00
|
|
|
return cmGlobalUnixMakefileGenerator3::GetActualName();}
|
2014-02-25 02:36:27 +04:00
|
|
|
static std::string GetActualName() {return "Unix Makefiles";}
|
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
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
///! Create a local generator appropriate to this Global Generator3
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to determine system infomation 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
|
|
|
*/
|
2006-03-10 21:54:57 +03:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 17:09:26 +04:00
|
|
|
cmMakefile *, bool optional);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2013-11-12 17:44:08 +04:00
|
|
|
virtual void Configure();
|
|
|
|
|
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
|
|
|
*/
|
|
|
|
virtual void Generate();
|
2010-11-12 00:02:07 +03:00
|
|
|
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
void WriteMainCMakefileLanguageRules(cmGeneratedFileStream& cmakefileStream,
|
|
|
|
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,
|
|
|
|
cmLocalUnixMakefileGenerator3 *);
|
|
|
|
|
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,
|
2014-02-10 09:21:34 +04: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
|
2013-11-15 22:33:32 +04:00
|
|
|
virtual void GenerateBuildCommand(
|
|
|
|
std::vector<std::string>& makeCommand,
|
2014-02-25 02:38:55 +04:00
|
|
|
const std::string& makeProgram,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& projectName,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& projectDir,
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& targetName,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2013-11-15 22:33:32 +04:00
|
|
|
bool fast,
|
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>()
|
|
|
|
);
|
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
|
|
|
|
2011-01-13 07:39:13 +03:00
|
|
|
void AddCXXCompileCommand(const std::string &sourceFile,
|
|
|
|
const std::string &workingDirectory,
|
|
|
|
const std::string &compileCommand);
|
|
|
|
|
2013-12-19 01:39:11 +04:00
|
|
|
/** Does the make tool tolerate .NOTPARALLEL? */
|
|
|
|
virtual bool AllowNotParallel() const { return true; }
|
|
|
|
|
2014-03-13 00:09:20 +04:00
|
|
|
virtual void ComputeTargetObjectDirectory(cmGeneratorTarget* gt) const;
|
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,
|
|
|
|
cmLocalUnixMakefileGenerator3* lg,
|
|
|
|
const char* pass, bool check_all,
|
|
|
|
bool check_relink);
|
|
|
|
void WriteDirectoryRules2(std::ostream& ruleFileStream,
|
|
|
|
cmLocalUnixMakefileGenerator3* lg);
|
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-24 19:17:30 +04:00
|
|
|
// does this generator need a requires step for any of its targets
|
2007-08-03 17:39:32 +04:00
|
|
|
bool NeedRequiresStep(cmTarget const&);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2011-10-10 17:44:33 +04:00
|
|
|
// Target name hooks for superclass.
|
|
|
|
const char* GetAllTargetName() const { return "all"; }
|
|
|
|
const char* GetInstallTargetName() const { return "install"; }
|
|
|
|
const char* GetInstallLocalTargetName() const { return "install/local"; }
|
|
|
|
const char* GetInstallStripTargetName() const { return "install/strip"; }
|
|
|
|
const char* GetPreinstallTargetName() const { return "preinstall"; }
|
|
|
|
const char* GetTestTargetName() const { return "test"; }
|
|
|
|
const char* GetPackageTargetName() const { return "package"; }
|
|
|
|
const char* GetPackageSourceTargetName() const { return "package_source"; }
|
|
|
|
const char* GetEditCacheTargetName() const { return "edit_cache"; }
|
|
|
|
const char* GetRebuildCacheTargetName() const { return "rebuild_cache"; }
|
|
|
|
const char* GetCleanTargetName() const { return "clean"; }
|
2006-02-23 21:37:35 +03:00
|
|
|
|
2014-01-10 16:35:58 +04:00
|
|
|
virtual bool CheckALLOW_DUPLICATE_CUSTOM_TARGETS() const { 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
|
|
|
|
{
|
|
|
|
TargetProgress(): NumberOfActions(0) {}
|
|
|
|
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);
|
|
|
|
};
|
2013-12-10 18:16:23 +04:00
|
|
|
typedef std::map<cmTarget const*, TargetProgress,
|
2014-03-17 18:32:19 +04:00
|
|
|
cmStrictTargetComparison> ProgressMapType;
|
2009-06-25 17:58:51 +04:00
|
|
|
ProgressMapType ProgressMap;
|
|
|
|
|
2013-12-10 18:16:23 +04:00
|
|
|
size_t CountProgressMarksInTarget(cmTarget const* target,
|
|
|
|
std::set<cmTarget const*>& emitted);
|
2009-06-25 17:58:51 +04:00
|
|
|
size_t CountProgressMarksInAll(cmLocalUnixMakefileGenerator3* lg);
|
2011-01-13 07:39:13 +03:00
|
|
|
|
|
|
|
cmGeneratedFileStream *CommandDatabase;
|
2012-03-07 23:01:46 +04:00
|
|
|
private:
|
2013-11-14 00:59:32 +04:00
|
|
|
virtual const char* GetBuildIgnoreErrorsFlag() const { return "-i"; }
|
2013-11-12 17:44:08 +04:00
|
|
|
virtual std::string GetEditCacheCommand() const;
|
2005-05-05 20:45:53 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|