cmLocalUnixMakefileGenerator3.cxx 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #include "cmLocalUnixMakefileGenerator3.h"
  11. #include "cmAlgorithms.h"
  12. #include "cmCustomCommandGenerator.h"
  13. #include "cmFileTimeComparison.h"
  14. #include "cmGeneratedFileStream.h"
  15. #include "cmGlobalUnixMakefileGenerator3.h"
  16. #include "cmMakefile.h"
  17. #include "cmMakefileTargetGenerator.h"
  18. #include "cmSourceFile.h"
  19. #include "cmVersion.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 <cmsys/Terminal.h>
  29. #include <cmsys/auto_ptr.hxx>
  30. #include <algorithm>
  31. #include <queue>
  32. // Escape special characters in Makefile dependency lines
  33. class cmMakeSafe
  34. {
  35. public:
  36. cmMakeSafe(const char* s)
  37. : Data(s)
  38. {
  39. }
  40. cmMakeSafe(std::string const& s)
  41. : Data(s.c_str())
  42. {
  43. }
  44. private:
  45. const char* Data;
  46. friend std::ostream& operator<<(std::ostream& os, cmMakeSafe const& self)
  47. {
  48. for (const char* c = self.Data; *c; ++c) {
  49. switch (*c) {
  50. case '=':
  51. os << "$(EQUALS)";
  52. break;
  53. default:
  54. os << *c;
  55. break;
  56. }
  57. }
  58. return os;
  59. }
  60. };
  61. // Helper function used below.
  62. static std::string cmSplitExtension(std::string const& in, std::string& base)
  63. {
  64. std::string ext;
  65. std::string::size_type dot_pos = in.rfind('.');
  66. if (dot_pos != std::string::npos) {
  67. // Remove the extension first in case &base == &in.
  68. ext = in.substr(dot_pos, std::string::npos);
  69. base = in.substr(0, dot_pos);
  70. } else {
  71. base = in;
  72. }
  73. return ext;
  74. }
  75. cmLocalUnixMakefileGenerator3::cmLocalUnixMakefileGenerator3(
  76. cmGlobalGenerator* gg, cmMakefile* mf)
  77. : cmLocalCommonGenerator(gg, mf, cmOutputConverter::START_OUTPUT)
  78. {
  79. this->MakefileVariableSize = 0;
  80. this->ColorMakefile = false;
  81. this->SkipPreprocessedSourceRules = false;
  82. this->SkipAssemblySourceRules = false;
  83. this->MakeCommandEscapeTargetTwice = false;
  84. this->BorlandMakeCurlyHack = false;
  85. }
  86. cmLocalUnixMakefileGenerator3::~cmLocalUnixMakefileGenerator3()
  87. {
  88. }
  89. void cmLocalUnixMakefileGenerator3::Generate()
  90. {
  91. this->SetConfigName();
  92. // Record whether some options are enabled to avoid checking many
  93. // times later.
  94. if (!this->GetGlobalGenerator()->GetCMakeInstance()->GetIsInTryCompile()) {
  95. this->ColorMakefile = this->Makefile->IsOn("CMAKE_COLOR_MAKEFILE");
  96. }
  97. this->SkipPreprocessedSourceRules =
  98. this->Makefile->IsOn("CMAKE_SKIP_PREPROCESSED_SOURCE_RULES");
  99. this->SkipAssemblySourceRules =
  100. this->Makefile->IsOn("CMAKE_SKIP_ASSEMBLY_SOURCE_RULES");
  101. // Generate the rule files for each target.
  102. std::vector<cmGeneratorTarget*> targets = this->GetGeneratorTargets();
  103. cmGlobalUnixMakefileGenerator3* gg =
  104. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  105. for (std::vector<cmGeneratorTarget*>::iterator t = targets.begin();
  106. t != targets.end(); ++t) {
  107. if ((*t)->GetType() == cmState::INTERFACE_LIBRARY) {
  108. continue;
  109. }
  110. cmsys::auto_ptr<cmMakefileTargetGenerator> tg(
  111. cmMakefileTargetGenerator::New(*t));
  112. if (tg.get()) {
  113. tg->WriteRuleFiles();
  114. gg->RecordTargetProgress(tg.get());
  115. }
  116. }
  117. // write the local Makefile
  118. this->WriteLocalMakefile();
  119. // Write the cmake file with information for this directory.
  120. this->WriteDirectoryInformationFile();
  121. }
  122. void cmLocalUnixMakefileGenerator3::ComputeHomeRelativeOutputPath()
  123. {
  124. // Compute the path to use when referencing the current output
  125. // directory from the top output directory.
  126. this->HomeRelativeOutputPath = this->Convert(
  127. this->GetCurrentBinaryDirectory(), cmOutputConverter::HOME_OUTPUT);
  128. if (this->HomeRelativeOutputPath == ".") {
  129. this->HomeRelativeOutputPath = "";
  130. }
  131. if (!this->HomeRelativeOutputPath.empty()) {
  132. this->HomeRelativeOutputPath += "/";
  133. }
  134. }
  135. void cmLocalUnixMakefileGenerator3::ComputeObjectFilenames(
  136. std::map<cmSourceFile const*, std::string>& mapping,
  137. cmGeneratorTarget const* gt)
  138. {
  139. for (std::map<cmSourceFile const*, std::string>::iterator si =
  140. mapping.begin();
  141. si != mapping.end(); ++si) {
  142. cmSourceFile const* sf = si->first;
  143. si->second =
  144. this->GetObjectFileNameWithoutTarget(*sf, gt->ObjectDirectory);
  145. }
  146. }
  147. void cmLocalUnixMakefileGenerator3::GetLocalObjectFiles(
  148. std::map<std::string, LocalObjectInfo>& localObjectFiles)
  149. {
  150. std::vector<cmGeneratorTarget*> targets = this->GetGeneratorTargets();
  151. for (std::vector<cmGeneratorTarget*>::iterator ti = targets.begin();
  152. ti != targets.end(); ++ti) {
  153. cmGeneratorTarget* gt = *ti;
  154. if (gt->GetType() == cmState::INTERFACE_LIBRARY) {
  155. continue;
  156. }
  157. std::vector<cmSourceFile const*> objectSources;
  158. gt->GetObjectSources(
  159. objectSources, this->Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE"));
  160. // Compute full path to object file directory for this target.
  161. std::string dir;
  162. dir += gt->LocalGenerator->GetCurrentBinaryDirectory();
  163. dir += "/";
  164. dir += this->GetTargetDirectory(gt);
  165. dir += "/";
  166. // Compute the name of each object file.
  167. for (std::vector<cmSourceFile const*>::iterator si = objectSources.begin();
  168. si != objectSources.end(); ++si) {
  169. cmSourceFile const* sf = *si;
  170. bool hasSourceExtension = true;
  171. std::string objectName =
  172. this->GetObjectFileNameWithoutTarget(*sf, dir, &hasSourceExtension);
  173. if (cmSystemTools::FileIsFullPath(objectName.c_str())) {
  174. objectName = cmSystemTools::GetFilenameName(objectName);
  175. }
  176. LocalObjectInfo& info = localObjectFiles[objectName];
  177. info.HasSourceExtension = hasSourceExtension;
  178. info.push_back(LocalObjectEntry(gt, sf->GetLanguage()));
  179. }
  180. }
  181. }
  182. void cmLocalUnixMakefileGenerator3::GetIndividualFileTargets(
  183. std::vector<std::string>& targets)
  184. {
  185. std::map<std::string, LocalObjectInfo> localObjectFiles;
  186. this->GetLocalObjectFiles(localObjectFiles);
  187. for (std::map<std::string, LocalObjectInfo>::iterator lo =
  188. localObjectFiles.begin();
  189. lo != localObjectFiles.end(); ++lo) {
  190. targets.push_back(lo->first);
  191. std::string::size_type dot_pos = lo->first.rfind(".");
  192. std::string base = lo->first.substr(0, dot_pos);
  193. if (lo->second.HasPreprocessRule) {
  194. targets.push_back(base + ".i");
  195. }
  196. if (lo->second.HasAssembleRule) {
  197. targets.push_back(base + ".s");
  198. }
  199. }
  200. }
  201. void cmLocalUnixMakefileGenerator3::WriteLocalMakefile()
  202. {
  203. // generate the includes
  204. std::string ruleFileName = "Makefile";
  205. // Open the rule file. This should be copy-if-different because the
  206. // rules may depend on this file itself.
  207. std::string ruleFileNameFull = this->ConvertToFullPath(ruleFileName);
  208. cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
  209. if (!ruleFileStream) {
  210. return;
  211. }
  212. // always write the top makefile
  213. if (!this->IsRootMakefile()) {
  214. ruleFileStream.SetCopyIfDifferent(true);
  215. }
  216. // write the all rules
  217. this->WriteLocalAllRules(ruleFileStream);
  218. // only write local targets unless at the top Keep track of targets already
  219. // listed.
  220. std::set<std::string> emittedTargets;
  221. if (!this->IsRootMakefile()) {
  222. // write our targets, and while doing it collect up the object
  223. // file rules
  224. this->WriteLocalMakefileTargets(ruleFileStream, emittedTargets);
  225. } else {
  226. cmGlobalUnixMakefileGenerator3* gg =
  227. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  228. gg->WriteConvenienceRules(ruleFileStream, emittedTargets);
  229. }
  230. bool do_preprocess_rules = this->GetCreatePreprocessedSourceRules();
  231. bool do_assembly_rules = this->GetCreateAssemblySourceRules();
  232. std::map<std::string, LocalObjectInfo> localObjectFiles;
  233. this->GetLocalObjectFiles(localObjectFiles);
  234. // now write out the object rules
  235. // for each object file name
  236. for (std::map<std::string, LocalObjectInfo>::iterator lo =
  237. localObjectFiles.begin();
  238. lo != localObjectFiles.end(); ++lo) {
  239. // Add a convenience rule for building the object file.
  240. this->WriteObjectConvenienceRule(ruleFileStream,
  241. "target to build an object file",
  242. lo->first.c_str(), lo->second);
  243. // Check whether preprocessing and assembly rules make sense.
  244. // They make sense only for C and C++ sources.
  245. bool lang_has_preprocessor = false;
  246. bool lang_has_assembly = false;
  247. for (std::vector<LocalObjectEntry>::const_iterator ei = lo->second.begin();
  248. ei != lo->second.end(); ++ei) {
  249. if (ei->Language == "C" || ei->Language == "CXX" ||
  250. ei->Language == "Fortran") {
  251. // Right now, C, C++ and Fortran have both a preprocessor and the
  252. // ability to generate assembly code
  253. lang_has_preprocessor = true;
  254. lang_has_assembly = true;
  255. break;
  256. }
  257. }
  258. // Add convenience rules for preprocessed and assembly files.
  259. if (lang_has_preprocessor && do_preprocess_rules) {
  260. std::string::size_type dot_pos = lo->first.rfind(".");
  261. std::string base = lo->first.substr(0, dot_pos);
  262. this->WriteObjectConvenienceRule(ruleFileStream,
  263. "target to preprocess a source file",
  264. (base + ".i").c_str(), lo->second);
  265. lo->second.HasPreprocessRule = true;
  266. }
  267. if (lang_has_assembly && do_assembly_rules) {
  268. std::string::size_type dot_pos = lo->first.rfind(".");
  269. std::string base = lo->first.substr(0, dot_pos);
  270. this->WriteObjectConvenienceRule(
  271. ruleFileStream, "target to generate assembly for a file",
  272. (base + ".s").c_str(), lo->second);
  273. lo->second.HasAssembleRule = true;
  274. }
  275. }
  276. // add a help target as long as there isn;t a real target named help
  277. if (emittedTargets.insert("help").second) {
  278. cmGlobalUnixMakefileGenerator3* gg =
  279. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  280. gg->WriteHelpRule(ruleFileStream, this);
  281. }
  282. this->WriteSpecialTargetsBottom(ruleFileStream);
  283. }
  284. void cmLocalUnixMakefileGenerator3::WriteObjectConvenienceRule(
  285. std::ostream& ruleFileStream, const char* comment, const char* output,
  286. LocalObjectInfo const& info)
  287. {
  288. // If the rule includes the source file extension then create a
  289. // version that has the extension removed. The help should include
  290. // only the version without source extension.
  291. bool inHelp = true;
  292. if (info.HasSourceExtension) {
  293. // Remove the last extension. This should be kept.
  294. std::string outBase1 = output;
  295. std::string outExt1 = cmSplitExtension(outBase1, outBase1);
  296. // Now remove the source extension and put back the last
  297. // extension.
  298. std::string outNoExt;
  299. cmSplitExtension(outBase1, outNoExt);
  300. outNoExt += outExt1;
  301. // Add a rule to drive the rule below.
  302. std::vector<std::string> depends;
  303. depends.push_back(output);
  304. std::vector<std::string> no_commands;
  305. this->WriteMakeRule(ruleFileStream, 0, outNoExt, depends, no_commands,
  306. true, true);
  307. inHelp = false;
  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 = info.begin();
  312. t != info.end(); ++t) {
  313. std::string tgtMakefileName = this->GetRelativeTargetDirectory(t->Target);
  314. std::string targetName = tgtMakefileName;
  315. tgtMakefileName += "/build.make";
  316. targetName += "/";
  317. targetName += output;
  318. commands.push_back(
  319. this->GetRecursiveMakeCall(tgtMakefileName.c_str(), targetName));
  320. }
  321. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  322. cmOutputConverter::START_OUTPUT);
  323. // Write the rule to the makefile.
  324. std::vector<std::string> no_depends;
  325. this->WriteMakeRule(ruleFileStream, comment, output, no_depends, commands,
  326. true, inHelp);
  327. }
  328. void cmLocalUnixMakefileGenerator3::WriteLocalMakefileTargets(
  329. std::ostream& ruleFileStream, std::set<std::string>& emitted)
  330. {
  331. std::vector<std::string> depends;
  332. std::vector<std::string> commands;
  333. // for each target we just provide a rule to cd up to the top and do a make
  334. // on the target
  335. std::vector<cmGeneratorTarget*> targets = this->GetGeneratorTargets();
  336. std::string localName;
  337. for (std::vector<cmGeneratorTarget*>::iterator t = targets.begin();
  338. t != targets.end(); ++t) {
  339. if (((*t)->GetType() == cmState::EXECUTABLE) ||
  340. ((*t)->GetType() == cmState::STATIC_LIBRARY) ||
  341. ((*t)->GetType() == cmState::SHARED_LIBRARY) ||
  342. ((*t)->GetType() == cmState::MODULE_LIBRARY) ||
  343. ((*t)->GetType() == cmState::OBJECT_LIBRARY) ||
  344. ((*t)->GetType() == cmState::UTILITY)) {
  345. emitted.insert((*t)->GetName());
  346. // for subdirs add a rule to build this specific target by name.
  347. localName = this->GetRelativeTargetDirectory(*t);
  348. localName += "/rule";
  349. commands.clear();
  350. depends.clear();
  351. // Build the target for this pass.
  352. std::string makefile2 = cmake::GetCMakeFilesDirectoryPostSlash();
  353. makefile2 += "Makefile2";
  354. commands.push_back(
  355. this->GetRecursiveMakeCall(makefile2.c_str(), localName));
  356. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  357. cmOutputConverter::START_OUTPUT);
  358. this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
  359. localName, depends, commands, true);
  360. // Add a target with the canonical name (no prefix, suffix or path).
  361. if (localName != (*t)->GetName()) {
  362. commands.clear();
  363. depends.push_back(localName);
  364. this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
  365. (*t)->GetName(), depends, commands, true);
  366. }
  367. // Add a fast rule to build the target
  368. std::string makefileName = this->GetRelativeTargetDirectory(*t);
  369. makefileName += "/build.make";
  370. // make sure the makefile name is suitable for a makefile
  371. std::string makeTargetName = this->GetRelativeTargetDirectory(*t);
  372. makeTargetName += "/build";
  373. localName = (*t)->GetName();
  374. localName += "/fast";
  375. depends.clear();
  376. commands.clear();
  377. commands.push_back(
  378. this->GetRecursiveMakeCall(makefileName.c_str(), makeTargetName));
  379. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  380. cmOutputConverter::START_OUTPUT);
  381. this->WriteMakeRule(ruleFileStream, "fast build rule for target.",
  382. localName, depends, commands, true);
  383. // Add a local name for the rule to relink the target before
  384. // installation.
  385. if ((*t)->NeedRelinkBeforeInstall(this->ConfigName)) {
  386. makeTargetName = this->GetRelativeTargetDirectory(*t);
  387. makeTargetName += "/preinstall";
  388. localName = (*t)->GetName();
  389. localName += "/preinstall";
  390. depends.clear();
  391. commands.clear();
  392. commands.push_back(
  393. this->GetRecursiveMakeCall(makefile2.c_str(), makeTargetName));
  394. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  395. cmOutputConverter::START_OUTPUT);
  396. this->WriteMakeRule(ruleFileStream,
  397. "Manual pre-install relink rule for target.",
  398. localName, depends, commands, true);
  399. }
  400. }
  401. }
  402. }
  403. void cmLocalUnixMakefileGenerator3::WriteDirectoryInformationFile()
  404. {
  405. std::string infoFileName = this->GetCurrentBinaryDirectory();
  406. infoFileName += cmake::GetCMakeFilesDirectory();
  407. infoFileName += "/CMakeDirectoryInformation.cmake";
  408. // Open the output file.
  409. cmGeneratedFileStream infoFileStream(infoFileName.c_str());
  410. if (!infoFileStream) {
  411. return;
  412. }
  413. infoFileStream.SetCopyIfDifferent(true);
  414. // Write the do not edit header.
  415. this->WriteDisclaimer(infoFileStream);
  416. // Setup relative path conversion tops.
  417. /* clang-format off */
  418. infoFileStream
  419. << "# Relative path conversion top directories.\n"
  420. << "set(CMAKE_RELATIVE_PATH_TOP_SOURCE \""
  421. << this->StateSnapshot.GetDirectory().GetRelativePathTopSource()
  422. << "\")\n"
  423. << "set(CMAKE_RELATIVE_PATH_TOP_BINARY \""
  424. << this->StateSnapshot.GetDirectory().GetRelativePathTopBinary()
  425. << "\")\n"
  426. << "\n";
  427. /* clang-format on */
  428. // Tell the dependency scanner to use unix paths if necessary.
  429. if (cmSystemTools::GetForceUnixPaths()) {
  430. /* clang-format off */
  431. infoFileStream
  432. << "# Force unix paths in dependencies.\n"
  433. << "set(CMAKE_FORCE_UNIX_PATHS 1)\n"
  434. << "\n";
  435. /* clang-format on */
  436. }
  437. // Store the include regular expressions for this directory.
  438. infoFileStream << "\n"
  439. << "# The C and CXX include file regular expressions for "
  440. << "this directory.\n";
  441. infoFileStream << "set(CMAKE_C_INCLUDE_REGEX_SCAN ";
  442. this->WriteCMakeArgument(infoFileStream,
  443. this->Makefile->GetIncludeRegularExpression());
  444. infoFileStream << ")\n";
  445. infoFileStream << "set(CMAKE_C_INCLUDE_REGEX_COMPLAIN ";
  446. this->WriteCMakeArgument(infoFileStream,
  447. this->Makefile->GetComplainRegularExpression());
  448. infoFileStream << ")\n";
  449. infoFileStream
  450. << "set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})\n";
  451. infoFileStream << "set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN "
  452. "${CMAKE_C_INCLUDE_REGEX_COMPLAIN})\n";
  453. }
  454. std::string cmLocalUnixMakefileGenerator3::ConvertToFullPath(
  455. const std::string& localPath)
  456. {
  457. std::string dir = this->GetCurrentBinaryDirectory();
  458. dir += "/";
  459. dir += localPath;
  460. return dir;
  461. }
  462. const std::string& cmLocalUnixMakefileGenerator3::GetHomeRelativeOutputPath()
  463. {
  464. return this->HomeRelativeOutputPath;
  465. }
  466. void cmLocalUnixMakefileGenerator3::WriteMakeRule(
  467. std::ostream& os, const char* comment, const std::string& target,
  468. const std::vector<std::string>& depends,
  469. const std::vector<std::string>& commands, bool symbolic, bool in_help)
  470. {
  471. // Make sure there is a target.
  472. if (target.empty()) {
  473. cmSystemTools::Error("No target for WriteMakeRule! called with comment: ",
  474. comment);
  475. return;
  476. }
  477. std::string replace;
  478. // Write the comment describing the rule in the makefile.
  479. if (comment) {
  480. replace = comment;
  481. std::string::size_type lpos = 0;
  482. std::string::size_type rpos;
  483. while ((rpos = replace.find('\n', lpos)) != std::string::npos) {
  484. os << "# " << replace.substr(lpos, rpos - lpos) << "\n";
  485. lpos = rpos + 1;
  486. }
  487. os << "# " << replace.substr(lpos) << "\n";
  488. }
  489. // Construct the left hand side of the rule.
  490. std::string tgt = this->Convert(target, cmOutputConverter::HOME_OUTPUT,
  491. cmOutputConverter::MAKERULE);
  492. const char* space = "";
  493. if (tgt.size() == 1) {
  494. // Add a space before the ":" to avoid drive letter confusion on
  495. // Windows.
  496. space = " ";
  497. }
  498. // Mark the rule as symbolic if requested.
  499. if (symbolic) {
  500. if (const char* sym =
  501. this->Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE")) {
  502. os << cmMakeSafe(tgt) << space << ": " << sym << "\n";
  503. }
  504. }
  505. // Write the rule.
  506. if (depends.empty()) {
  507. // No dependencies. The commands will always run.
  508. os << cmMakeSafe(tgt) << space << ":\n";
  509. } else {
  510. // Split dependencies into multiple rule lines. This allows for
  511. // very long dependency lists even on older make implementations.
  512. for (std::vector<std::string>::const_iterator dep = depends.begin();
  513. dep != depends.end(); ++dep) {
  514. replace = *dep;
  515. replace = this->Convert(replace, cmOutputConverter::HOME_OUTPUT,
  516. cmOutputConverter::MAKERULE);
  517. os << cmMakeSafe(tgt) << space << ": " << cmMakeSafe(replace) << "\n";
  518. }
  519. }
  520. // Write the list of commands.
  521. os << cmWrap("\t", commands, "", "\n") << "\n";
  522. if (symbolic && !this->IsWatcomWMake()) {
  523. os << ".PHONY : " << cmMakeSafe(tgt) << "\n";
  524. }
  525. os << "\n";
  526. // Add the output to the local help if requested.
  527. if (in_help) {
  528. this->LocalHelp.push_back(target);
  529. }
  530. }
  531. std::string cmLocalUnixMakefileGenerator3::ConvertShellCommand(
  532. std::string const& cmd, cmOutputConverter::RelativeRoot root)
  533. {
  534. if (this->IsWatcomWMake() && cmSystemTools::FileIsFullPath(cmd.c_str()) &&
  535. cmd.find_first_of("( )") != cmd.npos) {
  536. // On Watcom WMake use the windows short path for the command
  537. // name. This is needed to avoid funny quoting problems on
  538. // lines with shell redirection operators.
  539. std::string scmd;
  540. if (cmSystemTools::GetShortPath(cmd, scmd)) {
  541. return this->Convert(scmd, cmOutputConverter::NONE,
  542. cmOutputConverter::SHELL);
  543. }
  544. }
  545. return this->Convert(cmd, root, cmOutputConverter::SHELL);
  546. }
  547. void cmLocalUnixMakefileGenerator3::WriteMakeVariables(
  548. std::ostream& makefileStream)
  549. {
  550. this->WriteDivider(makefileStream);
  551. makefileStream << "# Set environment variables for the build.\n"
  552. << "\n";
  553. cmGlobalUnixMakefileGenerator3* gg =
  554. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  555. if (gg->DefineWindowsNULL) {
  556. makefileStream << "!IF \"$(OS)\" == \"Windows_NT\"\n"
  557. << "NULL=\n"
  558. << "!ELSE\n"
  559. << "NULL=nul\n"
  560. << "!ENDIF\n";
  561. }
  562. if (this->IsWindowsShell()) {
  563. makefileStream << "SHELL = cmd.exe\n"
  564. << "\n";
  565. } else {
  566. #if !defined(__VMS)
  567. /* clang-format off */
  568. makefileStream
  569. << "# The shell in which to execute make rules.\n"
  570. << "SHELL = /bin/sh\n"
  571. << "\n";
  572. /* clang-format on */
  573. #endif
  574. }
  575. /* clang-format off */
  576. makefileStream
  577. << "# The CMake executable.\n"
  578. << "CMAKE_COMMAND = "
  579. << this->ConvertShellCommand(cmSystemTools::GetCMakeCommand(),
  580. cmOutputConverter::FULL)
  581. << "\n"
  582. << "\n";
  583. makefileStream
  584. << "# The command to remove a file.\n"
  585. << "RM = "
  586. << this->ConvertShellCommand(cmSystemTools::GetCMakeCommand(),
  587. cmOutputConverter::FULL)
  588. << " -E remove -f\n"
  589. << "\n";
  590. makefileStream
  591. << "# Escaping for special characters.\n"
  592. << "EQUALS = =\n"
  593. << "\n";
  594. makefileStream
  595. << "# The top-level source directory on which CMake was run.\n"
  596. << "CMAKE_SOURCE_DIR = "
  597. << this->Convert(this->GetSourceDirectory(),
  598. cmOutputConverter::FULL,
  599. cmOutputConverter::SHELL)
  600. << "\n"
  601. << "\n";
  602. makefileStream
  603. << "# The top-level build directory on which CMake was run.\n"
  604. << "CMAKE_BINARY_DIR = "
  605. << this->Convert(this->GetBinaryDirectory(),
  606. cmOutputConverter::FULL,
  607. cmOutputConverter::SHELL)
  608. << "\n"
  609. << "\n";
  610. /* clang-format on */
  611. }
  612. void cmLocalUnixMakefileGenerator3::WriteSpecialTargetsTop(
  613. std::ostream& makefileStream)
  614. {
  615. this->WriteDivider(makefileStream);
  616. makefileStream << "# Special targets provided by cmake.\n"
  617. << "\n";
  618. std::vector<std::string> no_commands;
  619. std::vector<std::string> no_depends;
  620. // Special target to cleanup operation of make tool.
  621. // This should be the first target except for the default_target in
  622. // the interface Makefile.
  623. this->WriteMakeRule(makefileStream,
  624. "Disable implicit rules so canonical targets will work.",
  625. ".SUFFIXES", no_depends, no_commands, false);
  626. if (!this->IsNMake() && !this->IsWatcomWMake() &&
  627. !this->BorlandMakeCurlyHack) {
  628. // turn off RCS and SCCS automatic stuff from gmake
  629. makefileStream
  630. << "# Remove some rules from gmake that .SUFFIXES does not remove.\n"
  631. << "SUFFIXES =\n\n";
  632. }
  633. // Add a fake suffix to keep HP happy. Must be max 32 chars for SGI make.
  634. std::vector<std::string> depends;
  635. depends.push_back(".hpux_make_needs_suffix_list");
  636. this->WriteMakeRule(makefileStream, 0, ".SUFFIXES", depends, no_commands,
  637. false);
  638. if (this->IsWatcomWMake()) {
  639. // Switch on WMake feature, if an error or interrupt occurs during
  640. // makefile processing, the current target being made may be deleted
  641. // without prompting (the same as command line -e option).
  642. /* clang-format off */
  643. makefileStream <<
  644. "\n"
  645. ".ERASE\n"
  646. "\n"
  647. ;
  648. /* clang-format on */
  649. }
  650. if (this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) {
  651. /* clang-format off */
  652. makefileStream
  653. << "# Produce verbose output by default.\n"
  654. << "VERBOSE = 1\n"
  655. << "\n";
  656. /* clang-format on */
  657. }
  658. if (this->IsWatcomWMake()) {
  659. /* clang-format off */
  660. makefileStream <<
  661. "!ifndef VERBOSE\n"
  662. ".SILENT\n"
  663. "!endif\n"
  664. "\n"
  665. ;
  666. /* clang-format on */
  667. } else {
  668. // Write special target to silence make output. This must be after
  669. // the default target in case VERBOSE is set (which changes the
  670. // name). The setting of CMAKE_VERBOSE_MAKEFILE to ON will cause a
  671. // "VERBOSE=1" to be added as a make variable which will change the
  672. // name of this special target. This gives a make-time choice to
  673. // the user.
  674. this->WriteMakeRule(makefileStream,
  675. "Suppress display of executed commands.",
  676. "$(VERBOSE).SILENT", no_depends, no_commands, false);
  677. }
  678. // Work-around for makes that drop rules that have no dependencies
  679. // or commands.
  680. cmGlobalUnixMakefileGenerator3* gg =
  681. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  682. std::string hack = gg->GetEmptyRuleHackDepends();
  683. if (!hack.empty()) {
  684. no_depends.push_back(hack);
  685. }
  686. std::string hack_cmd = gg->GetEmptyRuleHackCommand();
  687. if (!hack_cmd.empty()) {
  688. no_commands.push_back(hack_cmd);
  689. }
  690. // Special symbolic target that never exists to force dependers to
  691. // run their rules.
  692. this->WriteMakeRule(makefileStream, "A target that is always out of date.",
  693. "cmake_force", no_depends, no_commands, true);
  694. // Variables for reference by other rules.
  695. this->WriteMakeVariables(makefileStream);
  696. }
  697. void cmLocalUnixMakefileGenerator3::WriteSpecialTargetsBottom(
  698. std::ostream& makefileStream)
  699. {
  700. this->WriteDivider(makefileStream);
  701. makefileStream << "# Special targets to cleanup operation of make.\n"
  702. << "\n";
  703. // Write special "cmake_check_build_system" target to run cmake with
  704. // the --check-build-system flag.
  705. {
  706. // Build command to run CMake to check if anything needs regenerating.
  707. std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
  708. cmakefileName += "Makefile.cmake";
  709. std::string runRule =
  710. "$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
  711. runRule += " --check-build-system ";
  712. runRule += this->Convert(cmakefileName, cmOutputConverter::NONE,
  713. cmOutputConverter::SHELL);
  714. runRule += " 0";
  715. std::vector<std::string> no_depends;
  716. std::vector<std::string> commands;
  717. commands.push_back(runRule);
  718. if (!this->IsRootMakefile()) {
  719. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  720. cmOutputConverter::START_OUTPUT);
  721. }
  722. this->WriteMakeRule(
  723. makefileStream, "Special rule to run CMake to check the build system "
  724. "integrity.\n"
  725. "No rule that depends on this can have "
  726. "commands that come from listfiles\n"
  727. "because they might be regenerated.",
  728. "cmake_check_build_system", no_depends, commands, true);
  729. }
  730. }
  731. void cmLocalUnixMakefileGenerator3::WriteConvenienceRule(
  732. std::ostream& ruleFileStream, const std::string& realTarget,
  733. const std::string& helpTarget)
  734. {
  735. // A rule is only needed if the names are different.
  736. if (realTarget != helpTarget) {
  737. // The helper target depends on the real target.
  738. std::vector<std::string> depends;
  739. depends.push_back(realTarget);
  740. // There are no commands.
  741. std::vector<std::string> no_commands;
  742. // Write the rule.
  743. this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
  744. helpTarget, depends, no_commands, true);
  745. }
  746. }
  747. std::string cmLocalUnixMakefileGenerator3::GetRelativeTargetDirectory(
  748. cmGeneratorTarget* target)
  749. {
  750. std::string dir = this->HomeRelativeOutputPath;
  751. dir += this->GetTargetDirectory(target);
  752. return this->Convert(dir, cmOutputConverter::NONE,
  753. cmOutputConverter::UNCHANGED);
  754. }
  755. void cmLocalUnixMakefileGenerator3::AppendFlags(std::string& flags,
  756. const std::string& newFlags)
  757. {
  758. if (this->IsWatcomWMake() && !newFlags.empty()) {
  759. std::string newf = newFlags;
  760. if (newf.find("\\\"") != newf.npos) {
  761. cmSystemTools::ReplaceString(newf, "\\\"", "\"");
  762. this->cmLocalGenerator::AppendFlags(flags, newf);
  763. return;
  764. }
  765. }
  766. this->cmLocalGenerator::AppendFlags(flags, newFlags);
  767. }
  768. void cmLocalUnixMakefileGenerator3::AppendFlags(std::string& flags,
  769. const char* newFlags)
  770. {
  771. this->cmLocalGenerator::AppendFlags(flags, newFlags);
  772. }
  773. void cmLocalUnixMakefileGenerator3::AppendRuleDepend(
  774. std::vector<std::string>& depends, const char* ruleFileName)
  775. {
  776. // Add a dependency on the rule file itself unless an option to skip
  777. // it is specifically enabled by the user or project.
  778. const char* nodep =
  779. this->Makefile->GetDefinition("CMAKE_SKIP_RULE_DEPENDENCY");
  780. if (!nodep || cmSystemTools::IsOff(nodep)) {
  781. depends.push_back(ruleFileName);
  782. }
  783. }
  784. void cmLocalUnixMakefileGenerator3::AppendRuleDepends(
  785. std::vector<std::string>& depends, std::vector<std::string> const& ruleFiles)
  786. {
  787. // Add a dependency on the rule file itself unless an option to skip
  788. // it is specifically enabled by the user or project.
  789. if (!this->Makefile->IsOn("CMAKE_SKIP_RULE_DEPENDENCY")) {
  790. depends.insert(depends.end(), ruleFiles.begin(), ruleFiles.end());
  791. }
  792. }
  793. void cmLocalUnixMakefileGenerator3::AppendCustomDepends(
  794. std::vector<std::string>& depends, const std::vector<cmCustomCommand>& ccs)
  795. {
  796. for (std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
  797. i != ccs.end(); ++i) {
  798. cmCustomCommandGenerator ccg(*i, this->ConfigName, this);
  799. this->AppendCustomDepend(depends, ccg);
  800. }
  801. }
  802. void cmLocalUnixMakefileGenerator3::AppendCustomDepend(
  803. std::vector<std::string>& depends, cmCustomCommandGenerator const& ccg)
  804. {
  805. for (std::vector<std::string>::const_iterator d = ccg.GetDepends().begin();
  806. d != ccg.GetDepends().end(); ++d) {
  807. // Lookup the real name of the dependency in case it is a CMake target.
  808. std::string dep;
  809. if (this->GetRealDependency(*d, this->ConfigName, dep)) {
  810. depends.push_back(dep);
  811. }
  812. }
  813. }
  814. void cmLocalUnixMakefileGenerator3::AppendCustomCommands(
  815. std::vector<std::string>& commands, const std::vector<cmCustomCommand>& ccs,
  816. cmGeneratorTarget* target, cmOutputConverter::RelativeRoot relative)
  817. {
  818. for (std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
  819. i != ccs.end(); ++i) {
  820. cmCustomCommandGenerator ccg(*i, this->ConfigName, this);
  821. this->AppendCustomCommand(commands, ccg, target, true, relative);
  822. }
  823. }
  824. void cmLocalUnixMakefileGenerator3::AppendCustomCommand(
  825. std::vector<std::string>& commands, cmCustomCommandGenerator const& ccg,
  826. cmGeneratorTarget* target, bool echo_comment,
  827. cmOutputConverter::RelativeRoot relative, std::ostream* content)
  828. {
  829. // Optionally create a command to display the custom command's
  830. // comment text. This is used for pre-build, pre-link, and
  831. // post-build command comments. Custom build step commands have
  832. // their comments generated elsewhere.
  833. if (echo_comment) {
  834. const char* comment = ccg.GetComment();
  835. if (comment && *comment) {
  836. this->AppendEcho(commands, comment,
  837. cmLocalUnixMakefileGenerator3::EchoGenerate);
  838. }
  839. }
  840. // if the command specified a working directory use it.
  841. std::string dir = this->GetCurrentBinaryDirectory();
  842. std::string workingDir = ccg.GetWorkingDirectory();
  843. if (!workingDir.empty()) {
  844. dir = workingDir;
  845. }
  846. if (content) {
  847. *content << dir;
  848. }
  849. // Add each command line to the set of commands.
  850. std::vector<std::string> commands1;
  851. for (unsigned int c = 0; c < ccg.GetNumberOfCommands(); ++c) {
  852. // Build the command line in a single string.
  853. std::string cmd = ccg.GetCommand(c);
  854. if (!cmd.empty()) {
  855. // Use "call " before any invocations of .bat or .cmd files
  856. // invoked as custom commands in the WindowsShell.
  857. //
  858. bool useCall = false;
  859. if (this->IsWindowsShell()) {
  860. std::string suffix;
  861. if (cmd.size() > 4) {
  862. suffix = cmSystemTools::LowerCase(cmd.substr(cmd.size() - 4));
  863. if (suffix == ".bat" || suffix == ".cmd") {
  864. useCall = true;
  865. }
  866. }
  867. }
  868. cmSystemTools::ReplaceString(cmd, "/./", "/");
  869. // Convert the command to a relative path only if the current
  870. // working directory will be the start-output directory.
  871. bool had_slash = cmd.find('/') != cmd.npos;
  872. if (workingDir.empty()) {
  873. cmd = this->Convert(cmd, cmOutputConverter::START_OUTPUT);
  874. }
  875. bool has_slash = cmd.find('/') != cmd.npos;
  876. if (had_slash && !has_slash) {
  877. // This command was specified as a path to a file in the
  878. // current directory. Add a leading "./" so it can run
  879. // without the current directory being in the search path.
  880. cmd = "./" + cmd;
  881. }
  882. std::string launcher = this->MakeLauncher(
  883. ccg, target, workingDir.empty() ? cmOutputConverter::START_OUTPUT
  884. : cmOutputConverter::NONE);
  885. cmd = launcher + this->ConvertShellCommand(cmd, cmOutputConverter::NONE);
  886. ccg.AppendArguments(c, cmd);
  887. if (content) {
  888. // Rule content does not include the launcher.
  889. *content << (cmd.c_str() + launcher.size());
  890. }
  891. if (this->BorlandMakeCurlyHack) {
  892. // Borland Make has a very strange bug. If the first curly
  893. // brace anywhere in the command string is a left curly, it
  894. // must be written {{} instead of just {. Otherwise some
  895. // curly braces are removed. The hack can be skipped if the
  896. // first curly brace is the last character.
  897. std::string::size_type lcurly = cmd.find('{');
  898. if (lcurly != cmd.npos && lcurly < (cmd.size() - 1)) {
  899. std::string::size_type rcurly = cmd.find('}');
  900. if (rcurly == cmd.npos || rcurly > lcurly) {
  901. // The first curly is a left curly. Use the hack.
  902. std::string hack_cmd = cmd.substr(0, lcurly);
  903. hack_cmd += "{{}";
  904. hack_cmd += cmd.substr(lcurly + 1);
  905. cmd = hack_cmd;
  906. }
  907. }
  908. }
  909. if (launcher.empty()) {
  910. if (useCall) {
  911. cmd = "call " + cmd;
  912. } else if (this->IsNMake() && cmd[0] == '"') {
  913. cmd = "echo >nul && " + cmd;
  914. }
  915. }
  916. commands1.push_back(cmd);
  917. }
  918. }
  919. // Setup the proper working directory for the commands.
  920. this->CreateCDCommand(commands1, dir.c_str(), relative);
  921. // push back the custom commands
  922. commands.insert(commands.end(), commands1.begin(), commands1.end());
  923. }
  924. std::string cmLocalUnixMakefileGenerator3::MakeLauncher(
  925. cmCustomCommandGenerator const& ccg, cmGeneratorTarget* target,
  926. cmOutputConverter::RelativeRoot relative)
  927. {
  928. // Short-circuit if there is no launcher.
  929. const char* prop = "RULE_LAUNCH_CUSTOM";
  930. const char* val = this->GetRuleLauncher(target, prop);
  931. if (!(val && *val)) {
  932. return "";
  933. }
  934. // Expand rules in the empty string. It may insert the launcher and
  935. // perform replacements.
  936. RuleVariables vars;
  937. vars.RuleLauncher = prop;
  938. vars.CMTarget = target;
  939. std::string output;
  940. const std::vector<std::string>& outputs = ccg.GetOutputs();
  941. if (!outputs.empty()) {
  942. output = this->Convert(outputs[0], relative, cmOutputConverter::SHELL);
  943. }
  944. vars.Output = output.c_str();
  945. std::string launcher;
  946. this->ExpandRuleVariables(launcher, vars);
  947. if (!launcher.empty()) {
  948. launcher += " ";
  949. }
  950. return launcher;
  951. }
  952. void cmLocalUnixMakefileGenerator3::AppendCleanCommand(
  953. std::vector<std::string>& commands, const std::vector<std::string>& files,
  954. cmGeneratorTarget* target, const char* filename)
  955. {
  956. std::string cleanfile = this->GetCurrentBinaryDirectory();
  957. cleanfile += "/";
  958. cleanfile += this->GetTargetDirectory(target);
  959. cleanfile += "/cmake_clean";
  960. if (filename) {
  961. cleanfile += "_";
  962. cleanfile += filename;
  963. }
  964. cleanfile += ".cmake";
  965. std::string cleanfilePath =
  966. this->Convert(cleanfile, cmOutputConverter::FULL);
  967. cmsys::ofstream fout(cleanfilePath.c_str());
  968. if (!fout) {
  969. cmSystemTools::Error("Could not create ", cleanfilePath.c_str());
  970. }
  971. if (!files.empty()) {
  972. fout << "file(REMOVE_RECURSE\n";
  973. for (std::vector<std::string>::const_iterator f = files.begin();
  974. f != files.end(); ++f) {
  975. std::string fc = this->Convert(*f, cmOutputConverter::START_OUTPUT,
  976. cmOutputConverter::UNCHANGED);
  977. fout << " " << cmOutputConverter::EscapeForCMake(fc) << "\n";
  978. }
  979. fout << ")\n";
  980. }
  981. std::string remove = "$(CMAKE_COMMAND) -P ";
  982. remove += this->Convert(cleanfile, cmOutputConverter::START_OUTPUT,
  983. cmOutputConverter::SHELL);
  984. commands.push_back(remove);
  985. // For the main clean rule add per-language cleaning.
  986. if (!filename) {
  987. // Get the set of source languages in the target.
  988. std::set<std::string> languages;
  989. target->GetLanguages(
  990. languages, this->Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE"));
  991. /* clang-format off */
  992. fout << "\n"
  993. << "# Per-language clean rules from dependency scanning.\n"
  994. << "foreach(lang " << cmJoin(languages, " ") << ")\n"
  995. << " include(" << this->GetTargetDirectory(target)
  996. << "/cmake_clean_${lang}.cmake OPTIONAL)\n"
  997. << "endforeach()\n";
  998. /* clang-format on */
  999. }
  1000. }
  1001. void cmLocalUnixMakefileGenerator3::AppendEcho(
  1002. std::vector<std::string>& commands, std::string const& text, EchoColor color,
  1003. EchoProgress const* progress)
  1004. {
  1005. // Choose the color for the text.
  1006. std::string color_name;
  1007. if (this->GlobalGenerator->GetToolSupportsColor() && this->ColorMakefile) {
  1008. // See cmake::ExecuteEchoColor in cmake.cxx for these options.
  1009. // This color set is readable on both black and white backgrounds.
  1010. switch (color) {
  1011. case EchoNormal:
  1012. break;
  1013. case EchoDepend:
  1014. color_name = "--magenta --bold ";
  1015. break;
  1016. case EchoBuild:
  1017. color_name = "--green ";
  1018. break;
  1019. case EchoLink:
  1020. color_name = "--green --bold ";
  1021. break;
  1022. case EchoGenerate:
  1023. color_name = "--blue --bold ";
  1024. break;
  1025. case EchoGlobal:
  1026. color_name = "--cyan ";
  1027. break;
  1028. }
  1029. }
  1030. // Echo one line at a time.
  1031. std::string line;
  1032. line.reserve(200);
  1033. for (const char* c = text.c_str();; ++c) {
  1034. if (*c == '\n' || *c == '\0') {
  1035. // Avoid writing a blank last line on end-of-string.
  1036. if (*c != '\0' || !line.empty()) {
  1037. // Add a command to echo this line.
  1038. std::string cmd;
  1039. if (color_name.empty() && !progress) {
  1040. // Use the native echo command.
  1041. cmd = "@echo ";
  1042. cmd += this->EscapeForShell(line, false, true);
  1043. } else {
  1044. // Use cmake to echo the text in color.
  1045. cmd = "@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) ";
  1046. cmd += color_name;
  1047. if (progress) {
  1048. cmd += "--progress-dir=";
  1049. cmd += this->Convert(progress->Dir, cmOutputConverter::FULL,
  1050. cmOutputConverter::SHELL);
  1051. cmd += " ";
  1052. cmd += "--progress-num=";
  1053. cmd += progress->Arg;
  1054. cmd += " ";
  1055. }
  1056. cmd += this->EscapeForShell(line);
  1057. }
  1058. commands.push_back(cmd);
  1059. }
  1060. // Reset the line to emtpy.
  1061. line = "";
  1062. // Progress appears only on first line.
  1063. progress = 0;
  1064. // Terminate on end-of-string.
  1065. if (*c == '\0') {
  1066. return;
  1067. }
  1068. } else if (*c != '\r') {
  1069. // Append this character to the current line.
  1070. line += *c;
  1071. }
  1072. }
  1073. }
  1074. std::string cmLocalUnixMakefileGenerator3::CreateMakeVariable(
  1075. const std::string& sin, const std::string& s2)
  1076. {
  1077. std::string s = sin;
  1078. std::string unmodified = s;
  1079. unmodified += s2;
  1080. // if there is no restriction on the length of make variables
  1081. // and there are no "." characters in the string, then return the
  1082. // unmodified combination.
  1083. if ((!this->MakefileVariableSize && unmodified.find('.') == s.npos) &&
  1084. (!this->MakefileVariableSize && unmodified.find('+') == s.npos) &&
  1085. (!this->MakefileVariableSize && unmodified.find('-') == s.npos)) {
  1086. return unmodified;
  1087. }
  1088. // see if the variable has been defined before and return
  1089. // the modified version of the variable
  1090. std::map<std::string, std::string>::iterator i =
  1091. this->MakeVariableMap.find(unmodified);
  1092. if (i != this->MakeVariableMap.end()) {
  1093. return i->second;
  1094. }
  1095. // start with the unmodified variable
  1096. std::string ret = unmodified;
  1097. // if this there is no value for this->MakefileVariableSize then
  1098. // the string must have bad characters in it
  1099. if (!this->MakefileVariableSize) {
  1100. std::replace(ret.begin(), ret.end(), '.', '_');
  1101. cmSystemTools::ReplaceString(ret, "-", "__");
  1102. cmSystemTools::ReplaceString(ret, "+", "___");
  1103. int ni = 0;
  1104. char buffer[5];
  1105. // make sure the _ version is not already used, if
  1106. // it is used then add number to the end of the variable
  1107. while (this->ShortMakeVariableMap.count(ret) && ni < 1000) {
  1108. ++ni;
  1109. sprintf(buffer, "%04d", ni);
  1110. ret = unmodified + buffer;
  1111. }
  1112. this->ShortMakeVariableMap[ret] = "1";
  1113. this->MakeVariableMap[unmodified] = ret;
  1114. return ret;
  1115. }
  1116. // if the string is greater than 32 chars it is an invalid variable name
  1117. // for borland make
  1118. if (static_cast<int>(ret.size()) > this->MakefileVariableSize) {
  1119. int keep = this->MakefileVariableSize - 8;
  1120. int size = keep + 3;
  1121. std::string str1 = s;
  1122. std::string str2 = s2;
  1123. // we must shorten the combined string by 4 characters
  1124. // keep no more than 24 characters from the second string
  1125. if (static_cast<int>(str2.size()) > keep) {
  1126. str2 = str2.substr(0, keep);
  1127. }
  1128. if (static_cast<int>(str1.size()) + static_cast<int>(str2.size()) > size) {
  1129. str1 = str1.substr(0, size - str2.size());
  1130. }
  1131. char buffer[5];
  1132. int ni = 0;
  1133. sprintf(buffer, "%04d", ni);
  1134. ret = str1 + str2 + buffer;
  1135. while (this->ShortMakeVariableMap.count(ret) && ni < 1000) {
  1136. ++ni;
  1137. sprintf(buffer, "%04d", ni);
  1138. ret = str1 + str2 + buffer;
  1139. }
  1140. if (ni == 1000) {
  1141. cmSystemTools::Error("Borland makefile variable length too long");
  1142. return unmodified;
  1143. }
  1144. // once an unused variable is found
  1145. this->ShortMakeVariableMap[ret] = "1";
  1146. }
  1147. // always make an entry into the unmodified to variable map
  1148. this->MakeVariableMap[unmodified] = ret;
  1149. return ret;
  1150. }
  1151. bool cmLocalUnixMakefileGenerator3::UpdateDependencies(const char* tgtInfo,
  1152. bool verbose,
  1153. bool color)
  1154. {
  1155. // read in the target info file
  1156. if (!this->Makefile->ReadListFile(tgtInfo) ||
  1157. cmSystemTools::GetErrorOccuredFlag()) {
  1158. cmSystemTools::Error("Target DependInfo.cmake file not found");
  1159. }
  1160. // Check if any multiple output pairs have a missing file.
  1161. this->CheckMultipleOutputs(verbose);
  1162. std::string dir = cmSystemTools::GetFilenamePath(tgtInfo);
  1163. std::string internalDependFile = dir + "/depend.internal";
  1164. std::string dependFile = dir + "/depend.make";
  1165. // If the target DependInfo.cmake file has changed since the last
  1166. // time dependencies were scanned then force rescanning. This may
  1167. // happen when a new source file is added and CMake regenerates the
  1168. // project but no other sources were touched.
  1169. bool needRescanDependInfo = false;
  1170. cmFileTimeComparison* ftc =
  1171. this->GlobalGenerator->GetCMakeInstance()->GetFileComparison();
  1172. {
  1173. int result;
  1174. if (!ftc->FileTimeCompare(internalDependFile.c_str(), tgtInfo, &result) ||
  1175. result < 0) {
  1176. if (verbose) {
  1177. std::ostringstream msg;
  1178. msg << "Dependee \"" << tgtInfo << "\" is newer than depender \""
  1179. << internalDependFile << "\"." << std::endl;
  1180. cmSystemTools::Stdout(msg.str().c_str());
  1181. }
  1182. needRescanDependInfo = true;
  1183. }
  1184. }
  1185. // If the directory information is newer than depend.internal, include dirs
  1186. // may have changed. In this case discard all old dependencies.
  1187. bool needRescanDirInfo = false;
  1188. std::string dirInfoFile = this->GetCurrentBinaryDirectory();
  1189. dirInfoFile += cmake::GetCMakeFilesDirectory();
  1190. dirInfoFile += "/CMakeDirectoryInformation.cmake";
  1191. {
  1192. int result;
  1193. if (!ftc->FileTimeCompare(internalDependFile.c_str(), dirInfoFile.c_str(),
  1194. &result) ||
  1195. result < 0) {
  1196. if (verbose) {
  1197. std::ostringstream msg;
  1198. msg << "Dependee \"" << dirInfoFile << "\" is newer than depender \""
  1199. << internalDependFile << "\"." << std::endl;
  1200. cmSystemTools::Stdout(msg.str().c_str());
  1201. }
  1202. needRescanDirInfo = true;
  1203. }
  1204. }
  1205. // Check the implicit dependencies to see if they are up to date.
  1206. // The build.make file may have explicit dependencies for the object
  1207. // files but these will not affect the scanning process so they need
  1208. // not be considered.
  1209. std::map<std::string, cmDepends::DependencyVector> validDependencies;
  1210. bool needRescanDependencies = false;
  1211. if (!needRescanDirInfo) {
  1212. cmDependsC checker;
  1213. checker.SetVerbose(verbose);
  1214. checker.SetFileComparison(ftc);
  1215. // cmDependsC::Check() fills the vector validDependencies() with the
  1216. // dependencies for those files where they are still valid, i.e. neither
  1217. // the files themselves nor any files they depend on have changed.
  1218. // We don't do that if the CMakeDirectoryInformation.cmake file has
  1219. // changed, because then potentially all dependencies have changed.
  1220. // This information is given later on to cmDependsC, which then only
  1221. // rescans the files where it did not get valid dependencies via this
  1222. // dependency vector. This means that in the normal case, when only
  1223. // few or one file have been edited, then also only this one file is
  1224. // actually scanned again, instead of all files for this target.
  1225. needRescanDependencies = !checker.Check(
  1226. dependFile.c_str(), internalDependFile.c_str(), validDependencies);
  1227. }
  1228. if (needRescanDependInfo || needRescanDirInfo || needRescanDependencies) {
  1229. // The dependencies must be regenerated.
  1230. std::string targetName = cmSystemTools::GetFilenameName(dir);
  1231. targetName = targetName.substr(0, targetName.length() - 4);
  1232. std::string message = "Scanning dependencies of target ";
  1233. message += targetName;
  1234. cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundMagenta |
  1235. cmsysTerminal_Color_ForegroundBold,
  1236. message.c_str(), true, color);
  1237. return this->ScanDependencies(dir.c_str(), validDependencies);
  1238. }
  1239. // The dependencies are already up-to-date.
  1240. return true;
  1241. }
  1242. bool cmLocalUnixMakefileGenerator3::ScanDependencies(
  1243. const char* targetDir,
  1244. std::map<std::string, cmDepends::DependencyVector>& validDeps)
  1245. {
  1246. // Read the directory information file.
  1247. cmMakefile* mf = this->Makefile;
  1248. bool haveDirectoryInfo = false;
  1249. std::string dirInfoFile = this->GetCurrentBinaryDirectory();
  1250. dirInfoFile += cmake::GetCMakeFilesDirectory();
  1251. dirInfoFile += "/CMakeDirectoryInformation.cmake";
  1252. if (mf->ReadListFile(dirInfoFile.c_str()) &&
  1253. !cmSystemTools::GetErrorOccuredFlag()) {
  1254. haveDirectoryInfo = true;
  1255. }
  1256. // Lookup useful directory information.
  1257. if (haveDirectoryInfo) {
  1258. // Test whether we need to force Unix paths.
  1259. if (const char* force = mf->GetDefinition("CMAKE_FORCE_UNIX_PATHS")) {
  1260. if (!cmSystemTools::IsOff(force)) {
  1261. cmSystemTools::SetForceUnixPaths(true);
  1262. }
  1263. }
  1264. // Setup relative path top directories.
  1265. if (const char* relativePathTopSource =
  1266. mf->GetDefinition("CMAKE_RELATIVE_PATH_TOP_SOURCE")) {
  1267. this->StateSnapshot.GetDirectory().SetRelativePathTopSource(
  1268. relativePathTopSource);
  1269. }
  1270. if (const char* relativePathTopBinary =
  1271. mf->GetDefinition("CMAKE_RELATIVE_PATH_TOP_BINARY")) {
  1272. this->StateSnapshot.GetDirectory().SetRelativePathTopBinary(
  1273. relativePathTopBinary);
  1274. }
  1275. } else {
  1276. cmSystemTools::Error("Directory Information file not found");
  1277. }
  1278. // create the file stream for the depends file
  1279. std::string dir = targetDir;
  1280. // Open the make depends file. This should be copy-if-different
  1281. // because the make tool may try to reload it needlessly otherwise.
  1282. std::string ruleFileNameFull = dir;
  1283. ruleFileNameFull += "/depend.make";
  1284. cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
  1285. ruleFileStream.SetCopyIfDifferent(true);
  1286. if (!ruleFileStream) {
  1287. return false;
  1288. }
  1289. // Open the cmake dependency tracking file. This should not be
  1290. // copy-if-different because dependencies are re-scanned when it is
  1291. // older than the DependInfo.cmake.
  1292. std::string internalRuleFileNameFull = dir;
  1293. internalRuleFileNameFull += "/depend.internal";
  1294. cmGeneratedFileStream internalRuleFileStream(
  1295. internalRuleFileNameFull.c_str());
  1296. if (!internalRuleFileStream) {
  1297. return false;
  1298. }
  1299. this->WriteDisclaimer(ruleFileStream);
  1300. this->WriteDisclaimer(internalRuleFileStream);
  1301. // for each language we need to scan, scan it
  1302. const char* langStr = mf->GetSafeDefinition("CMAKE_DEPENDS_LANGUAGES");
  1303. std::vector<std::string> langs;
  1304. cmSystemTools::ExpandListArgument(langStr, langs);
  1305. for (std::vector<std::string>::iterator li = langs.begin();
  1306. li != langs.end(); ++li) {
  1307. // construct the checker
  1308. std::string lang = *li;
  1309. // Create the scanner for this language
  1310. cmDepends* scanner = 0;
  1311. if (lang == "C" || lang == "CXX" || lang == "RC" || lang == "ASM") {
  1312. // TODO: Handle RC (resource files) dependencies correctly.
  1313. scanner = new cmDependsC(this, targetDir, lang, &validDeps);
  1314. }
  1315. #ifdef CMAKE_BUILD_WITH_CMAKE
  1316. else if (lang == "Fortran") {
  1317. scanner = new cmDependsFortran(this);
  1318. } else if (lang == "Java") {
  1319. scanner = new cmDependsJava();
  1320. }
  1321. #endif
  1322. if (scanner) {
  1323. scanner->SetLocalGenerator(this);
  1324. scanner->SetFileComparison(
  1325. this->GlobalGenerator->GetCMakeInstance()->GetFileComparison());
  1326. scanner->SetLanguage(lang);
  1327. scanner->SetTargetDirectory(dir.c_str());
  1328. scanner->Write(ruleFileStream, internalRuleFileStream);
  1329. // free the scanner for this language
  1330. delete scanner;
  1331. }
  1332. }
  1333. return true;
  1334. }
  1335. void cmLocalUnixMakefileGenerator3::CheckMultipleOutputs(bool verbose)
  1336. {
  1337. cmMakefile* mf = this->Makefile;
  1338. // Get the string listing the multiple output pairs.
  1339. const char* pairs_string = mf->GetDefinition("CMAKE_MULTIPLE_OUTPUT_PAIRS");
  1340. if (!pairs_string) {
  1341. return;
  1342. }
  1343. // Convert the string to a list and preserve empty entries.
  1344. std::vector<std::string> pairs;
  1345. cmSystemTools::ExpandListArgument(pairs_string, pairs, true);
  1346. for (std::vector<std::string>::const_iterator i = pairs.begin();
  1347. i != pairs.end() && (i + 1) != pairs.end();) {
  1348. const std::string& depender = *i++;
  1349. const std::string& dependee = *i++;
  1350. // If the depender is missing then delete the dependee to make
  1351. // sure both will be regenerated.
  1352. if (cmSystemTools::FileExists(dependee.c_str()) &&
  1353. !cmSystemTools::FileExists(depender.c_str())) {
  1354. if (verbose) {
  1355. std::ostringstream msg;
  1356. msg << "Deleting primary custom command output \"" << dependee
  1357. << "\" because another output \"" << depender
  1358. << "\" does not exist." << std::endl;
  1359. cmSystemTools::Stdout(msg.str().c_str());
  1360. }
  1361. cmSystemTools::RemoveFile(dependee);
  1362. }
  1363. }
  1364. }
  1365. void cmLocalUnixMakefileGenerator3::WriteLocalAllRules(
  1366. std::ostream& ruleFileStream)
  1367. {
  1368. this->WriteDisclaimer(ruleFileStream);
  1369. // Write the main entry point target. This must be the VERY first
  1370. // target so that make with no arguments will run it.
  1371. {
  1372. // Just depend on the all target to drive the build.
  1373. std::vector<std::string> depends;
  1374. std::vector<std::string> no_commands;
  1375. depends.push_back("all");
  1376. // Write the rule.
  1377. this->WriteMakeRule(ruleFileStream,
  1378. "Default target executed when no arguments are "
  1379. "given to make.",
  1380. "default_target", depends, no_commands, true);
  1381. // Help out users that try "gmake target1 target2 -j".
  1382. cmGlobalUnixMakefileGenerator3* gg =
  1383. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  1384. if (gg->AllowNotParallel()) {
  1385. std::vector<std::string> no_depends;
  1386. this->WriteMakeRule(ruleFileStream, "Allow only one \"make -f "
  1387. "Makefile2\" at a time, but pass "
  1388. "parallelism.",
  1389. ".NOTPARALLEL", no_depends, no_commands, false);
  1390. }
  1391. }
  1392. this->WriteSpecialTargetsTop(ruleFileStream);
  1393. // Include the progress variables for the target.
  1394. // Write all global targets
  1395. this->WriteDivider(ruleFileStream);
  1396. ruleFileStream << "# Targets provided globally by CMake.\n"
  1397. << "\n";
  1398. std::vector<cmGeneratorTarget*> targets = this->GetGeneratorTargets();
  1399. std::vector<cmGeneratorTarget*>::iterator glIt;
  1400. for (glIt = targets.begin(); glIt != targets.end(); ++glIt) {
  1401. if ((*glIt)->GetType() == cmState::GLOBAL_TARGET) {
  1402. std::string targetString =
  1403. "Special rule for the target " + (*glIt)->GetName();
  1404. std::vector<std::string> commands;
  1405. std::vector<std::string> depends;
  1406. const char* text = (*glIt)->GetProperty("EchoString");
  1407. if (!text) {
  1408. text = "Running external command ...";
  1409. }
  1410. depends.insert(depends.end(), (*glIt)->GetUtilities().begin(),
  1411. (*glIt)->GetUtilities().end());
  1412. this->AppendEcho(commands, text,
  1413. cmLocalUnixMakefileGenerator3::EchoGlobal);
  1414. cmGeneratorTarget* gt = *glIt;
  1415. // Global targets store their rules in pre- and post-build commands.
  1416. this->AppendCustomDepends(depends, gt->GetPreBuildCommands());
  1417. this->AppendCustomDepends(depends, gt->GetPostBuildCommands());
  1418. this->AppendCustomCommands(commands, gt->GetPreBuildCommands(), gt,
  1419. cmOutputConverter::START_OUTPUT);
  1420. this->AppendCustomCommands(commands, gt->GetPostBuildCommands(), gt,
  1421. cmOutputConverter::START_OUTPUT);
  1422. std::string targetName = gt->GetName();
  1423. this->WriteMakeRule(ruleFileStream, targetString.c_str(), targetName,
  1424. depends, commands, true);
  1425. // Provide a "/fast" version of the target.
  1426. depends.clear();
  1427. if ((targetName == "install") || (targetName == "install_local") ||
  1428. (targetName == "install_strip")) {
  1429. // Provide a fast install target that does not depend on all
  1430. // but has the same command.
  1431. depends.push_back("preinstall/fast");
  1432. } else {
  1433. // Just forward to the real target so at least it will work.
  1434. depends.push_back(targetName);
  1435. commands.clear();
  1436. }
  1437. targetName += "/fast";
  1438. this->WriteMakeRule(ruleFileStream, targetString.c_str(), targetName,
  1439. depends, commands, true);
  1440. }
  1441. }
  1442. std::vector<std::string> depends;
  1443. std::vector<std::string> commands;
  1444. // Write the all rule.
  1445. std::string recursiveTarget = this->GetCurrentBinaryDirectory();
  1446. recursiveTarget += "/all";
  1447. depends.push_back("cmake_check_build_system");
  1448. std::string progressDir = this->GetBinaryDirectory();
  1449. progressDir += cmake::GetCMakeFilesDirectory();
  1450. {
  1451. std::ostringstream progCmd;
  1452. progCmd << "$(CMAKE_COMMAND) -E cmake_progress_start ";
  1453. progCmd << this->Convert(progressDir, cmOutputConverter::FULL,
  1454. cmOutputConverter::SHELL);
  1455. std::string progressFile = cmake::GetCMakeFilesDirectory();
  1456. progressFile += "/progress.marks";
  1457. std::string progressFileNameFull = this->ConvertToFullPath(progressFile);
  1458. progCmd << " "
  1459. << this->Convert(progressFileNameFull, cmOutputConverter::FULL,
  1460. cmOutputConverter::SHELL);
  1461. commands.push_back(progCmd.str());
  1462. }
  1463. std::string mf2Dir = cmake::GetCMakeFilesDirectoryPostSlash();
  1464. mf2Dir += "Makefile2";
  1465. commands.push_back(
  1466. this->GetRecursiveMakeCall(mf2Dir.c_str(), recursiveTarget));
  1467. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  1468. cmOutputConverter::START_OUTPUT);
  1469. {
  1470. std::ostringstream progCmd;
  1471. progCmd << "$(CMAKE_COMMAND) -E cmake_progress_start "; // # 0
  1472. progCmd << this->Convert(progressDir, cmOutputConverter::FULL,
  1473. cmOutputConverter::SHELL);
  1474. progCmd << " 0";
  1475. commands.push_back(progCmd.str());
  1476. }
  1477. this->WriteMakeRule(ruleFileStream, "The main all target", "all", depends,
  1478. commands, true);
  1479. // Write the clean rule.
  1480. recursiveTarget = this->GetCurrentBinaryDirectory();
  1481. recursiveTarget += "/clean";
  1482. commands.clear();
  1483. depends.clear();
  1484. commands.push_back(
  1485. this->GetRecursiveMakeCall(mf2Dir.c_str(), recursiveTarget));
  1486. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  1487. cmOutputConverter::START_OUTPUT);
  1488. this->WriteMakeRule(ruleFileStream, "The main clean target", "clean",
  1489. depends, commands, true);
  1490. commands.clear();
  1491. depends.clear();
  1492. depends.push_back("clean");
  1493. this->WriteMakeRule(ruleFileStream, "The main clean target", "clean/fast",
  1494. depends, commands, true);
  1495. // Write the preinstall rule.
  1496. recursiveTarget = this->GetCurrentBinaryDirectory();
  1497. recursiveTarget += "/preinstall";
  1498. commands.clear();
  1499. depends.clear();
  1500. const char* noall =
  1501. this->Makefile->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
  1502. if (!noall || cmSystemTools::IsOff(noall)) {
  1503. // Drive the build before installing.
  1504. depends.push_back("all");
  1505. } else {
  1506. // At least make sure the build system is up to date.
  1507. depends.push_back("cmake_check_build_system");
  1508. }
  1509. commands.push_back(
  1510. this->GetRecursiveMakeCall(mf2Dir.c_str(), recursiveTarget));
  1511. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  1512. cmOutputConverter::START_OUTPUT);
  1513. this->WriteMakeRule(ruleFileStream, "Prepare targets for installation.",
  1514. "preinstall", depends, commands, true);
  1515. depends.clear();
  1516. this->WriteMakeRule(ruleFileStream, "Prepare targets for installation.",
  1517. "preinstall/fast", depends, commands, true);
  1518. // write the depend rule, really a recompute depends rule
  1519. depends.clear();
  1520. commands.clear();
  1521. std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
  1522. cmakefileName += "Makefile.cmake";
  1523. std::string runRule =
  1524. "$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
  1525. runRule += " --check-build-system ";
  1526. runRule += this->Convert(cmakefileName, cmOutputConverter::NONE,
  1527. cmOutputConverter::SHELL);
  1528. runRule += " 1";
  1529. commands.push_back(runRule);
  1530. this->CreateCDCommand(commands, this->GetBinaryDirectory(),
  1531. cmOutputConverter::START_OUTPUT);
  1532. this->WriteMakeRule(ruleFileStream, "clear depends", "depend", depends,
  1533. commands, true);
  1534. }
  1535. void cmLocalUnixMakefileGenerator3::ClearDependencies(cmMakefile* mf,
  1536. bool verbose)
  1537. {
  1538. // Get the list of target files to check
  1539. const char* infoDef = mf->GetDefinition("CMAKE_DEPEND_INFO_FILES");
  1540. if (!infoDef) {
  1541. return;
  1542. }
  1543. std::vector<std::string> files;
  1544. cmSystemTools::ExpandListArgument(infoDef, files);
  1545. // Each depend information file corresponds to a target. Clear the
  1546. // dependencies for that target.
  1547. cmDepends clearer;
  1548. clearer.SetVerbose(verbose);
  1549. for (std::vector<std::string>::iterator l = files.begin(); l != files.end();
  1550. ++l) {
  1551. std::string dir = cmSystemTools::GetFilenamePath(*l);
  1552. // Clear the implicit dependency makefile.
  1553. std::string dependFile = dir + "/depend.make";
  1554. clearer.Clear(dependFile.c_str());
  1555. // Remove the internal dependency check file to force
  1556. // regeneration.
  1557. std::string internalDependFile = dir + "/depend.internal";
  1558. cmSystemTools::RemoveFile(internalDependFile);
  1559. }
  1560. }
  1561. namespace {
  1562. // Helper predicate for removing absolute paths that don't point to the
  1563. // source or binary directory. It is used when CMAKE_DEPENDS_IN_PROJECT_ONLY
  1564. // is set ON, to only consider in-project dependencies during the build.
  1565. class NotInProjectDir
  1566. {
  1567. public:
  1568. // Constructor with the source and binary directory's path
  1569. NotInProjectDir(const std::string& sourceDir, const std::string& binaryDir)
  1570. : SourceDir(sourceDir)
  1571. , BinaryDir(binaryDir)
  1572. {
  1573. }
  1574. // Operator evaluating the predicate
  1575. bool operator()(const std::string& path) const
  1576. {
  1577. // Keep all relative paths:
  1578. if (!cmSystemTools::FileIsFullPath(path)) {
  1579. return false;
  1580. }
  1581. // If it's an absolute path, check if it starts with the source
  1582. // direcotory:
  1583. return (
  1584. !(IsInDirectory(SourceDir, path) || IsInDirectory(BinaryDir, path)));
  1585. }
  1586. private:
  1587. // Helper function used by the predicate
  1588. static bool IsInDirectory(const std::string& baseDir,
  1589. const std::string& testDir)
  1590. {
  1591. // First check if the test directory "starts with" the base directory:
  1592. if (testDir.find(baseDir) != 0) {
  1593. return false;
  1594. }
  1595. // If it does, then check that it's either the same string, or that the
  1596. // next character is a slash:
  1597. return ((testDir.size() == baseDir.size()) ||
  1598. (testDir[baseDir.size()] == '/'));
  1599. }
  1600. // The path to the source directory
  1601. std::string SourceDir;
  1602. // The path to the binary directory
  1603. std::string BinaryDir;
  1604. };
  1605. }
  1606. void cmLocalUnixMakefileGenerator3::WriteDependLanguageInfo(
  1607. std::ostream& cmakefileStream, cmGeneratorTarget* target)
  1608. {
  1609. ImplicitDependLanguageMap const& implicitLangs =
  1610. this->GetImplicitDepends(target);
  1611. // list the languages
  1612. cmakefileStream
  1613. << "# The set of languages for which implicit dependencies are needed:\n";
  1614. cmakefileStream << "set(CMAKE_DEPENDS_LANGUAGES\n";
  1615. for (ImplicitDependLanguageMap::const_iterator l = implicitLangs.begin();
  1616. l != implicitLangs.end(); ++l) {
  1617. cmakefileStream << " \"" << l->first << "\"\n";
  1618. }
  1619. cmakefileStream << " )\n";
  1620. // now list the files for each language
  1621. cmakefileStream
  1622. << "# The set of files for implicit dependencies of each language:\n";
  1623. for (ImplicitDependLanguageMap::const_iterator l = implicitLangs.begin();
  1624. l != implicitLangs.end(); ++l) {
  1625. cmakefileStream << "set(CMAKE_DEPENDS_CHECK_" << l->first << "\n";
  1626. ImplicitDependFileMap const& implicitPairs = l->second;
  1627. // for each file pair
  1628. for (ImplicitDependFileMap::const_iterator pi = implicitPairs.begin();
  1629. pi != implicitPairs.end(); ++pi) {
  1630. for (cmDepends::DependencyVector::const_iterator di = pi->second.begin();
  1631. di != pi->second.end(); ++di) {
  1632. cmakefileStream << " \"" << *di << "\" ";
  1633. cmakefileStream << "\"" << pi->first << "\"\n";
  1634. }
  1635. }
  1636. cmakefileStream << " )\n";
  1637. // Tell the dependency scanner what compiler is used.
  1638. std::string cidVar = "CMAKE_";
  1639. cidVar += l->first;
  1640. cidVar += "_COMPILER_ID";
  1641. const char* cid = this->Makefile->GetDefinition(cidVar);
  1642. if (cid && *cid) {
  1643. cmakefileStream << "set(CMAKE_" << l->first << "_COMPILER_ID \"" << cid
  1644. << "\")\n";
  1645. }
  1646. // Build a list of preprocessor definitions for the target.
  1647. std::set<std::string> defines;
  1648. this->AddCompileDefinitions(defines, target, this->ConfigName, l->first);
  1649. if (!defines.empty()) {
  1650. /* clang-format off */
  1651. cmakefileStream
  1652. << "\n"
  1653. << "# Preprocessor definitions for this target.\n"
  1654. << "set(CMAKE_TARGET_DEFINITIONS_" << l->first << "\n";
  1655. /* clang-format on */
  1656. for (std::set<std::string>::const_iterator di = defines.begin();
  1657. di != defines.end(); ++di) {
  1658. cmakefileStream << " " << cmOutputConverter::EscapeForCMake(*di)
  1659. << "\n";
  1660. }
  1661. cmakefileStream << " )\n";
  1662. }
  1663. // Target-specific include directories:
  1664. cmakefileStream << "\n"
  1665. << "# The include file search paths:\n";
  1666. cmakefileStream << "set(CMAKE_" << l->first << "_TARGET_INCLUDE_PATH\n";
  1667. std::vector<std::string> includes;
  1668. const std::string& config =
  1669. this->Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
  1670. this->GetIncludeDirectories(includes, target, l->first, config);
  1671. if (this->Makefile->IsOn("CMAKE_DEPENDS_IN_PROJECT_ONLY")) {
  1672. const char* sourceDir = this->GetState()->GetSourceDirectory();
  1673. const char* binaryDir = this->GetState()->GetBinaryDirectory();
  1674. std::vector<std::string>::iterator itr =
  1675. std::remove_if(includes.begin(), includes.end(),
  1676. ::NotInProjectDir(sourceDir, binaryDir));
  1677. includes.erase(itr, includes.end());
  1678. }
  1679. for (std::vector<std::string>::iterator i = includes.begin();
  1680. i != includes.end(); ++i) {
  1681. cmakefileStream << " \""
  1682. << this->Convert(*i, cmOutputConverter::HOME_OUTPUT)
  1683. << "\"\n";
  1684. }
  1685. cmakefileStream << " )\n";
  1686. }
  1687. // Store include transform rule properties. Write the directory
  1688. // rules first because they may be overridden by later target rules.
  1689. std::vector<std::string> transformRules;
  1690. if (const char* xform =
  1691. this->Makefile->GetProperty("IMPLICIT_DEPENDS_INCLUDE_TRANSFORM")) {
  1692. cmSystemTools::ExpandListArgument(xform, transformRules);
  1693. }
  1694. if (const char* xform =
  1695. target->GetProperty("IMPLICIT_DEPENDS_INCLUDE_TRANSFORM")) {
  1696. cmSystemTools::ExpandListArgument(xform, transformRules);
  1697. }
  1698. if (!transformRules.empty()) {
  1699. cmakefileStream << "set(CMAKE_INCLUDE_TRANSFORMS\n";
  1700. for (std::vector<std::string>::const_iterator tri = transformRules.begin();
  1701. tri != transformRules.end(); ++tri) {
  1702. cmakefileStream << " " << cmOutputConverter::EscapeForCMake(*tri)
  1703. << "\n";
  1704. }
  1705. cmakefileStream << " )\n";
  1706. }
  1707. }
  1708. void cmLocalUnixMakefileGenerator3::WriteDisclaimer(std::ostream& os)
  1709. {
  1710. os << "# CMAKE generated file: DO NOT EDIT!\n"
  1711. << "# Generated by \"" << this->GlobalGenerator->GetName() << "\""
  1712. << " Generator, CMake Version " << cmVersion::GetMajorVersion() << "."
  1713. << cmVersion::GetMinorVersion() << "\n\n";
  1714. }
  1715. std::string cmLocalUnixMakefileGenerator3::GetRecursiveMakeCall(
  1716. const char* makefile, const std::string& tgt)
  1717. {
  1718. // Call make on the given file.
  1719. std::string cmd;
  1720. cmd += "$(MAKE) -f ";
  1721. cmd +=
  1722. this->Convert(makefile, cmOutputConverter::NONE, cmOutputConverter::SHELL);
  1723. cmd += " ";
  1724. cmGlobalUnixMakefileGenerator3* gg =
  1725. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  1726. // Pass down verbosity level.
  1727. if (!gg->MakeSilentFlag.empty()) {
  1728. cmd += gg->MakeSilentFlag;
  1729. cmd += " ";
  1730. }
  1731. // Most unix makes will pass the command line flags to make down to
  1732. // sub-invoked makes via an environment variable. However, some
  1733. // makes do not support that, so you have to pass the flags
  1734. // explicitly.
  1735. if (gg->PassMakeflags) {
  1736. cmd += "-$(MAKEFLAGS) ";
  1737. }
  1738. // Add the target.
  1739. if (!tgt.empty()) {
  1740. // The make target is always relative to the top of the build tree.
  1741. std::string tgt2 = this->Convert(tgt, cmOutputConverter::HOME_OUTPUT);
  1742. // The target may have been written with windows paths.
  1743. cmSystemTools::ConvertToOutputSlashes(tgt2);
  1744. // Escape one extra time if the make tool requires it.
  1745. if (this->MakeCommandEscapeTargetTwice) {
  1746. tgt2 = this->EscapeForShell(tgt2, true, false);
  1747. }
  1748. // The target name is now a string that should be passed verbatim
  1749. // on the command line.
  1750. cmd += this->EscapeForShell(tgt2, true, false);
  1751. }
  1752. return cmd;
  1753. }
  1754. void cmLocalUnixMakefileGenerator3::WriteDivider(std::ostream& os)
  1755. {
  1756. os << "#======================================"
  1757. << "=======================================\n";
  1758. }
  1759. void cmLocalUnixMakefileGenerator3::WriteCMakeArgument(std::ostream& os,
  1760. const char* s)
  1761. {
  1762. // Write the given string to the stream with escaping to get it back
  1763. // into CMake through the lexical scanner.
  1764. os << "\"";
  1765. for (const char* c = s; *c; ++c) {
  1766. if (*c == '\\') {
  1767. os << "\\\\";
  1768. } else if (*c == '"') {
  1769. os << "\\\"";
  1770. } else {
  1771. os << *c;
  1772. }
  1773. }
  1774. os << "\"";
  1775. }
  1776. std::string cmLocalUnixMakefileGenerator3::ConvertToQuotedOutputPath(
  1777. const char* p, bool useWatcomQuote)
  1778. {
  1779. // Split the path into its components.
  1780. std::vector<std::string> components;
  1781. cmSystemTools::SplitPath(p, components);
  1782. // Open the quoted result.
  1783. std::string result;
  1784. if (useWatcomQuote) {
  1785. #if defined(_WIN32) && !defined(__CYGWIN__)
  1786. result = "'";
  1787. #else
  1788. result = "\"'";
  1789. #endif
  1790. } else {
  1791. result = "\"";
  1792. }
  1793. // Return an empty path if there are no components.
  1794. if (!components.empty()) {
  1795. // Choose a slash direction and fix root component.
  1796. const char* slash = "/";
  1797. #if defined(_WIN32) && !defined(__CYGWIN__)
  1798. if (!cmSystemTools::GetForceUnixPaths()) {
  1799. slash = "\\";
  1800. for (std::string::iterator i = components[0].begin();
  1801. i != components[0].end(); ++i) {
  1802. if (*i == '/') {
  1803. *i = '\\';
  1804. }
  1805. }
  1806. }
  1807. #endif
  1808. // Begin the quoted result with the root component.
  1809. result += components[0];
  1810. if (components.size() > 1) {
  1811. // Now add the rest of the components separated by the proper slash
  1812. // direction for this platform.
  1813. std::vector<std::string>::const_iterator compEnd = std::remove(
  1814. components.begin() + 1, components.end() - 1, std::string());
  1815. std::vector<std::string>::const_iterator compStart =
  1816. components.begin() + 1;
  1817. result += cmJoin(cmMakeRange(compStart, compEnd), slash);
  1818. // Only the last component can be empty to avoid double slashes.
  1819. result += slash;
  1820. result += components.back();
  1821. }
  1822. }
  1823. // Close the quoted result.
  1824. if (useWatcomQuote) {
  1825. #if defined(_WIN32) && !defined(__CYGWIN__)
  1826. result += "'";
  1827. #else
  1828. result += "'\"";
  1829. #endif
  1830. } else {
  1831. result += "\"";
  1832. }
  1833. return result;
  1834. }
  1835. std::string cmLocalUnixMakefileGenerator3::GetTargetDirectory(
  1836. cmGeneratorTarget const* target) const
  1837. {
  1838. std::string dir = cmake::GetCMakeFilesDirectoryPostSlash();
  1839. dir += target->GetName();
  1840. #if defined(__VMS)
  1841. dir += "_dir";
  1842. #else
  1843. dir += ".dir";
  1844. #endif
  1845. return dir;
  1846. }
  1847. cmLocalUnixMakefileGenerator3::ImplicitDependLanguageMap const&
  1848. cmLocalUnixMakefileGenerator3::GetImplicitDepends(const cmGeneratorTarget* tgt)
  1849. {
  1850. return this->ImplicitDepends[tgt->GetName()];
  1851. }
  1852. void cmLocalUnixMakefileGenerator3::AddImplicitDepends(
  1853. const cmGeneratorTarget* tgt, const std::string& lang, const char* obj,
  1854. const char* src)
  1855. {
  1856. this->ImplicitDepends[tgt->GetName()][lang][obj].push_back(src);
  1857. }
  1858. void cmLocalUnixMakefileGenerator3::CreateCDCommand(
  1859. std::vector<std::string>& commands, const char* tgtDir,
  1860. cmOutputConverter::RelativeRoot relRetDir)
  1861. {
  1862. const char* retDir = this->GetRelativeRootPath(relRetDir);
  1863. // do we need to cd?
  1864. if (!strcmp(tgtDir, retDir)) {
  1865. return;
  1866. }
  1867. // In a Windows shell we must change drive letter too. The shell
  1868. // used by NMake and Borland make does not support "cd /d" so this
  1869. // feature simply cannot work with them (Borland make does not even
  1870. // support changing the drive letter with just "d:").
  1871. const char* cd_cmd = this->IsMinGWMake() ? "cd /d " : "cd ";
  1872. cmGlobalUnixMakefileGenerator3* gg =
  1873. static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
  1874. if (!gg->UnixCD) {
  1875. // On Windows we must perform each step separately and then change
  1876. // back because the shell keeps the working directory between
  1877. // commands.
  1878. std::string cmd = cd_cmd;
  1879. cmd += this->ConvertToOutputForExisting(tgtDir, relRetDir);
  1880. commands.insert(commands.begin(), cmd);
  1881. // Change back to the starting directory.
  1882. cmd = cd_cmd;
  1883. cmd += this->ConvertToOutputForExisting(relRetDir, tgtDir);
  1884. commands.push_back(cmd);
  1885. } else {
  1886. // On UNIX we must construct a single shell command to change
  1887. // directory and build because make resets the directory between
  1888. // each command.
  1889. std::string outputForExisting =
  1890. this->ConvertToOutputForExisting(tgtDir, relRetDir);
  1891. std::string prefix = cd_cmd + outputForExisting + " && ";
  1892. std::transform(commands.begin(), commands.end(), commands.begin(),
  1893. std::bind1st(std::plus<std::string>(), prefix));
  1894. }
  1895. }