cmLocalUnixMakefileGenerator3.cxx 60 KB

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