cmLocalUnixMakefileGenerator.h 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. /**
  67. * If true, then explicitly pass MAKEFLAGS on the make all target for makes
  68. * that do not use environment variables.
  69. *
  70. */
  71. void SetPassMakeflags(bool s){m_PassMakeflags = s;}
  72. protected:
  73. virtual void ConfigureOutputPaths();
  74. void AddDependenciesToSourceFile(cmDependInformation const*info,
  75. cmSourceFile *i,
  76. std::set<cmDependInformation const*> *visited);
  77. virtual void ProcessDepends(const cmMakeDepend &md);
  78. virtual void OutputMakefile(const char* file, bool withDepends);
  79. virtual void OutputTargetRules(std::ostream& fout);
  80. void OutputLibraryRule(std::ostream& fout,
  81. const char* name,
  82. const cmTarget &t,
  83. const char* createRule,
  84. const char* comment,
  85. const char* linkFlags
  86. );
  87. virtual void OutputSharedLibraryRule(std::ostream&, const char* name,
  88. const cmTarget &);
  89. virtual void OutputModuleLibraryRule(std::ostream&, const char* name,
  90. const cmTarget &);
  91. virtual void OutputStaticLibraryRule(std::ostream&, const char* name,
  92. const cmTarget &);
  93. virtual void OutputExecutableRule(std::ostream&, const char* name,
  94. const cmTarget &);
  95. virtual void OutputUtilityRule(std::ostream&, const char* name,
  96. const cmTarget &);
  97. virtual void OutputTargets(std::ostream&);
  98. virtual void OutputSubDirectoryRules(std::ostream&);
  99. virtual void OutputDependLibs(std::ostream&);
  100. virtual void OutputLibDepend(std::ostream&, const char*);
  101. virtual void OutputExeDepend(std::ostream&, const char*);
  102. virtual void OutputCustomRules(std::ostream&);
  103. virtual void OutputMakeVariables(std::ostream&);
  104. virtual void OutputMakeRules(std::ostream&);
  105. virtual void OutputSourceObjectBuildRules(std::ostream& fout);
  106. virtual void OutputBuildObjectFromSource(std::ostream& fout,
  107. const char* shortName,
  108. const cmSourceFile& source,
  109. const char* extraCompileFlags,
  110. bool sharedTarget);
  111. virtual void BuildInSubDirectory(std::ostream& fout,
  112. const char* directory,
  113. const char* target1,
  114. const char* target2,
  115. bool silent = false);
  116. virtual void BuildInSubDirectoryWindows(std::ostream& fout,
  117. const char* directory,
  118. const char* target1,
  119. const char* target2,
  120. bool silent = false);
  121. ///! order == 0, then all subdirs are output, 1 = post order, 2 = preorder
  122. virtual void OutputSubDirectoryVars(std::ostream& fout,
  123. const char* var,
  124. const char* target,
  125. const char* target1,
  126. const char* target2,
  127. const char* depend,
  128. const std::map<std::string,
  129. cmSubDirectory>& SubDirectories,
  130. bool silent = false, int order = 0);
  131. virtual void OutputMakeRule(std::ostream&,
  132. const char* comment,
  133. const char* target,
  134. const char* depends,
  135. const std::vector<std::string>& commands);
  136. virtual void OutputMakeRule(std::ostream&,
  137. const char* comment,
  138. const char* target,
  139. const std::vector<std::string>& depends,
  140. const char* command);
  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. virtual void OutputBuildTargetInDir(std::ostream& fout,
  159. const char* path,
  160. const char* library,
  161. const char* fullpath);
  162. ///! return true if the two paths are the same
  163. virtual bool SamePath(const char* path1, const char* path2);
  164. std::string CreatePreBuildRules(const cmTarget &target,
  165. const char* targetName);
  166. std::string CreatePreLinkRules(const cmTarget &target,
  167. const char* targetName);
  168. std::string CreatePostBuildRules(const cmTarget &target,
  169. const char* targetName);
  170. virtual std::string CreateMakeVariable(const char* s, const char* s2);
  171. ///! if the OS is case insensitive then return a lower case of the path.
  172. virtual std::string LowerCasePath(const char* path);
  173. /** Convert path to a format vaild for the left or right side of a
  174. target: dependencies line in a makefile. */
  175. virtual std::string ConvertToMakeTarget(const char*);
  176. /** Get the base name of the target's file, without path or extension. */
  177. std::string GetBaseTargetName(const char* n, const cmTarget& t);
  178. /** Get the names associated with a library target. */
  179. void GetLibraryNames(const char* n, const cmTarget& t,
  180. std::string& name,
  181. std::string& soName,
  182. std::string& realName,
  183. std::string& baseName);
  184. /** Output an echo command to the Makefile */
  185. void OutputEcho(std::ostream& fout, const char *msg);
  186. /**
  187. * Convert source file name to a safe object file name. Safe here means that
  188. * it will not clash with compilers or linkers.
  189. */
  190. std::string& CreateSafeUniqueObjectFileName(const char* sin);
  191. protected:
  192. int m_MakefileVariableSize;
  193. std::map<cmStdString, cmStdString> m_MakeVariableMap;
  194. std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
  195. std::map<cmStdString, cmStdString> m_UniqueObjectNamesMap;
  196. std::string m_IncludeDirective;
  197. std::string m_MakeSilentFlag;
  198. std::string m_ExecutableOutputPath;
  199. std::string m_LibraryOutputPath;
  200. bool m_PassMakeflags;
  201. private:
  202. };
  203. #endif