cmLocalUnixMakefileGenerator.h 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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. ///! If ignore lib prefix is true, then do not strip lib from the name of a library.
  65. void SetIgnoreLibPrefix(bool s) { m_IgnoreLibPrefix = s; }
  66. protected:
  67. void AddDependenciesToSourceFile(cmDependInformation const*info,
  68. cmSourceFile *i,
  69. std::set<cmDependInformation const*> *visited);
  70. virtual const char* GetSafeDefinition(const char*);
  71. virtual void ProcessDepends(const cmMakeDepend &md);
  72. virtual void OutputMakefile(const char* file, bool withDepends);
  73. virtual void OutputTargetRules(std::ostream& fout);
  74. virtual void OutputLinkLibraries(std::ostream&, const char* name, const cmTarget &);
  75. void OutputLibraryRule(std::ostream& fout,
  76. const char* name,
  77. const cmTarget &t,
  78. const char* prefix,
  79. const char* suffix,
  80. const char* createRule,
  81. const char* comment,
  82. const char* linkFlags
  83. );
  84. void ExpandRuleVariables(std::string& string,
  85. const char* objects=0,
  86. const char* target=0,
  87. const char* linkLibs=0,
  88. const char* source=0,
  89. const char* object =0,
  90. const char* flags = 0,
  91. const char* objectsquoted = 0,
  92. const char* targetBase = 0,
  93. const char* linkFlags = 0);
  94. virtual void OutputSharedLibraryRule(std::ostream&, const char* name,
  95. const cmTarget &);
  96. virtual void OutputModuleLibraryRule(std::ostream&, const char* name,
  97. const cmTarget &);
  98. virtual void OutputStaticLibraryRule(std::ostream&, const char* name,
  99. const cmTarget &);
  100. virtual void OutputExecutableRule(std::ostream&, const char* name,
  101. const cmTarget &);
  102. virtual void OutputUtilityRule(std::ostream&, const char* name,
  103. const cmTarget &);
  104. virtual void OutputTargets(std::ostream&);
  105. virtual void OutputSubDirectoryRules(std::ostream&);
  106. virtual void OutputDependLibs(std::ostream&);
  107. virtual void OutputLibDepend(std::ostream&, const char*);
  108. virtual void OutputExeDepend(std::ostream&, const char*);
  109. virtual void OutputCustomRules(std::ostream&);
  110. virtual void OutputMakeVariables(std::ostream&);
  111. virtual void OutputMakeRules(std::ostream&);
  112. virtual void OutputInstallRules(std::ostream&);
  113. virtual void OutputSourceObjectBuildRules(std::ostream& fout);
  114. virtual void OutputBuildObjectFromSource(std::ostream& fout,
  115. const char* shortName,
  116. const cmSourceFile& source,
  117. const char* extraCompileFlags,
  118. bool sharedTarget);
  119. virtual void BuildInSubDirectory(std::ostream& fout,
  120. const char* directory,
  121. const char* target1,
  122. const char* target2,
  123. bool silent = false);
  124. virtual void BuildInSubDirectoryWindows(std::ostream& fout,
  125. const char* directory,
  126. const char* target1,
  127. const char* target2,
  128. bool silent = false);
  129. virtual void OutputSubDirectoryVars(std::ostream& fout,
  130. const char* var,
  131. const char* target,
  132. const char* target1,
  133. const char* target2,
  134. const char* depend,
  135. const std::vector<std::string>&
  136. SubDirectories,
  137. bool silent = false);
  138. virtual void OutputMakeRule(std::ostream&,
  139. const char* comment,
  140. const char* target,
  141. const char* depends,
  142. const std::vector<std::string>& commands);
  143. virtual void OutputMakeRule(std::ostream&,
  144. const char* comment,
  145. const char* target,
  146. const std::vector<std::string>& depends,
  147. const std::vector<std::string>& commands);
  148. virtual void OutputMakeRule(std::ostream&,
  149. const char* comment,
  150. const char* target,
  151. const char* depends,
  152. const char* command,
  153. const char* command2 = 0,
  154. const char* command3 = 0,
  155. const char* command4 = 0);
  156. virtual void OutputBuildTargetInDirWindows(std::ostream& fout,
  157. const char* path,
  158. const char* library,
  159. const char* fullpath,
  160. const char* outputPath);
  161. virtual void OutputBuildTargetInDir(std::ostream& fout,
  162. const char* path,
  163. const char* library,
  164. const char* fullpath,
  165. const char* outputPath);
  166. ///! return true if the two paths are the same
  167. virtual bool SamePath(const char* path1, const char* path2);
  168. virtual std::string GetOutputExtension(const char* sourceExtension);
  169. std::string CreatePreBuildRules(const cmTarget &target,
  170. const char* targetName);
  171. std::string CreatePreLinkRules(const cmTarget &target,
  172. const char* targetName);
  173. std::string CreatePostBuildRules(const cmTarget &target,
  174. const char* targetName);
  175. virtual std::string CreateMakeVariable(const char* s, const char* s2);
  176. ///! if the OS is case insensitive then return a lower case of the path.
  177. virtual std::string LowerCasePath(const char* path);
  178. ///! for existing files convert to output path and short path if spaces
  179. std::string ConvertToOutputForExisting(const char*);
  180. /** Get the full name of the target's file, without path. */
  181. std::string GetFullTargetName(const char* n, const cmTarget& t);
  182. protected:
  183. int m_MakefileVariableSize;
  184. std::map<cmStdString, cmStdString> m_MakeVariableMap;
  185. std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
  186. bool m_IgnoreLibPrefix;
  187. std::string m_IncludeDirective;
  188. std::string m_MakeSilentFlag;
  189. std::string m_ExecutableOutputPath;
  190. std::string m_LibraryOutputPath;
  191. bool m_WindowsShell;
  192. private:
  193. };
  194. #endif