cmLocalUnixMakefileGenerator.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmLocalUnixMakefileGenerator_h
  14. #define cmLocalUnixMakefileGenerator_h
  15. #include "cmLocalGenerator.h"
  16. class cmDependInformation;
  17. class cmMakeDepend;
  18. class cmTarget;
  19. class cmSourceFile;
  20. /** \class cmLocalUnixMakefileGenerator
  21. * \brief Write a LocalUnix makefiles.
  22. *
  23. * cmLocalUnixMakefileGenerator produces a LocalUnix makefile from its
  24. * member m_Makefile.
  25. */
  26. class cmLocalUnixMakefileGenerator : public cmLocalGenerator
  27. {
  28. public:
  29. ///! Set cache only and recurse to false by default.
  30. cmLocalUnixMakefileGenerator();
  31. virtual ~cmLocalUnixMakefileGenerator();
  32. /**
  33. * Generate the makefile for this directory. fromTheTop indicates if this
  34. * is being invoked as part of a global Generate or specific to this
  35. * directory. The difference is that when done from the Top we might skip
  36. * some steps to save time, such as dependency generation for the
  37. * makefiles. This is done by a direct invocation from make.
  38. */
  39. virtual void Generate(bool fromTheTop);
  40. /**
  41. * Output the depend information for all the classes
  42. * in the makefile. These would have been generated
  43. * by the class cmMakeDepend.
  44. */
  45. virtual bool OutputObjectDepends(std::ostream&);
  46. /**
  47. * Output the check depend information for all the classes
  48. * in the makefile. These would have been generated
  49. * by the class cmMakeDepend.
  50. */
  51. virtual void OutputCheckDepends(std::ostream&);
  52. /**
  53. * Set to true if the shell being used is the windows shell.
  54. * This controls if statements in the makefile and the SHELL variable.
  55. * The default is false.
  56. */
  57. void SetWindowsShell(bool v) {m_WindowsShell = v;}
  58. ///! Set the string used to include one makefile into another default is include.
  59. void SetIncludeDirective(const char* s) { m_IncludeDirective = s; }
  60. ///! Set the flag used to keep the make program silent.
  61. void SetMakeSilentFlag(const char* s) { m_MakeSilentFlag = s; }
  62. ///! Set max makefile variable size, default is 0 which means unlimited.
  63. void SetMakefileVariableSize(int s) { m_MakefileVariableSize = s; }
  64. protected:
  65. void AddDependenciesToSourceFile(cmDependInformation const*info,
  66. cmSourceFile *i,
  67. std::set<cmDependInformation const*> *visited);
  68. virtual const char* GetSafeDefinition(const char*);
  69. virtual void ProcessDepends(const cmMakeDepend &md);
  70. virtual void OutputMakefile(const char* file, bool withDepends);
  71. virtual void OutputTargetRules(std::ostream& fout);
  72. virtual void OutputLinkLibraries(std::ostream&, const char* name, const cmTarget &);
  73. void OutputLibraryRule(std::ostream& fout,
  74. const char* name,
  75. const cmTarget &t,
  76. const char* prefix,
  77. const char* suffix,
  78. const char* createRule,
  79. const char* comment,
  80. const char* linkFlags
  81. );
  82. void ExpandRuleVariables(std::string& string,
  83. const char* objects=0,
  84. const char* target=0,
  85. const char* linkLibs=0,
  86. const char* source=0,
  87. const char* object =0,
  88. const char* flags = 0,
  89. const char* objectsquoted = 0,
  90. const char* targetBase = 0,
  91. const char* linkFlags = 0);
  92. virtual void OutputSharedLibraryRule(std::ostream&, const char* name,
  93. const cmTarget &);
  94. virtual void OutputModuleLibraryRule(std::ostream&, const char* name,
  95. const cmTarget &);
  96. virtual void OutputStaticLibraryRule(std::ostream&, const char* name,
  97. const cmTarget &);
  98. virtual void OutputExecutableRule(std::ostream&, const char* name,
  99. const cmTarget &);
  100. virtual void OutputUtilityRule(std::ostream&, const char* name,
  101. const cmTarget &);
  102. virtual void OutputTargets(std::ostream&);
  103. virtual void OutputSubDirectoryRules(std::ostream&);
  104. virtual void OutputDependLibs(std::ostream&);
  105. virtual void OutputLibDepend(std::ostream&, const char*);
  106. virtual void OutputExeDepend(std::ostream&, const char*);
  107. virtual void OutputCustomRules(std::ostream&);
  108. virtual void OutputMakeVariables(std::ostream&);
  109. virtual void OutputMakeRules(std::ostream&);
  110. virtual void OutputInstallRules(std::ostream&);
  111. virtual void OutputSourceObjectBuildRules(std::ostream& fout);
  112. virtual void OutputBuildObjectFromSource(std::ostream& fout,
  113. const char* shortName,
  114. const cmSourceFile& source,
  115. const char* extraCompileFlags,
  116. bool sharedTarget);
  117. virtual void BuildInSubDirectory(std::ostream& fout,
  118. const char* directory,
  119. const char* target1,
  120. const char* target2,
  121. bool silent = false);
  122. virtual void BuildInSubDirectoryWindows(std::ostream& fout,
  123. const char* directory,
  124. const char* target1,
  125. const char* target2,
  126. bool silent = false);
  127. virtual void OutputSubDirectoryVars(std::ostream& fout,
  128. const char* var,
  129. const char* target,
  130. const char* target1,
  131. const char* target2,
  132. const char* depend,
  133. const std::vector<std::string>&
  134. SubDirectories,
  135. bool silent = false);
  136. virtual void OutputMakeRule(std::ostream&,
  137. const char* comment,
  138. const char* target,
  139. const char* depends,
  140. const std::vector<std::string>& commands);
  141. virtual void OutputMakeRule(std::ostream&,
  142. const char* comment,
  143. const char* target,
  144. const std::vector<std::string>& depends,
  145. const std::vector<std::string>& commands);
  146. virtual void OutputMakeRule(std::ostream&,
  147. const char* comment,
  148. const char* target,
  149. const char* depends,
  150. const char* command,
  151. const char* command2 = 0,
  152. const char* command3 = 0,
  153. const char* command4 = 0);
  154. virtual void OutputBuildTargetInDirWindows(std::ostream& fout,
  155. const char* path,
  156. const char* library,
  157. const char* fullpath,
  158. const char* outputPath);
  159. virtual void OutputBuildTargetInDir(std::ostream& fout,
  160. const char* path,
  161. const char* library,
  162. const char* fullpath,
  163. const char* outputPath);
  164. ///! return true if the two paths are the same
  165. virtual bool SamePath(const char* path1, const char* path2);
  166. virtual std::string GetOutputExtension(const char* sourceExtension);
  167. std::string CreateTargetRules(const cmTarget &target,
  168. const char* targetName);
  169. virtual std::string CreateMakeVariable(const char* s, const char* s2);
  170. ///! if the OS is case insensitive then return a lower case of the path.
  171. virtual std::string LowerCasePath(const char* path);
  172. ///! for existing files convert to output path and short path if spaces
  173. std::string ConvertToOutputForExisting(const char*);
  174. /** Get the full name of the target's file, without path. */
  175. std::string GetFullTargetName(const char* n, const cmTarget& t);
  176. protected:
  177. int m_MakefileVariableSize;
  178. std::map<cmStdString, cmStdString> m_MakeVariableMap;
  179. std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
  180. std::string m_IncludeDirective;
  181. std::string m_MakeSilentFlag;
  182. std::string m_ExecutableOutputPath;
  183. std::string m_LibraryOutputPath;
  184. bool m_WindowsShell;
  185. private:
  186. };
  187. #endif