cmLocalUnixMakefileGenerator3.cxx 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920
  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. #include "cmLocalUnixMakefileGenerator3.h"
  14. #include "cmDepends.h"
  15. #include "cmGeneratedFileStream.h"
  16. #include "cmGlobalUnixMakefileGenerator3.h"
  17. #include "cmMakefile.h"
  18. #include "cmMakefileTargetGenerator.h"
  19. #include "cmSourceFile.h"
  20. #include "cmake.h"
  21. #include "cmVersion.h"
  22. // Include dependency scanners for supported languages. Only the
  23. // C/C++ scanner is needed for bootstrapping CMake.
  24. #include "cmDependsC.h"
  25. #ifdef CMAKE_BUILD_WITH_CMAKE
  26. # include "cmDependsFortran.h"
  27. # include "cmDependsJava.h"
  28. #endif
  29. #include <memory> // auto_ptr
  30. #include <queue>
  31. //----------------------------------------------------------------------------
  32. cmLocalUnixMakefileGenerator3::cmLocalUnixMakefileGenerator3()
  33. {
  34. this->SilentNoColon = false;
  35. this->WindowsShell = false;
  36. this->IncludeDirective = "include";
  37. this->MakefileVariableSize = 0;
  38. this->IgnoreLibPrefix = false;
  39. this->PassMakeflags = false;
  40. this->DefineWindowsNULL = false;
  41. this->UnixCD = true;
  42. this->ForceVerboseMakefiles=false;
  43. this->ColorMakefile = false;
  44. this->SkipPreprocessedSourceRules = false;
  45. this->SkipAssemblySourceRules = false;
  46. this->NativeEchoCommand = "@echo ";
  47. this->NativeEchoWindows = true;
  48. }
  49. //----------------------------------------------------------------------------
  50. cmLocalUnixMakefileGenerator3::~cmLocalUnixMakefileGenerator3()
  51. {
  52. }
  53. //----------------------------------------------------------------------------
  54. void cmLocalUnixMakefileGenerator3::Configure()
  55. {
  56. // Include the rule file for each object.
  57. this->HomeRelativeOutputPath =
  58. cmSystemTools::RelativePath(this->Makefile->GetHomeOutputDirectory(),
  59. this->Makefile->GetStartOutputDirectory());
  60. if (this->HomeRelativeOutputPath.size())
  61. {
  62. this->HomeRelativeOutputPath += "/";
  63. }
  64. this->cmLocalGenerator::Configure();
  65. }
  66. //----------------------------------------------------------------------------
  67. void cmLocalUnixMakefileGenerator3::Generate()
  68. {
  69. // Setup our configuration variables for this directory.
  70. this->ConfigureOutputPaths();
  71. // Record whether some options are enabled to avoid checking many
  72. // times later.
  73. this->ColorMakefile = this->Makefile->IsOn("CMAKE_COLOR_MAKEFILE");
  74. this->SkipPreprocessedSourceRules =
  75. this->Makefile->IsOn("CMAKE_SKIP_PREPROCESSED_SOURCE_RULES");
  76. this->SkipAssemblySourceRules =
  77. this->Makefile->IsOn("CMAKE_SKIP_ASSEMBLY_SOURCE_RULES");
  78. // Generate the rule files for each target.
  79. cmTargets& targets = this->Makefile->GetTargets();
  80. std::string empty;
  81. for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
  82. {
  83. cmMakefileTargetGenerator *tg =
  84. cmMakefileTargetGenerator::New(this, t->first, &(t->second));
  85. if (tg)
  86. {
  87. this->TargetGenerators.push_back(tg);
  88. t->second.TraceVSDependencies(empty, this->Makefile);
  89. tg->WriteRuleFiles();
  90. }
  91. }
  92. // write the local Makefile
  93. this->WriteLocalMakefile();
  94. // Write the cmake file with information for this directory.
  95. this->WriteDirectoryInformationFile();
  96. }
  97. //----------------------------------------------------------------------------
  98. // return info about progress actions
  99. unsigned long cmLocalUnixMakefileGenerator3::GetNumberOfProgressActions()
  100. {
  101. unsigned long result = 0;
  102. for (std::vector<cmMakefileTargetGenerator *>::iterator mtgIter =
  103. this->TargetGenerators.begin();
  104. mtgIter != this->TargetGenerators.end(); ++mtgIter)
  105. {
  106. result += (*mtgIter)->GetNumberOfProgressActions();
  107. }
  108. return result;
  109. }
  110. //----------------------------------------------------------------------------
  111. // return info about progress actions
  112. unsigned long cmLocalUnixMakefileGenerator3
  113. ::GetNumberOfProgressActionsForTarget(const char *name)
  114. {
  115. for (std::vector<cmMakefileTargetGenerator *>::iterator mtgIter =
  116. this->TargetGenerators.begin();
  117. mtgIter != this->TargetGenerators.end(); ++mtgIter)
  118. {
  119. if (!strcmp(name,(*mtgIter)->GetTargetName()))
  120. {
  121. return (*mtgIter)->GetNumberOfProgressActions();
  122. }
  123. }
  124. return 0;
  125. }
  126. //----------------------------------------------------------------------------
  127. // writes the progreess variables and also closes out the targets
  128. void cmLocalUnixMakefileGenerator3
  129. ::WriteProgressVariables(unsigned long total,
  130. unsigned long &current)
  131. {
  132. // delete the makefile target generator objects
  133. for (std::vector<cmMakefileTargetGenerator *>::iterator mtgIter =
  134. this->TargetGenerators.begin();
  135. mtgIter != this->TargetGenerators.end(); ++mtgIter)
  136. {
  137. (*mtgIter)->WriteProgressVariables(total,current);
  138. delete *mtgIter;
  139. }
  140. this->TargetGenerators.clear();
  141. }
  142. void cmLocalUnixMakefileGenerator3::WriteAllProgressVariable()
  143. {
  144. // write the top level progress for the all target
  145. std::string progressFile = cmake::GetCMakeFilesDirectory();
  146. progressFile += "/progress.make";
  147. std::string progressFileNameFull =
  148. this->ConvertToFullPath(progressFile.c_str());
  149. cmGeneratedFileStream ruleFileStream(progressFileNameFull.c_str());
  150. if(!ruleFileStream)
  151. {
  152. return;
  153. }
  154. cmGlobalUnixMakefileGenerator3 *gg =
  155. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  156. ruleFileStream << "CMAKE_ALL_PROGRESS = "
  157. << gg->GetNumberOfProgressActionsInAll(this) << "\n";
  158. }
  159. //----------------------------------------------------------------------------
  160. void cmLocalUnixMakefileGenerator3::ConfigureOutputPaths()
  161. {
  162. // Format the library and executable output paths.
  163. if(const char* libOut =
  164. this->Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
  165. {
  166. this->LibraryOutputPath = libOut;
  167. this->FormatOutputPath(this->LibraryOutputPath, "LIBRARY");
  168. }
  169. if(const char* exeOut =
  170. this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
  171. {
  172. this->ExecutableOutputPath = exeOut;
  173. this->FormatOutputPath(this->ExecutableOutputPath, "EXECUTABLE");
  174. }
  175. // Store the configuration name that will be generated.
  176. if(const char* config = this->Makefile->GetDefinition("CMAKE_BUILD_TYPE"))
  177. {
  178. // Use the build type given by the user.
  179. this->ConfigurationName = config;
  180. }
  181. else
  182. {
  183. // No configuration type given.
  184. this->ConfigurationName = "";
  185. }
  186. }
  187. //----------------------------------------------------------------------------
  188. void cmLocalUnixMakefileGenerator3::FormatOutputPath(std::string& path,
  189. const char* name)
  190. {
  191. if(!path.empty())
  192. {
  193. // Convert the output path to a full path in case it is
  194. // specified as a relative path. Treat a relative path as
  195. // relative to the current output directory for this makefile.
  196. path = cmSystemTools::CollapseFullPath
  197. (path.c_str(), this->Makefile->GetStartOutputDirectory());
  198. // Add a trailing slash for easy appending later.
  199. if(path.empty() || path[path.size()-1] != '/')
  200. {
  201. path += "/";
  202. }
  203. // Make sure the output path exists on disk.
  204. if(!cmSystemTools::MakeDirectory(path.c_str()))
  205. {
  206. cmSystemTools::Error("Error failed to create ",
  207. name, "_OUTPUT_PATH directory:", path.c_str());
  208. }
  209. // Add this as a link directory automatically.
  210. this->Makefile->AddLinkDirectory(path.c_str());
  211. }
  212. }
  213. //----------------------------------------------------------------------------
  214. void cmLocalUnixMakefileGenerator3::WriteLocalMakefile()
  215. {
  216. // generate the includes
  217. std::string ruleFileName = "Makefile";
  218. // Open the rule file. This should be copy-if-different because the
  219. // rules may depend on this file itself.
  220. std::string ruleFileNameFull = this->ConvertToFullPath(ruleFileName);
  221. cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
  222. if(!ruleFileStream)
  223. {
  224. return;
  225. }
  226. // always write the top makefile
  227. if (this->Parent)
  228. {
  229. ruleFileStream.SetCopyIfDifferent(true);
  230. }
  231. // write the all rules
  232. this->WriteLocalAllRules(ruleFileStream);
  233. // only write local targets unless at the top Keep track of targets already
  234. // listed.
  235. std::set<cmStdString> emittedTargets;
  236. if (this->Parent)
  237. {
  238. // write our targets, and while doing it collect up the object
  239. // file rules
  240. this->WriteLocalMakefileTargets(ruleFileStream,emittedTargets);
  241. }
  242. else
  243. {
  244. cmGlobalUnixMakefileGenerator3 *gg =
  245. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  246. gg->WriteConvenienceRules(ruleFileStream,emittedTargets);
  247. }
  248. bool do_preprocess_rules =
  249. this->GetCreatePreprocessedSourceRules();
  250. bool do_assembly_rules =
  251. this->GetCreateAssemblySourceRules();
  252. // now write out the object rules
  253. // for each object file name
  254. for (std::map<cmStdString, LocalObjectInfo>::iterator lo =
  255. this->LocalObjectFiles.begin();
  256. lo != this->LocalObjectFiles.end(); ++lo)
  257. {
  258. // Add a convenience rule for building the object file.
  259. this->WriteObjectConvenienceRule(ruleFileStream,
  260. "target to build an object file",
  261. lo->first.c_str(), lo->second);
  262. // Check whether preprocessing and assembly rules make sense.
  263. // They make sense only for C and C++ sources.
  264. bool lang_is_c_or_cxx = false;
  265. for(std::vector<LocalObjectEntry>::const_iterator ei =
  266. lo->second.begin(); ei != lo->second.end(); ++ei)
  267. {
  268. if(ei->Language == "C" || ei->Language == "CXX")
  269. {
  270. lang_is_c_or_cxx = true;
  271. }
  272. }
  273. // Add convenience rules for preprocessed and assembly files.
  274. if(lang_is_c_or_cxx && (do_preprocess_rules || do_assembly_rules))
  275. {
  276. std::string::size_type dot_pos = lo->first.rfind(".");
  277. std::string base = lo->first.substr(0, dot_pos);
  278. if(do_preprocess_rules)
  279. {
  280. this->WriteObjectConvenienceRule(
  281. ruleFileStream, "target to preprocess a source file",
  282. (base + ".i").c_str(), lo->second);
  283. }
  284. if(do_assembly_rules)
  285. {
  286. this->WriteObjectConvenienceRule(
  287. ruleFileStream, "target to generate assembly for a file",
  288. (base + ".s").c_str(), lo->second);
  289. }
  290. }
  291. }
  292. // add a help target as long as there isn;t a real target named help
  293. if(emittedTargets.insert("help").second)
  294. {
  295. cmGlobalUnixMakefileGenerator3 *gg =
  296. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  297. gg->WriteHelpRule(ruleFileStream,this);
  298. }
  299. this->WriteSpecialTargetsBottom(ruleFileStream);
  300. }
  301. //----------------------------------------------------------------------------
  302. void
  303. cmLocalUnixMakefileGenerator3
  304. ::WriteObjectConvenienceRule(std::ostream& ruleFileStream,
  305. const char* comment, const char* output,
  306. LocalObjectInfo const& targets)
  307. {
  308. // Recursively make the rule for each target using the object file.
  309. std::vector<std::string> commands;
  310. for(std::vector<LocalObjectEntry>::const_iterator t = targets.begin();
  311. t != targets.end(); ++t)
  312. {
  313. std::string tgtMakefileName =
  314. this->GetRelativeTargetDirectory(*(t->Target));
  315. std::string targetName = tgtMakefileName;
  316. tgtMakefileName += "/build.make";
  317. targetName += "/";
  318. targetName += output;
  319. commands.push_back(
  320. this->GetRecursiveMakeCall(tgtMakefileName.c_str(), targetName.c_str())
  321. );
  322. this->CreateCDCommand(commands,
  323. this->Makefile->GetHomeOutputDirectory(),
  324. this->Makefile->GetStartOutputDirectory());
  325. }
  326. // Write the rule to the makefile.
  327. std::vector<std::string> no_depends;
  328. this->WriteMakeRule(ruleFileStream, comment,
  329. output, no_depends, commands, true, true);
  330. }
  331. //----------------------------------------------------------------------------
  332. void cmLocalUnixMakefileGenerator3
  333. ::WriteLocalMakefileTargets(std::ostream& ruleFileStream,
  334. std::set<cmStdString> &emitted)
  335. {
  336. std::vector<std::string> depends;
  337. std::vector<std::string> commands;
  338. // for each target we just provide a rule to cd up to the top and do a make
  339. // on the target
  340. cmTargets& targets = this->Makefile->GetTargets();
  341. std::string localName;
  342. for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
  343. {
  344. if((t->second.GetType() == cmTarget::EXECUTABLE) ||
  345. (t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
  346. (t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
  347. (t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
  348. (t->second.GetType() == cmTarget::UTILITY))
  349. {
  350. emitted.insert(t->second.GetName());
  351. // for subdirs add a rule to build this specific target by name.
  352. localName = this->GetRelativeTargetDirectory(t->second);
  353. localName += "/rule";
  354. commands.clear();
  355. depends.clear();
  356. // Build the target for this pass.
  357. std::string tmp = cmake::GetCMakeFilesDirectoryPostSlash();
  358. tmp += "Makefile2";
  359. commands.push_back(this->GetRecursiveMakeCall
  360. (tmp.c_str(),localName.c_str()));
  361. this->CreateCDCommand(commands,
  362. this->Makefile->GetHomeOutputDirectory(),
  363. this->Makefile->GetStartOutputDirectory());
  364. this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
  365. localName.c_str(), depends, commands, true);
  366. // Add a target with the canonical name (no prefix, suffix or path).
  367. if(localName != t->second.GetName())
  368. {
  369. commands.clear();
  370. depends.push_back(localName);
  371. this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
  372. t->second.GetName(), depends, commands, true);
  373. }
  374. // Add a fast rule to build the target
  375. std::string makefileName = this->GetRelativeTargetDirectory(t->second);
  376. makefileName += "/build.make";
  377. // make sure the makefile name is suitable for a makefile
  378. std::string makeTargetName =
  379. this->GetRelativeTargetDirectory(t->second);
  380. makeTargetName += "/build";
  381. localName = t->second.GetName();
  382. localName += "/fast";
  383. depends.clear();
  384. commands.clear();
  385. commands.push_back(this->GetRecursiveMakeCall
  386. (makefileName.c_str(), makeTargetName.c_str()));
  387. this->CreateCDCommand(commands,
  388. this->Makefile->GetHomeOutputDirectory(),
  389. this->Makefile->GetStartOutputDirectory());
  390. this->WriteMakeRule(ruleFileStream, "fast build rule for target.",
  391. localName.c_str(), depends, commands, true);
  392. }
  393. }
  394. }
  395. //----------------------------------------------------------------------------
  396. void cmLocalUnixMakefileGenerator3::WriteDirectoryInformationFile()
  397. {
  398. std::string infoFileName = this->Makefile->GetStartOutputDirectory();
  399. infoFileName += cmake::GetCMakeFilesDirectory();
  400. infoFileName += "/CMakeDirectoryInformation.cmake";
  401. // Open the output file.
  402. cmGeneratedFileStream infoFileStream(infoFileName.c_str());
  403. if(!infoFileStream)
  404. {
  405. return;
  406. }
  407. // Write the do not edit header.
  408. this->WriteDisclaimer(infoFileStream);
  409. // Tell the dependency scanner to use unix paths if necessary.
  410. if(cmSystemTools::GetForceUnixPaths())
  411. {
  412. infoFileStream
  413. << "# Force unix paths in dependencies.\n"
  414. << "SET(CMAKE_FORCE_UNIX_PATHS 1)\n"
  415. << "\n";
  416. }
  417. // Store the include search path for this directory.
  418. infoFileStream
  419. << "# The C and CXX include file search paths:\n";
  420. infoFileStream
  421. << "SET(CMAKE_C_INCLUDE_PATH\n";
  422. std::vector<std::string> includeDirs;
  423. this->GetIncludeDirectories(includeDirs, false);
  424. for(std::vector<std::string>::iterator i = includeDirs.begin();
  425. i != includeDirs.end(); ++i)
  426. {
  427. infoFileStream
  428. << " \"" << this->Convert(i->c_str(),HOME_OUTPUT).c_str() << "\"\n";
  429. }
  430. infoFileStream
  431. << " )\n";
  432. infoFileStream
  433. << "SET(CMAKE_CXX_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH})\n";
  434. // Store the include regular expressions for this directory.
  435. infoFileStream
  436. << "\n"
  437. << "# The C and CXX include file regular expressions for "
  438. << "this directory.\n";
  439. infoFileStream
  440. << "SET(CMAKE_C_INCLUDE_REGEX_SCAN ";
  441. this->WriteCMakeArgument(infoFileStream,
  442. this->Makefile->GetIncludeRegularExpression());
  443. infoFileStream
  444. << ")\n";
  445. infoFileStream
  446. << "SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN ";
  447. this->WriteCMakeArgument(infoFileStream,
  448. this->Makefile->GetComplainRegularExpression());
  449. infoFileStream
  450. << ")\n";
  451. infoFileStream
  452. << "SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})\n";
  453. infoFileStream
  454. << "SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN "
  455. "${CMAKE_C_INCLUDE_REGEX_COMPLAIN})\n";
  456. }
  457. //----------------------------------------------------------------------------
  458. std::string
  459. cmLocalUnixMakefileGenerator3
  460. ::ConvertToFullPath(const std::string& localPath)
  461. {
  462. std::string dir = this->Makefile->GetStartOutputDirectory();
  463. dir += "/";
  464. dir += localPath;
  465. return dir;
  466. }
  467. const std::string &cmLocalUnixMakefileGenerator3::GetHomeRelativeOutputPath()
  468. {
  469. return this->HomeRelativeOutputPath;
  470. }
  471. //----------------------------------------------------------------------------
  472. void
  473. cmLocalUnixMakefileGenerator3
  474. ::WriteMakeRule(std::ostream& os,
  475. const char* comment,
  476. const char* target,
  477. const std::vector<std::string>& depends,
  478. const std::vector<std::string>& commands,
  479. bool symbolic,
  480. bool in_help)
  481. {
  482. // Make sure there is a target.
  483. if(!target || !*target)
  484. {
  485. cmSystemTools::Error("No target for WriteMakeRule! called with comment: ",
  486. comment);
  487. return;
  488. }
  489. std::string replace;
  490. // Write the comment describing the rule in the makefile.
  491. if(comment)
  492. {
  493. replace = comment;
  494. std::string::size_type lpos = 0;
  495. std::string::size_type rpos;
  496. while((rpos = replace.find('\n', lpos)) != std::string::npos)
  497. {
  498. os << "# " << replace.substr(lpos, rpos-lpos) << "\n";
  499. lpos = rpos+1;
  500. }
  501. os << "# " << replace.substr(lpos) << "\n";
  502. }
  503. // Construct the left hand side of the rule.
  504. replace = target;
  505. std::string tgt = this->Convert(replace.c_str(),HOME_OUTPUT,MAKEFILE);
  506. const char* space = "";
  507. if(tgt.size() == 1)
  508. {
  509. // Add a space before the ":" to avoid drive letter confusion on
  510. // Windows.
  511. space = " ";
  512. }
  513. // Mark the rule as symbolic if requested.
  514. if(symbolic)
  515. {
  516. if(const char* sym =
  517. this->Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE"))
  518. {
  519. os << tgt.c_str() << space << ": " << sym << "\n";
  520. }
  521. }
  522. // Write the rule.
  523. if(depends.empty())
  524. {
  525. // No dependencies. The commands will always run.
  526. os << tgt.c_str() << space << ":\n";
  527. }
  528. else
  529. {
  530. // Split dependencies into multiple rule lines. This allows for
  531. // very long dependency lists even on older make implementations.
  532. for(std::vector<std::string>::const_iterator dep = depends.begin();
  533. dep != depends.end(); ++dep)
  534. {
  535. replace = *dep;
  536. replace = this->Convert(replace.c_str(),HOME_OUTPUT,MAKEFILE);
  537. os << tgt.c_str() << space << ": " << replace.c_str() << "\n";
  538. }
  539. }
  540. // Write the list of commands.
  541. for(std::vector<std::string>::const_iterator i = commands.begin();
  542. i != commands.end(); ++i)
  543. {
  544. replace = *i;
  545. os << "\t" << replace.c_str() << "\n";
  546. }
  547. os << "\n";
  548. // Add the output to the local help if requested.
  549. if(in_help)
  550. {
  551. this->LocalHelp.push_back(target);
  552. }
  553. }
  554. //----------------------------------------------------------------------------
  555. void
  556. cmLocalUnixMakefileGenerator3
  557. ::WriteMakeVariables(std::ostream& makefileStream)
  558. {
  559. this->WriteDivider(makefileStream);
  560. makefileStream
  561. << "# Set environment variables for the build.\n"
  562. << "\n";
  563. if(this->DefineWindowsNULL)
  564. {
  565. makefileStream
  566. << "!IF \"$(OS)\" == \"Windows_NT\"\n"
  567. << "NULL=\n"
  568. << "!ELSE\n"
  569. << "NULL=nul\n"
  570. << "!ENDIF\n";
  571. }
  572. if(this->WindowsShell)
  573. {
  574. makefileStream
  575. << "SHELL = cmd.exe\n"
  576. << "\n";
  577. }
  578. else
  579. {
  580. makefileStream
  581. << "# The shell in which to execute make rules.\n"
  582. << "SHELL = /bin/sh\n"
  583. << "\n";
  584. }
  585. std::string cmakecommand =
  586. this->Makefile->GetRequiredDefinition("CMAKE_COMMAND");
  587. makefileStream
  588. << "# The CMake executable.\n"
  589. << "CMAKE_COMMAND = "
  590. << this->Convert(cmakecommand.c_str(), FULL, SHELL).c_str()
  591. << "\n"
  592. << "\n";
  593. makefileStream
  594. << "# The command to remove a file.\n"
  595. << "RM = "
  596. << this->Convert(cmakecommand.c_str(),FULL,SHELL).c_str()
  597. << " -E remove -f\n"
  598. << "\n";
  599. if(this->Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))
  600. {
  601. makefileStream
  602. << "# The program to use to edit the cache.\n"
  603. << "CMAKE_EDIT_COMMAND = "
  604. << (this->ConvertToOutputForExisting(
  605. this->Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))) << "\n"
  606. << "\n";
  607. }
  608. makefileStream
  609. << "# The top-level source directory on which CMake was run.\n"
  610. << "CMAKE_SOURCE_DIR = "
  611. << this->Convert(this->Makefile->GetHomeDirectory(), FULL, SHELL)
  612. << "\n"
  613. << "\n";
  614. makefileStream
  615. << "# The top-level build directory on which CMake was run.\n"
  616. << "CMAKE_BINARY_DIR = "
  617. << this->Convert(this->Makefile->GetHomeOutputDirectory(), FULL, SHELL)
  618. << "\n"
  619. << "\n";
  620. }
  621. //----------------------------------------------------------------------------
  622. void
  623. cmLocalUnixMakefileGenerator3
  624. ::WriteSpecialTargetsTop(std::ostream& makefileStream)
  625. {
  626. this->WriteDivider(makefileStream);
  627. makefileStream
  628. << "# Special targets provided by cmake.\n"
  629. << "\n";
  630. std::vector<std::string> no_commands;
  631. std::vector<std::string> no_depends;
  632. // Special target to cleanup operation of make tool.
  633. // This should be the first target except for the default_target in
  634. // the interface Makefile.
  635. this->WriteMakeRule(
  636. makefileStream, "Disable implicit rules so canoncical targets will work.",
  637. ".SUFFIXES", no_depends, no_commands, false);
  638. // Add a fake suffix to keep HP happy. Must be max 32 chars for SGI make.
  639. std::vector<std::string> depends;
  640. depends.push_back(".hpux_make_needs_suffix_list");
  641. this->WriteMakeRule(makefileStream, 0,
  642. ".SUFFIXES", depends, no_commands, false);
  643. // Write special target to silence make output. This must be after
  644. // the default target in case VERBOSE is set (which changes the
  645. // name). The setting of CMAKE_VERBOSE_MAKEFILE to ON will cause a
  646. // "VERBOSE=1" to be added as a make variable which will change the
  647. // name of this special target. This gives a make-time choice to
  648. // the user.
  649. if((this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
  650. || (this->ForceVerboseMakefiles))
  651. {
  652. makefileStream
  653. << "# Produce verbose output by default.\n"
  654. << "VERBOSE = 1\n"
  655. << "\n";
  656. }
  657. if(this->SilentNoColon)
  658. {
  659. makefileStream << "$(VERBOSE).SILENT\n";
  660. }
  661. else
  662. {
  663. this->WriteMakeRule(makefileStream,
  664. "Suppress display of executed commands.",
  665. "$(VERBOSE).SILENT",
  666. no_depends,
  667. no_commands, false);
  668. }
  669. // Work-around for makes that drop rules that have no dependencies
  670. // or commands.
  671. cmGlobalUnixMakefileGenerator3* gg =
  672. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  673. std::string hack = gg->GetEmptyRuleHackDepends();
  674. if(!hack.empty())
  675. {
  676. no_depends.push_back(hack);
  677. }
  678. // Special symbolic target that never exists to force dependers to
  679. // run their rules.
  680. this->WriteMakeRule
  681. (makefileStream,
  682. "A target that is always out of date.",
  683. "cmake_force", no_depends, no_commands, true);
  684. // Variables for reference by other rules.
  685. this->WriteMakeVariables(makefileStream);
  686. }
  687. //----------------------------------------------------------------------------
  688. void cmLocalUnixMakefileGenerator3
  689. ::WriteSpecialTargetsBottom(std::ostream& makefileStream)
  690. {
  691. this->WriteDivider(makefileStream);
  692. makefileStream
  693. << "# Special targets to cleanup operation of make.\n"
  694. << "\n";
  695. // Write special "cmake_check_build_system" target to run cmake with
  696. // the --check-build-system flag.
  697. {
  698. // Build command to run CMake to check if anything needs regenerating.
  699. std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
  700. cmakefileName += "Makefile.cmake";
  701. std::string runRule =
  702. "$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
  703. runRule += " --check-build-system ";
  704. runRule += this->Convert(cmakefileName.c_str(),NONE,SHELL);
  705. runRule += " 0";
  706. std::vector<std::string> no_depends;
  707. std::vector<std::string> commands;
  708. commands.push_back(runRule);
  709. if(this->Parent)
  710. {
  711. this->CreateCDCommand(commands,
  712. this->Makefile->GetHomeOutputDirectory(),
  713. this->Makefile->GetStartOutputDirectory());
  714. }
  715. this->WriteMakeRule(makefileStream,
  716. "Special rule to run CMake to check the build system "
  717. "integrity.\n"
  718. "No rule that depends on this can have "
  719. "commands that come from listfiles\n"
  720. "because they might be regenerated.",
  721. "cmake_check_build_system",
  722. no_depends,
  723. commands, true);
  724. }
  725. }
  726. //----------------------------------------------------------------------------
  727. void
  728. cmLocalUnixMakefileGenerator3
  729. ::WriteConvenienceRule(std::ostream& ruleFileStream,
  730. const char* realTarget,
  731. const char* helpTarget)
  732. {
  733. // A rule is only needed if the names are different.
  734. if(strcmp(realTarget, helpTarget) != 0)
  735. {
  736. // The helper target depends on the real target.
  737. std::vector<std::string> depends;
  738. depends.push_back(realTarget);
  739. // There are no commands.
  740. std::vector<std::string> no_commands;
  741. // Write the rule.
  742. this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
  743. helpTarget, depends, no_commands, true);
  744. }
  745. }
  746. //----------------------------------------------------------------------------
  747. std::string
  748. cmLocalUnixMakefileGenerator3::GetRelativeTargetDirectory(cmTarget& target)
  749. {
  750. std::string dir = this->HomeRelativeOutputPath;
  751. dir += this->GetTargetDirectory(target);
  752. return this->Convert(dir.c_str(),NONE,UNCHANGED);
  753. }
  754. //----------------------------------------------------------------------------
  755. void
  756. cmLocalUnixMakefileGenerator3
  757. ::AppendRuleDepend(std::vector<std::string>& depends,
  758. const char* ruleFileName)
  759. {
  760. // Add a dependency on the rule file itself unless an option to skip
  761. // it is specifically enabled by the user or project.
  762. const char* nodep =
  763. this->Makefile->GetDefinition("CMAKE_SKIP_RULE_DEPENDENCY");
  764. if(!nodep || cmSystemTools::IsOff(nodep))
  765. {
  766. depends.push_back(ruleFileName);
  767. }
  768. }
  769. //----------------------------------------------------------------------------
  770. void
  771. cmLocalUnixMakefileGenerator3
  772. ::AppendCustomDepends(std::vector<std::string>& depends,
  773. const std::vector<cmCustomCommand>& ccs)
  774. {
  775. for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
  776. i != ccs.end(); ++i)
  777. {
  778. this->AppendCustomDepend(depends, *i);
  779. }
  780. }
  781. //----------------------------------------------------------------------------
  782. void
  783. cmLocalUnixMakefileGenerator3
  784. ::AppendCustomDepend(std::vector<std::string>& depends,
  785. const cmCustomCommand& cc)
  786. {
  787. for(std::vector<std::string>::const_iterator d = cc.GetDepends().begin();
  788. d != cc.GetDepends().end(); ++d)
  789. {
  790. // Lookup the real name of the dependency in case it is a CMake target.
  791. std::string dep = this->GetRealDependency
  792. (d->c_str(), this->ConfigurationName.c_str());
  793. depends.push_back(dep);
  794. }
  795. }
  796. //----------------------------------------------------------------------------
  797. void
  798. cmLocalUnixMakefileGenerator3
  799. ::AppendCustomCommands(std::vector<std::string>& commands,
  800. const std::vector<cmCustomCommand>& ccs)
  801. {
  802. for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
  803. i != ccs.end(); ++i)
  804. {
  805. this->AppendCustomCommand(commands, *i);
  806. }
  807. }
  808. //----------------------------------------------------------------------------
  809. void
  810. cmLocalUnixMakefileGenerator3
  811. ::AppendCustomCommand(std::vector<std::string>& commands,
  812. const cmCustomCommand& cc)
  813. {
  814. // if the command specified a working directory use it.
  815. const char* dir = this->Makefile->GetStartOutputDirectory();
  816. const char* workingDir = cc.GetWorkingDirectory();
  817. if(workingDir)
  818. {
  819. dir = workingDir;
  820. }
  821. bool escapeOldStyle = cc.GetEscapeOldStyle();
  822. bool escapeAllowMakeVars = cc.GetEscapeAllowMakeVars();
  823. // Add each command line to the set of commands.
  824. std::vector<std::string> commands1;
  825. for(cmCustomCommandLines::const_iterator cl = cc.GetCommandLines().begin();
  826. cl != cc.GetCommandLines().end(); ++cl)
  827. {
  828. // Build the command line in a single string.
  829. const cmCustomCommandLine& commandLine = *cl;
  830. std::string cmd = commandLine[0];
  831. if (cmd.size())
  832. {
  833. cmSystemTools::ReplaceString(cmd, "/./", "/");
  834. // Convert the command to a relative path only if the current
  835. // working directory will be the start-output directory.
  836. if(!workingDir)
  837. {
  838. cmd = this->Convert(cmd.c_str(),START_OUTPUT);
  839. }
  840. if(cmd.find("/") == cmd.npos &&
  841. commandLine[0].find("/") != cmd.npos)
  842. {
  843. // Add a leading "./" for executables in the current directory.
  844. cmd = "./" + cmd;
  845. }
  846. cmd = this->Convert(cmd.c_str(),NONE,SHELL);
  847. for(unsigned int j=1; j < commandLine.size(); ++j)
  848. {
  849. cmd += " ";
  850. if(escapeOldStyle)
  851. {
  852. cmd += this->EscapeForShellOldStyle(commandLine[j].c_str());
  853. }
  854. else
  855. {
  856. cmd += this->EscapeForShell(commandLine[j].c_str(),
  857. escapeAllowMakeVars);
  858. }
  859. }
  860. commands1.push_back(cmd);
  861. }
  862. }
  863. // Setup the proper working directory for the commands.
  864. this->CreateCDCommand(commands1, dir,
  865. this->Makefile->GetHomeOutputDirectory());
  866. // push back the custom commands
  867. commands.insert(commands.end(), commands1.begin(), commands1.end());
  868. }
  869. //----------------------------------------------------------------------------
  870. void
  871. cmLocalUnixMakefileGenerator3
  872. ::AppendCleanCommand(std::vector<std::string>& commands,
  873. const std::vector<std::string>& files,
  874. cmTarget& target, const char* filename)
  875. {
  876. if(!files.empty())
  877. {
  878. std::string cleanfile = this->Makefile->GetCurrentOutputDirectory();
  879. cleanfile += "/";
  880. cleanfile += this->GetTargetDirectory(target);
  881. cleanfile += "/cmake_clean";
  882. if(filename)
  883. {
  884. cleanfile += "_";
  885. cleanfile += filename;
  886. }
  887. cleanfile += ".cmake";
  888. std::string cleanfilePath = this->Convert(cleanfile.c_str(), FULL);
  889. std::ofstream fout(cleanfilePath.c_str());
  890. if(!fout)
  891. {
  892. cmSystemTools::Error("Could not create ", cleanfilePath.c_str());
  893. }
  894. fout << "FILE(REMOVE\n";
  895. std::string remove = "$(CMAKE_COMMAND) -P ";
  896. remove += this->Convert(cleanfile.c_str(), START_OUTPUT, SHELL);
  897. for(std::vector<std::string>::const_iterator f = files.begin();
  898. f != files.end(); ++f)
  899. {
  900. fout << "\"" << this->Convert(f->c_str(),START_OUTPUT,UNCHANGED)
  901. << "\"\n";
  902. }
  903. fout << ")\n";
  904. commands.push_back(remove);
  905. }
  906. }
  907. //----------------------------------------------------------------------------
  908. void
  909. cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands,
  910. const char* text,
  911. EchoColor color)
  912. {
  913. // Choose the color for the text.
  914. std::string color_name;
  915. #ifdef CMAKE_BUILD_WITH_CMAKE
  916. if(this->GlobalGenerator->GetToolSupportsColor() && this->ColorMakefile)
  917. {
  918. // See cmake::ExecuteEchoColor in cmake.cxx for these options.
  919. // This color set is readable on both black and white backgrounds.
  920. switch(color)
  921. {
  922. case EchoNormal:
  923. break;
  924. case EchoDepend:
  925. color_name = "--magenta --bold ";
  926. break;
  927. case EchoBuild:
  928. color_name = "--green ";
  929. break;
  930. case EchoLink:
  931. color_name = "--red --bold ";
  932. break;
  933. case EchoGenerate:
  934. color_name = "--blue --bold ";
  935. break;
  936. case EchoGlobal:
  937. color_name = "--cyan ";
  938. break;
  939. }
  940. }
  941. #else
  942. (void)color;
  943. #endif
  944. // Echo one line at a time.
  945. std::string line;
  946. line.reserve(200);
  947. for(const char* c = text;; ++c)
  948. {
  949. if(*c == '\n' || *c == '\0')
  950. {
  951. // Avoid writing a blank last line on end-of-string.
  952. if(*c != '\0' || !line.empty())
  953. {
  954. // Add a command to echo this line.
  955. std::string cmd;
  956. if(color_name.empty())
  957. {
  958. // Use the native echo command.
  959. cmd = this->NativeEchoCommand;
  960. cmd += this->EscapeForShell(line.c_str(), false,
  961. this->NativeEchoWindows);
  962. }
  963. else
  964. {
  965. // Use cmake to echo the text in color.
  966. cmd = "@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) ";
  967. cmd += color_name;
  968. cmd += this->EscapeForShell(line.c_str());
  969. }
  970. commands.push_back(cmd);
  971. }
  972. // Reset the line to emtpy.
  973. line = "";
  974. // Terminate on end-of-string.
  975. if(*c == '\0')
  976. {
  977. return;
  978. }
  979. }
  980. else if(*c != '\r')
  981. {
  982. // Append this character to the current line.
  983. line += *c;
  984. }
  985. }
  986. }
  987. //----------------------------------------------------------------------------
  988. std::string
  989. cmLocalUnixMakefileGenerator3
  990. ::CreateMakeVariable(const char* sin, const char* s2in)
  991. {
  992. std::string s = sin;
  993. std::string s2 = s2in;
  994. std::string unmodified = s;
  995. unmodified += s2;
  996. // if there is no restriction on the length of make variables
  997. // and there are no "." charactors in the string, then return the
  998. // unmodified combination.
  999. if((!this->MakefileVariableSize && unmodified.find('.') == s.npos)
  1000. && (!this->MakefileVariableSize && unmodified.find('-') == s.npos))
  1001. {
  1002. return unmodified;
  1003. }
  1004. // see if the variable has been defined before and return
  1005. // the modified version of the variable
  1006. std::map<cmStdString, cmStdString>::iterator i =
  1007. this->MakeVariableMap.find(unmodified);
  1008. if(i != this->MakeVariableMap.end())
  1009. {
  1010. return i->second;
  1011. }
  1012. // start with the unmodified variable
  1013. std::string ret = unmodified;
  1014. // if this there is no value for this->MakefileVariableSize then
  1015. // the string must have bad characters in it
  1016. if(!this->MakefileVariableSize)
  1017. {
  1018. cmSystemTools::ReplaceString(ret, ".", "_");
  1019. cmSystemTools::ReplaceString(ret, "-", "__");
  1020. int ni = 0;
  1021. char buffer[5];
  1022. // make sure the _ version is not already used, if
  1023. // it is used then add number to the end of the variable
  1024. while(this->ShortMakeVariableMap.count(ret) && ni < 1000)
  1025. {
  1026. ++ni;
  1027. sprintf(buffer, "%04d", ni);
  1028. ret = unmodified + buffer;
  1029. }
  1030. this->ShortMakeVariableMap[ret] = "1";
  1031. this->MakeVariableMap[unmodified] = ret;
  1032. return ret;
  1033. }
  1034. // if the string is greater the 32 chars it is an invalid vairable name
  1035. // for borland make
  1036. if(static_cast<int>(ret.size()) > this->MakefileVariableSize)
  1037. {
  1038. int keep = this->MakefileVariableSize - 8;
  1039. int size = keep + 3;
  1040. std::string str1 = s;
  1041. std::string str2 = s2;
  1042. // we must shorten the combined string by 4 charactors
  1043. // keep no more than 24 charactors from the second string
  1044. if(static_cast<int>(str2.size()) > keep)
  1045. {
  1046. str2 = str2.substr(0, keep);
  1047. }
  1048. if(static_cast<int>(str1.size()) + static_cast<int>(str2.size()) > size)
  1049. {
  1050. str1 = str1.substr(0, size - str2.size());
  1051. }
  1052. char buffer[5];
  1053. int ni = 0;
  1054. sprintf(buffer, "%04d", ni);
  1055. ret = str1 + str2 + buffer;
  1056. while(this->ShortMakeVariableMap.count(ret) && ni < 1000)
  1057. {
  1058. ++ni;
  1059. sprintf(buffer, "%04d", ni);
  1060. ret = str1 + str2 + buffer;
  1061. }
  1062. if(ni == 1000)
  1063. {
  1064. cmSystemTools::Error("Borland makefile variable length too long");
  1065. return unmodified;
  1066. }
  1067. // once an unused variable is found
  1068. this->ShortMakeVariableMap[ret] = "1";
  1069. }
  1070. // always make an entry into the unmodified to variable map
  1071. this->MakeVariableMap[unmodified] = ret;
  1072. return ret;
  1073. }
  1074. //----------------------------------------------------------------------------
  1075. bool cmLocalUnixMakefileGenerator3::ScanDependencies(const char* tgtInfo)
  1076. {
  1077. // The info file for this target
  1078. std::string infoFile = tgtInfo;
  1079. // Read the directory information file.
  1080. cmMakefile* mf = this->Makefile;
  1081. bool haveDirectoryInfo = false;
  1082. std::string dirInfoFile = this->Makefile->GetStartOutputDirectory();
  1083. dirInfoFile += cmake::GetCMakeFilesDirectory();
  1084. dirInfoFile += "/CMakeDirectoryInformation.cmake";
  1085. if(mf->ReadListFile(0, dirInfoFile.c_str()) &&
  1086. !cmSystemTools::GetErrorOccuredFlag())
  1087. {
  1088. haveDirectoryInfo = true;
  1089. }
  1090. // read in the target info file
  1091. if(!mf->ReadListFile(0, infoFile.c_str()) ||
  1092. cmSystemTools::GetErrorOccuredFlag())
  1093. {
  1094. cmSystemTools::Error("Target DependInfo.cmake file not found");
  1095. }
  1096. // Test whether we need to force Unix paths.
  1097. if(haveDirectoryInfo)
  1098. {
  1099. if(const char* force = mf->GetDefinition("CMAKE_FORCE_UNIX_PATHS"))
  1100. {
  1101. if(!cmSystemTools::IsOff(force))
  1102. {
  1103. cmSystemTools::SetForceUnixPaths(true);
  1104. }
  1105. }
  1106. }
  1107. else
  1108. {
  1109. cmSystemTools::Error("Directory Information file not found");
  1110. }
  1111. // create the file stream for the depends file
  1112. std::string dir = cmSystemTools::GetFilenamePath(infoFile);
  1113. // Open the rule file. This should be copy-if-different because the
  1114. // rules may depend on this file itself.
  1115. std::string ruleFileNameFull = dir;
  1116. ruleFileNameFull += "/depend.make";
  1117. cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
  1118. ruleFileStream.SetCopyIfDifferent(true);
  1119. if(!ruleFileStream)
  1120. {
  1121. return false;
  1122. }
  1123. std::string internalRuleFileNameFull = dir;
  1124. internalRuleFileNameFull += "/depend.internal";
  1125. cmGeneratedFileStream
  1126. internalRuleFileStream(internalRuleFileNameFull.c_str());
  1127. internalRuleFileStream.SetCopyIfDifferent(true);
  1128. if(!internalRuleFileStream)
  1129. {
  1130. return false;
  1131. }
  1132. this->WriteDisclaimer(ruleFileStream);
  1133. this->WriteDisclaimer(internalRuleFileStream);
  1134. // for each language we need to scan, scan it
  1135. const char *langStr = mf->GetSafeDefinition("CMAKE_DEPENDS_LANGUAGES");
  1136. std::vector<std::string> langs;
  1137. cmSystemTools::ExpandListArgument(langStr, langs);
  1138. for (std::vector<std::string>::iterator li =
  1139. langs.begin(); li != langs.end(); ++li)
  1140. {
  1141. // construct the checker
  1142. std::string lang = li->c_str();
  1143. // Get the set of include directories.
  1144. std::vector<std::string> includes;
  1145. if(haveDirectoryInfo)
  1146. {
  1147. std::string includePathVar = "CMAKE_";
  1148. includePathVar += lang;
  1149. includePathVar += "_INCLUDE_PATH";
  1150. if(const char* includePath = mf->GetDefinition(includePathVar.c_str()))
  1151. {
  1152. cmSystemTools::ExpandListArgument(includePath, includes);
  1153. }
  1154. }
  1155. // Get the include file regular expression.
  1156. std::string includeRegexScan = "^.*$";
  1157. std::string includeRegexComplain = "^$";
  1158. if(haveDirectoryInfo)
  1159. {
  1160. std::string scanRegexVar = "CMAKE_";
  1161. scanRegexVar += lang;
  1162. scanRegexVar += "_INCLUDE_REGEX_SCAN";
  1163. if(const char* scanRegex = mf->GetDefinition(scanRegexVar.c_str()))
  1164. {
  1165. includeRegexScan = scanRegex;
  1166. }
  1167. std::string complainRegexVar = "CMAKE_";
  1168. complainRegexVar += lang;
  1169. complainRegexVar += "_INCLUDE_REGEX_COMPLAIN";
  1170. if(const char* complainRegex =
  1171. mf->GetDefinition(complainRegexVar.c_str()))
  1172. {
  1173. includeRegexComplain = complainRegex;
  1174. }
  1175. }
  1176. // Create the scanner for this language
  1177. cmDepends *scanner = 0;
  1178. if(lang == "C" || lang == "CXX" || lang == "RC")
  1179. {
  1180. std::string includeCacheFileName = dir;
  1181. includeCacheFileName += "/";
  1182. includeCacheFileName += lang;
  1183. includeCacheFileName += ".includecache";
  1184. // TODO: Handle RC (resource files) dependencies correctly.
  1185. scanner = new cmDependsC(includes,
  1186. includeRegexScan.c_str(),
  1187. includeRegexComplain.c_str(),
  1188. includeCacheFileName);
  1189. scanner->SetLocalGenerator(this);
  1190. }
  1191. #ifdef CMAKE_BUILD_WITH_CMAKE
  1192. else if(lang == "Fortran")
  1193. {
  1194. scanner = new cmDependsFortran(includes);
  1195. }
  1196. else if(lang == "Java")
  1197. {
  1198. scanner = new cmDependsJava();
  1199. }
  1200. #endif
  1201. if (scanner)
  1202. {
  1203. scanner->SetFileComparison
  1204. (this->GlobalGenerator->GetCMakeInstance()->GetFileComparison());
  1205. // for each file we need to scan
  1206. std::string srcLang = "CMAKE_DEPENDS_CHECK_";
  1207. srcLang += lang;
  1208. const char *srcStr = mf->GetSafeDefinition(srcLang.c_str());
  1209. std::vector<std::string> srcs;
  1210. cmSystemTools::ExpandListArgument(srcStr, srcs);
  1211. for (std::vector<std::string>::iterator si =
  1212. srcs.begin(); si != srcs.end(); ++si)
  1213. {
  1214. std::string &src = *si;
  1215. ++si;
  1216. // make sure the object file is relative to home output
  1217. std::string obj = *si;
  1218. obj = this->Convert(obj.c_str(),HOME_OUTPUT,MAKEFILE);
  1219. scanner->Write(src.c_str(),obj.c_str(),
  1220. ruleFileStream, internalRuleFileStream);
  1221. }
  1222. // free the scanner for this language
  1223. delete scanner;
  1224. }
  1225. }
  1226. // dependencies were generated, so touch the mark file
  1227. ruleFileNameFull += ".mark";
  1228. std::ofstream fmark(ruleFileNameFull.c_str());
  1229. fmark << "Dependencies updated>" << std::endl;
  1230. return true;
  1231. }
  1232. //----------------------------------------------------------------------------
  1233. void cmLocalUnixMakefileGenerator3
  1234. ::WriteLocalAllRules(std::ostream& ruleFileStream)
  1235. {
  1236. this->WriteDisclaimer(ruleFileStream);
  1237. // Write the main entry point target. This must be the VERY first
  1238. // target so that make with no arguments will run it.
  1239. {
  1240. // Just depend on the all target to drive the build.
  1241. std::vector<std::string> depends;
  1242. std::vector<std::string> no_commands;
  1243. depends.push_back("all");
  1244. // Write the rule.
  1245. this->WriteMakeRule(ruleFileStream,
  1246. "Default target executed when no arguments are "
  1247. "given to make.",
  1248. "default_target",
  1249. depends,
  1250. no_commands, true);
  1251. }
  1252. this->WriteSpecialTargetsTop(ruleFileStream);
  1253. // Include the progress variables for the target.
  1254. std::string progressFile = cmake::GetCMakeFilesDirectory();
  1255. progressFile += "/progress.make";
  1256. std::string progressFileNameFull =
  1257. this->ConvertToFullPath(progressFile.c_str());
  1258. ruleFileStream
  1259. << "# Include the progress variables for this target.\n"
  1260. << this->IncludeDirective << " "
  1261. << this->Convert(progressFileNameFull.c_str(),
  1262. cmLocalGenerator::START_OUTPUT,
  1263. cmLocalGenerator::MAKEFILE) << "\n\n";
  1264. // Write all global targets
  1265. this->WriteDivider(ruleFileStream);
  1266. ruleFileStream
  1267. << "# Targets provided globally by CMake.\n"
  1268. << "\n";
  1269. cmTargets* targets = &(this->Makefile->GetTargets());
  1270. cmTargets::iterator glIt;
  1271. for ( glIt = targets->begin(); glIt != targets->end(); ++ glIt )
  1272. {
  1273. if ( glIt->second.GetType() == cmTarget::GLOBAL_TARGET )
  1274. {
  1275. std::string targetString = "Special rule for the target " + glIt->first;
  1276. std::vector<std::string> commands;
  1277. std::vector<std::string> depends;
  1278. const char* text = glIt->second.GetProperty("EchoString");
  1279. if ( !text )
  1280. {
  1281. text = "Running external command ...";
  1282. }
  1283. std::set<cmStdString>::const_iterator dit;
  1284. for ( dit = glIt->second.GetUtilities().begin();
  1285. dit != glIt->second.GetUtilities().end();
  1286. ++ dit )
  1287. {
  1288. depends.push_back(dit->c_str());
  1289. }
  1290. this->AppendEcho(commands, text,
  1291. cmLocalUnixMakefileGenerator3::EchoGlobal);
  1292. // Global targets store their rules in pre- and post-build commands.
  1293. this->AppendCustomDepends(depends,
  1294. glIt->second.GetPreBuildCommands());
  1295. this->AppendCustomDepends(depends,
  1296. glIt->second.GetPostBuildCommands());
  1297. this->AppendCustomCommands(commands,
  1298. glIt->second.GetPreBuildCommands());
  1299. this->AppendCustomCommands(commands,
  1300. glIt->second.GetPostBuildCommands());
  1301. std::string targetName = glIt->second.GetName();
  1302. this->WriteMakeRule(ruleFileStream, targetString.c_str(),
  1303. targetName.c_str(), depends, commands, true);
  1304. // Provide a "/fast" version of the target.
  1305. depends.clear();
  1306. if((targetName == "install") || (targetName == "install_local"))
  1307. {
  1308. // Provide a fast install target that does not depend on all
  1309. // but has the same command.
  1310. depends.push_back("preinstall/fast");
  1311. }
  1312. else
  1313. {
  1314. // Just forward to the real target so at least it will work.
  1315. depends.push_back(targetName);
  1316. commands.clear();
  1317. }
  1318. targetName += "/fast";
  1319. this->WriteMakeRule(ruleFileStream, targetString.c_str(),
  1320. targetName.c_str(), depends, commands, true);
  1321. }
  1322. }
  1323. std::vector<std::string> depends;
  1324. std::vector<std::string> commands;
  1325. // Write the all rule.
  1326. std::string dir;
  1327. std::string recursiveTarget = this->Makefile->GetStartOutputDirectory();
  1328. recursiveTarget += "/all";
  1329. depends.push_back("cmake_check_build_system");
  1330. std::string progressDir = this->Makefile->GetHomeOutputDirectory();
  1331. progressDir += cmake::GetCMakeFilesDirectory();
  1332. {
  1333. cmOStringStream progCmd;
  1334. progCmd <<
  1335. "$(CMAKE_COMMAND) -E cmake_progress_start ";
  1336. progCmd << this->Convert(progressDir.c_str(),
  1337. cmLocalGenerator::FULL,
  1338. cmLocalGenerator::SHELL);
  1339. progCmd << " $(CMAKE_ALL_PROGRESS)";
  1340. commands.push_back(progCmd.str());
  1341. }
  1342. std::string mf2Dir = cmake::GetCMakeFilesDirectoryPostSlash();
  1343. mf2Dir += "Makefile2";
  1344. commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
  1345. recursiveTarget.c_str()));
  1346. this->CreateCDCommand(commands,
  1347. this->Makefile->GetHomeOutputDirectory(),
  1348. this->Makefile->GetStartOutputDirectory());
  1349. {
  1350. cmOStringStream progCmd;
  1351. progCmd << "$(CMAKE_COMMAND) -E cmake_progress_start "; // # 0
  1352. progCmd << this->Convert(progressDir.c_str(),
  1353. cmLocalGenerator::FULL,
  1354. cmLocalGenerator::SHELL);
  1355. progCmd << " 0";
  1356. commands.push_back(progCmd.str());
  1357. }
  1358. this->WriteMakeRule(ruleFileStream, "The main all target", "all",
  1359. depends, commands, true);
  1360. // Write the clean rule.
  1361. recursiveTarget = this->Makefile->GetStartOutputDirectory();
  1362. recursiveTarget += "/clean";
  1363. commands.clear();
  1364. depends.clear();
  1365. commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
  1366. recursiveTarget.c_str()));
  1367. this->CreateCDCommand(commands,
  1368. this->Makefile->GetHomeOutputDirectory(),
  1369. this->Makefile->GetStartOutputDirectory());
  1370. this->WriteMakeRule(ruleFileStream, "The main clean target", "clean",
  1371. depends, commands, true);
  1372. commands.clear();
  1373. depends.clear();
  1374. depends.push_back("clean");
  1375. this->WriteMakeRule(ruleFileStream, "The main clean target", "clean/fast",
  1376. depends, commands, true);
  1377. // Write the preinstall rule.
  1378. recursiveTarget = this->Makefile->GetStartOutputDirectory();
  1379. recursiveTarget += "/preinstall";
  1380. commands.clear();
  1381. depends.clear();
  1382. const char* noall =
  1383. this->Makefile->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
  1384. if(!noall || cmSystemTools::IsOff(noall))
  1385. {
  1386. // Drive the build before installing.
  1387. depends.push_back("all");
  1388. }
  1389. else
  1390. {
  1391. // At least make sure the build system is up to date.
  1392. depends.push_back("cmake_check_build_system");
  1393. }
  1394. commands.push_back
  1395. (this->GetRecursiveMakeCall(mf2Dir.c_str(), recursiveTarget.c_str()));
  1396. this->CreateCDCommand(commands,
  1397. this->Makefile->GetHomeOutputDirectory(),
  1398. this->Makefile->GetStartOutputDirectory());
  1399. this->WriteMakeRule(ruleFileStream, "Prepare targets for installation.",
  1400. "preinstall", depends, commands, true);
  1401. depends.clear();
  1402. this->WriteMakeRule(ruleFileStream, "Prepare targets for installation.",
  1403. "preinstall/fast", depends, commands, true);
  1404. // write the depend rule, really a recompute depends rule
  1405. depends.clear();
  1406. commands.clear();
  1407. std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
  1408. cmakefileName += "Makefile.cmake";
  1409. std::string runRule =
  1410. "$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
  1411. runRule += " --check-build-system ";
  1412. runRule += this->Convert(cmakefileName.c_str(),cmLocalGenerator::NONE,
  1413. cmLocalGenerator::SHELL);
  1414. runRule += " 1";
  1415. commands.push_back(runRule);
  1416. this->WriteMakeRule(ruleFileStream, "clear depends",
  1417. "depend",
  1418. depends, commands, true);
  1419. }
  1420. //----------------------------------------------------------------------------
  1421. void cmLocalUnixMakefileGenerator3::CheckDependencies(cmMakefile* mf,
  1422. bool verbose,
  1423. bool clear)
  1424. {
  1425. // Get the list of target files to check
  1426. const char* infoDef = mf->GetDefinition("CMAKE_DEPEND_INFO_FILES");
  1427. if(!infoDef)
  1428. {
  1429. return;
  1430. }
  1431. std::vector<std::string> files;
  1432. cmSystemTools::ExpandListArgument(infoDef, files);
  1433. // For each info file run the check
  1434. cmDependsC checker;
  1435. checker.SetVerbose(verbose);
  1436. checker.SetFileComparison
  1437. (this->GlobalGenerator->GetCMakeInstance()->GetFileComparison());
  1438. for(std::vector<std::string>::iterator l = files.begin();
  1439. l != files.end(); ++l)
  1440. {
  1441. // either clear or check the files
  1442. std::string dir = cmSystemTools::GetFilenamePath(l->c_str());
  1443. std::string internalDependFile = dir + "/depend.internal";
  1444. std::string dependFile = dir + "/depend.make";
  1445. if (clear)
  1446. {
  1447. checker.Clear(internalDependFile.c_str());
  1448. checker.Clear(dependFile.c_str());
  1449. }
  1450. else
  1451. {
  1452. checker.Check(dependFile.c_str(), internalDependFile.c_str());
  1453. }
  1454. }
  1455. }
  1456. void cmLocalUnixMakefileGenerator3
  1457. ::WriteDependLanguageInfo(std::ostream& cmakefileStream, cmTarget &target)
  1458. {
  1459. // now write all the language stuff
  1460. // Set the set of files to check for dependency integrity.
  1461. std::set<cmStdString> checkSetLangs;
  1462. std::map<cmStdString,cmLocalUnixMakefileGenerator3::IntegrityCheckSet>&
  1463. checkSet = this->GetIntegrityCheckSet()[target.GetName()];
  1464. for(std::map<cmStdString,
  1465. cmLocalUnixMakefileGenerator3::IntegrityCheckSet>::const_iterator
  1466. l = checkSet.begin(); l != checkSet.end(); ++l)
  1467. {
  1468. checkSetLangs.insert(l->first);
  1469. }
  1470. // list the languages
  1471. cmakefileStream
  1472. << "# The set of files whose dependency integrity should be checked:\n";
  1473. cmakefileStream
  1474. << "SET(CMAKE_DEPENDS_LANGUAGES\n";
  1475. for(std::set<cmStdString>::iterator
  1476. l = checkSetLangs.begin(); l != checkSetLangs.end(); ++l)
  1477. {
  1478. cmakefileStream << " \"" << l->c_str() << "\"\n";
  1479. }
  1480. cmakefileStream << " )\n";
  1481. // now list the files for each language
  1482. for(std::set<cmStdString>::iterator
  1483. l = checkSetLangs.begin(); l != checkSetLangs.end(); ++l)
  1484. {
  1485. cmakefileStream
  1486. << "SET(CMAKE_DEPENDS_CHECK_" << l->c_str() << "\n";
  1487. // get the check set for this local gen and language
  1488. cmLocalUnixMakefileGenerator3::IntegrityCheckSet iCheckSet =
  1489. checkSet[*l];
  1490. // for each file
  1491. for(cmLocalUnixMakefileGenerator3::IntegrityCheckSet::const_iterator
  1492. csIter = iCheckSet.begin();
  1493. csIter != iCheckSet.end(); ++csIter)
  1494. {
  1495. cmakefileStream << " \"" << (*csIter)->GetFullPath() << "\"\n";
  1496. // Get the full path name of the object file.
  1497. std::string obj = this->Makefile->GetStartOutputDirectory();
  1498. obj += "/";
  1499. obj += this->GetObjectFileName(target, **csIter);
  1500. cmakefileStream << " \"" <<
  1501. this->Convert(obj.c_str(),
  1502. cmLocalGenerator::FULL).c_str() << "\"\n";
  1503. }
  1504. cmakefileStream << " )\n";
  1505. }
  1506. }
  1507. //----------------------------------------------------------------------------
  1508. std::string
  1509. cmLocalUnixMakefileGenerator3
  1510. ::GetObjectFileName(cmTarget& target,
  1511. const cmSourceFile& source,
  1512. std::string* nameWithoutTargetDir)
  1513. {
  1514. // Get the object file name independent of target.
  1515. std::string objectName = this->GetObjectFileNameWithoutTarget(source);
  1516. if(nameWithoutTargetDir)
  1517. {
  1518. *nameWithoutTargetDir = objectName;
  1519. }
  1520. // Prepend the target directory.
  1521. std::string obj;
  1522. const char* fileTargetDirectory =
  1523. source.GetProperty("MACOSX_PACKAGE_LOCATION");
  1524. if ( fileTargetDirectory )
  1525. {
  1526. objectName = cmSystemTools::GetFilenameName(objectName.c_str());
  1527. std::string targetName;
  1528. std::string targetNameReal;
  1529. std::string targetNamePDB;
  1530. target.GetExecutableNames(targetName, targetNameReal,
  1531. targetNamePDB, this->ConfigurationName.c_str());
  1532. if ( target.GetPropertyAsBool("MACOSX_BUNDLE") )
  1533. {
  1534. // Construct the full path version of the names.
  1535. obj = this->ExecutableOutputPath;
  1536. if(obj.empty())
  1537. {
  1538. obj = this->Makefile->GetStartOutputDirectory();
  1539. obj += "/";
  1540. }
  1541. obj += targetName + ".app/Contents/";
  1542. obj += fileTargetDirectory;
  1543. }
  1544. else
  1545. {
  1546. // Framework not handled yet
  1547. abort();
  1548. }
  1549. obj = cmSystemTools::RelativePath
  1550. (this->Makefile->GetHomeOutputDirectory(), obj.c_str());
  1551. }
  1552. else
  1553. {
  1554. obj = this->GetTargetDirectory(target);
  1555. }
  1556. obj += "/";
  1557. obj += objectName;
  1558. return obj;
  1559. }
  1560. //----------------------------------------------------------------------------
  1561. void cmLocalUnixMakefileGenerator3::WriteDisclaimer(std::ostream& os)
  1562. {
  1563. os
  1564. << "# CMAKE generated file: DO NOT EDIT!\n"
  1565. << "# Generated by \"" << this->GlobalGenerator->GetName() << "\""
  1566. << " Generator, CMake Version "
  1567. << cmVersion::GetMajorVersion() << "."
  1568. << cmVersion::GetMinorVersion() << "\n\n";
  1569. }
  1570. //----------------------------------------------------------------------------
  1571. std::string
  1572. cmLocalUnixMakefileGenerator3
  1573. ::GetRecursiveMakeCall(const char *makefile, const char* tgt)
  1574. {
  1575. // Call make on the given file.
  1576. std::string cmd;
  1577. cmd += "$(MAKE) -f ";
  1578. cmd += this->Convert(makefile,NONE,SHELL);
  1579. cmd += " ";
  1580. // Passg down verbosity level.
  1581. if(this->GetMakeSilentFlag().size())
  1582. {
  1583. cmd += this->GetMakeSilentFlag();
  1584. cmd += " ";
  1585. }
  1586. // Most unix makes will pass the command line flags to make down to
  1587. // sub-invoked makes via an environment variable. However, some
  1588. // makes do not support that, so you have to pass the flags
  1589. // explicitly.
  1590. if(this->GetPassMakeflags())
  1591. {
  1592. cmd += "-$(MAKEFLAGS) ";
  1593. }
  1594. // Add the target.
  1595. if (tgt && tgt[0] != '\0')
  1596. {
  1597. // The make target is always relative to the top of the build tree.
  1598. std::string tgt2 = this->Convert(tgt, HOME_OUTPUT);
  1599. // The target may have been written with windows paths.
  1600. cmSystemTools::ConvertToOutputSlashes(tgt2);
  1601. // The target name is now a string that should be passed verbatim
  1602. // on the command line.
  1603. cmd += this->EscapeForShell(tgt2.c_str(), true, false);
  1604. }
  1605. return cmd;
  1606. }
  1607. //----------------------------------------------------------------------------
  1608. void cmLocalUnixMakefileGenerator3::WriteDivider(std::ostream& os)
  1609. {
  1610. os
  1611. << "#======================================"
  1612. << "=======================================\n";
  1613. }
  1614. //----------------------------------------------------------------------------
  1615. void
  1616. cmLocalUnixMakefileGenerator3
  1617. ::WriteCMakeArgument(std::ostream& os, const char* s)
  1618. {
  1619. // Write the given string to the stream with escaping to get it back
  1620. // into CMake through the lexical scanner.
  1621. os << "\"";
  1622. for(const char* c = s; *c; ++c)
  1623. {
  1624. if(*c == '\\')
  1625. {
  1626. os << "\\\\";
  1627. }
  1628. else if(*c == '"')
  1629. {
  1630. os << "\\\"";
  1631. }
  1632. else
  1633. {
  1634. os << *c;
  1635. }
  1636. }
  1637. os << "\"";
  1638. }
  1639. //----------------------------------------------------------------------------
  1640. std::string
  1641. cmLocalUnixMakefileGenerator3::ConvertToQuotedOutputPath(const char* p)
  1642. {
  1643. // Split the path into its components.
  1644. std::vector<std::string> components;
  1645. cmSystemTools::SplitPath(p, components);
  1646. // Return an empty path if there are no components.
  1647. if(components.empty())
  1648. {
  1649. return "\"\"";
  1650. }
  1651. // Choose a slash direction and fix root component.
  1652. const char* slash = "/";
  1653. #if defined(_WIN32) && !defined(__CYGWIN__)
  1654. if(!cmSystemTools::GetForceUnixPaths())
  1655. {
  1656. slash = "\\";
  1657. for(std::string::iterator i = components[0].begin();
  1658. i != components[0].end(); ++i)
  1659. {
  1660. if(*i == '/')
  1661. {
  1662. *i = '\\';
  1663. }
  1664. }
  1665. }
  1666. #endif
  1667. // Begin the quoted result with the root component.
  1668. std::string result = "\"";
  1669. result += components[0];
  1670. // Now add the rest of the components separated by the proper slash
  1671. // direction for this platform.
  1672. bool first = true;
  1673. for(unsigned int i=1; i < components.size(); ++i)
  1674. {
  1675. // Only the last component can be empty to avoid double slashes.
  1676. if(components[i].length() > 0 || (i == (components.size()-1)))
  1677. {
  1678. if(!first)
  1679. {
  1680. result += slash;
  1681. }
  1682. result += components[i];
  1683. first = false;
  1684. }
  1685. }
  1686. // Close the quoted result.
  1687. result += "\"";
  1688. return result;
  1689. }
  1690. //----------------------------------------------------------------------------
  1691. std::string
  1692. cmLocalUnixMakefileGenerator3::GetTargetDirectory(cmTarget& target)
  1693. {
  1694. std::string dir = cmake::GetCMakeFilesDirectoryPostSlash();
  1695. dir += target.GetName();
  1696. dir += ".dir";
  1697. return dir;
  1698. }
  1699. void cmLocalUnixMakefileGenerator3
  1700. ::CreateCDCommand(std::vector<std::string>& commands, const char *tgtDir,
  1701. const char *retDir)
  1702. {
  1703. // do we need to cd?
  1704. if (!strcmp(tgtDir,retDir))
  1705. {
  1706. return;
  1707. }
  1708. if(!this->UnixCD)
  1709. {
  1710. // On Windows we must perform each step separately and then change
  1711. // back because the shell keeps the working directory between
  1712. // commands.
  1713. std::string cmd = "cd ";
  1714. cmd += this->ConvertToOutputForExisting(tgtDir);
  1715. commands.insert(commands.begin(),cmd);
  1716. // Change back to the starting directory. Any trailing slash must be
  1717. // removed to avoid problems with Borland Make.
  1718. std::string back = retDir;
  1719. if(back.size() && back[back.size()-1] == '/')
  1720. {
  1721. back = back.substr(0, back.size()-1);
  1722. }
  1723. cmd = "cd ";
  1724. cmd += this->ConvertToOutputForExisting(back.c_str());
  1725. commands.push_back(cmd);
  1726. }
  1727. else
  1728. {
  1729. // On UNIX we must construct a single shell command to change
  1730. // directory and build because make resets the directory between
  1731. // each command.
  1732. std::vector<std::string>::iterator i = commands.begin();
  1733. for (; i != commands.end(); ++i)
  1734. {
  1735. std::string cmd = "cd ";
  1736. cmd += this->ConvertToOutputForExisting(tgtDir);
  1737. cmd += " && ";
  1738. cmd += *i;
  1739. *i = cmd;
  1740. }
  1741. }
  1742. }
  1743. void cmLocalUnixMakefileGenerator3
  1744. ::GetTargetObjectFileDirectories(cmTarget* target,
  1745. std::vector<std::string>& dirs)
  1746. {
  1747. std::string dir = this->Makefile->GetCurrentOutputDirectory();
  1748. dir += "/";
  1749. dir += this->GetTargetDirectory(*target);
  1750. dirs.push_back(dir);
  1751. }