cmLocalUnixMakefileGenerator.cxx 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288
  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 "cmGlobalGenerator.h"
  14. #include "cmLocalUnixMakefileGenerator.h"
  15. #include "cmMakefile.h"
  16. #include "cmSystemTools.h"
  17. #include "cmSourceFile.h"
  18. #include "cmMakeDepend.h"
  19. #include "cmCacheManager.h"
  20. #include "cmGeneratedFileStream.h"
  21. #include <cmsys/RegularExpression.hxx>
  22. cmLocalUnixMakefileGenerator::cmLocalUnixMakefileGenerator()
  23. {
  24. m_WindowsShell = false;
  25. m_IncludeDirective = "include";
  26. m_MakefileVariableSize = 0;
  27. m_IgnoreLibPrefix = false;
  28. m_PassMakeflags = false;
  29. m_UseRelativePaths = false;
  30. }
  31. cmLocalUnixMakefileGenerator::~cmLocalUnixMakefileGenerator()
  32. {
  33. }
  34. void cmLocalUnixMakefileGenerator::Generate(bool fromTheTop)
  35. {
  36. m_UseRelativePaths = m_Makefile->IsOn("CMAKE_USE_RELATIVE_PATHS");
  37. // suppoirt override in output directories
  38. if (m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
  39. {
  40. m_LibraryOutputPath = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
  41. if(m_LibraryOutputPath.size())
  42. {
  43. if(m_LibraryOutputPath[m_LibraryOutputPath.size() -1] != '/')
  44. {
  45. m_LibraryOutputPath += "/";
  46. }
  47. if(!cmSystemTools::MakeDirectory(m_LibraryOutputPath.c_str()))
  48. {
  49. cmSystemTools::Error("Error failed create "
  50. "LIBRARY_OUTPUT_PATH directory:",
  51. m_LibraryOutputPath.c_str());
  52. }
  53. m_Makefile->AddLinkDirectory(m_LibraryOutputPath.c_str());
  54. }
  55. }
  56. if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
  57. {
  58. m_ExecutableOutputPath =
  59. m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
  60. if(m_ExecutableOutputPath.size())
  61. {
  62. if(m_ExecutableOutputPath[m_ExecutableOutputPath.size() -1] != '/')
  63. {
  64. m_ExecutableOutputPath += "/";
  65. }
  66. if(!cmSystemTools::MakeDirectory(m_ExecutableOutputPath.c_str()))
  67. {
  68. cmSystemTools::Error("Error failed to create "
  69. "EXECUTABLE_OUTPUT_PATH directory:",
  70. m_ExecutableOutputPath.c_str());
  71. }
  72. m_Makefile->AddLinkDirectory(m_ExecutableOutputPath.c_str());
  73. }
  74. }
  75. if (!fromTheTop)
  76. {
  77. // Generate depends
  78. cmMakeDepend md;
  79. md.SetMakefile(m_Makefile);
  80. md.GenerateMakefileDependencies();
  81. this->ProcessDepends(md);
  82. }
  83. // output the makefile fragment
  84. std::string dest = m_Makefile->GetStartOutputDirectory();
  85. dest += "/Makefile";
  86. this->OutputMakefile(dest.c_str(), !fromTheTop);
  87. }
  88. void
  89. cmLocalUnixMakefileGenerator::AddDependenciesToSourceFile(cmDependInformation const *info,
  90. cmSourceFile *i,
  91. std::set<cmDependInformation const*> *visited)
  92. {
  93. // add info to the visited set
  94. visited->insert(info);
  95. // add this dependency and the recurse
  96. // now recurse with info's dependencies
  97. for(cmDependInformation::DependencySet::const_iterator d =
  98. info->m_DependencySet.begin();
  99. d != info->m_DependencySet.end(); ++d)
  100. {
  101. if (visited->find(*d) == visited->end())
  102. {
  103. if((*d)->m_FullPath != "")
  104. {
  105. i->GetDepends().push_back((*d)->m_FullPath.c_str());
  106. }
  107. this->AddDependenciesToSourceFile(*d,i,visited);
  108. }
  109. }
  110. }
  111. void cmLocalUnixMakefileGenerator::ProcessDepends(const cmMakeDepend &md)
  112. {
  113. // Now create cmDependInformation objects for files in the directory
  114. cmTargets &tgts = m_Makefile->GetTargets();
  115. for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); l++)
  116. {
  117. std::vector<cmSourceFile*> &classes = l->second.GetSourceFiles();
  118. for(std::vector<cmSourceFile*>::iterator i = classes.begin();
  119. i != classes.end(); ++i)
  120. {
  121. if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY"))
  122. {
  123. // get the depends
  124. const cmDependInformation *info =
  125. md.GetDependInformationForSourceFile(*(*i));
  126. // Delete any hints from the source file's dependencies.
  127. (*i)->GetDepends().erase((*i)->GetDepends().begin(), (*i)->GetDepends().end());
  128. // Now add the real dependencies for the file.
  129. if (info)
  130. {
  131. // create visited set
  132. std::set<cmDependInformation const*> visited;
  133. this->AddDependenciesToSourceFile(info,*i, &visited);
  134. }
  135. }
  136. }
  137. }
  138. }
  139. // This is where CMakeTargets.make is generated
  140. void cmLocalUnixMakefileGenerator::OutputMakefile(const char* file,
  141. bool withDepends)
  142. {
  143. // Create sub directories fro aux source directories
  144. std::vector<std::string>& auxSourceDirs =
  145. m_Makefile->GetAuxSourceDirectories();
  146. if( auxSourceDirs.size() )
  147. {
  148. // For the case when this is running as a remote build
  149. // on unix, make the directory
  150. for(std::vector<std::string>::iterator i = auxSourceDirs.begin();
  151. i != auxSourceDirs.end(); ++i)
  152. {
  153. if(i->c_str()[0] != '/')
  154. {
  155. std::string dir = m_Makefile->GetCurrentOutputDirectory();
  156. if(dir.size() && dir[dir.size()-1] != '/')
  157. {
  158. dir += "/";
  159. }
  160. dir += *i;
  161. cmSystemTools::MakeDirectory(dir.c_str());
  162. }
  163. else
  164. {
  165. cmSystemTools::MakeDirectory(i->c_str());
  166. }
  167. }
  168. }
  169. // Create a stream that writes to a temporary file
  170. // then does a copy at the end. This is to allow users
  171. // to hit control-c during the make of the makefile
  172. cmGeneratedFileStream tempFile(file);
  173. tempFile.SetAlwaysCopy(true);
  174. std::ostream& fout = tempFile.GetStream();
  175. if(!fout)
  176. {
  177. cmSystemTools::Error("Error can not open for write: ", file);
  178. return;
  179. }
  180. fout << "# CMAKE generated Makefile, DO NOT EDIT!\n"
  181. << "# Generated by \"" << m_GlobalGenerator->GetName() << "\""
  182. << " Generator, CMake Version "
  183. << cmMakefile::GetMajorVersion() << "."
  184. << cmMakefile::GetMinorVersion() << "\n"
  185. << "# Generated from the following files:\n# "
  186. << m_Makefile->GetHomeOutputDirectory() << "/CMakeCache.txt\n";
  187. std::vector<std::string> lfiles = m_Makefile->GetListFiles();
  188. // sort the array
  189. std::sort(lfiles.begin(), lfiles.end(), std::less<std::string>());
  190. // remove duplicates
  191. std::vector<std::string>::iterator new_end =
  192. std::unique(lfiles.begin(), lfiles.end());
  193. lfiles.erase(new_end, lfiles.end());
  194. for(std::vector<std::string>::const_iterator i = lfiles.begin();
  195. i != lfiles.end(); ++i)
  196. {
  197. fout << "# " << i->c_str() << "\n";
  198. }
  199. fout << "\n\n";
  200. fout << "# disable some common implicit rules to speed things up\n";
  201. fout << ".SUFFIXES:\n";
  202. fout << ".SUFFIXES:.hpuxmakemusthaverule\n";
  203. // create a make variable with all of the sources for this Makefile
  204. // for depend purposes.
  205. fout << "CMAKE_MAKEFILE_SOURCES = ";
  206. for(std::vector<std::string>::const_iterator i = lfiles.begin();
  207. i != lfiles.end(); ++i)
  208. {
  209. fout << " " << this->ConvertToRelativeOutputPath(i->c_str());
  210. }
  211. // Add the cache to the list
  212. std::string cacheFile = m_Makefile->GetHomeOutputDirectory();
  213. cacheFile += "/CMakeCache.txt";
  214. fout << " " << this->ConvertToRelativeOutputPath(cacheFile.c_str());
  215. fout << "\n\n\n";
  216. this->OutputMakeVariables(fout);
  217. std::string checkCache = m_Makefile->GetHomeOutputDirectory();
  218. checkCache += "/cmake.check_cache";
  219. checkCache = this->ConvertToRelativeOutputPath(checkCache.c_str());
  220. // most unix makes will pass the command line flags to make down
  221. // to sub invoked makes via an environment variable. However, some
  222. // makes do not support that, so you have to pass the flags explicitly
  223. const char* allRule = "$(MAKE) $(MAKESILENT) all";
  224. if(m_PassMakeflags)
  225. {
  226. allRule = "$(MAKE) $(MAKESILENT) -$(MAKEFLAGS) all";
  227. }
  228. // Set up the default target as the VERY first target, so that make with no arguments will run it
  229. this->
  230. OutputMakeRule(fout,
  231. "Default target executed when no arguments are given to make, first make sure cmake.depends exists, cmake.check_depends is up-to-date, check the sources, then build the all target",
  232. "default_target",
  233. checkCache.c_str(),
  234. "$(MAKE) $(MAKESILENT) cmake.depends",
  235. "$(MAKE) $(MAKESILENT) cmake.check_depends",
  236. "$(MAKE) $(MAKESILENT) -f cmake.check_depends",
  237. allRule);
  238. // Generation of SILENT target must be after default_target.
  239. if(!m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
  240. {
  241. fout << "# Suppresses display of executed commands\n";
  242. fout << "$(VERBOSE).SILENT:\n\n";
  243. }
  244. this->OutputTargetRules(fout);
  245. this->OutputDependLibs(fout);
  246. this->OutputTargets(fout);
  247. this->OutputSubDirectoryRules(fout);
  248. std::string dependName = m_Makefile->GetStartOutputDirectory();
  249. dependName += "/cmake.depends";
  250. if(withDepends)
  251. {
  252. std::ofstream dependout(dependName.c_str());
  253. if(!dependout)
  254. {
  255. cmSystemTools::Error("Error can not open for write: ", dependName.c_str());
  256. return;
  257. }
  258. dependout << "# .o dependencies in this directory." << std::endl;
  259. std::string checkDepend = m_Makefile->GetStartOutputDirectory();
  260. checkDepend += "/cmake.check_depends";
  261. std::ofstream checkdependout(checkDepend.c_str());
  262. if(!checkdependout)
  263. {
  264. cmSystemTools::Error("Error can not open for write: ", checkDepend.c_str());
  265. return;
  266. }
  267. checkdependout << "# This file is used as a tag file, that all sources depend on. If a source changes, then the rule to rebuild this file will cause cmake.depends to be rebuilt." << std::endl;
  268. // if there were any depends output, then output the check depends
  269. // information inot checkdependout
  270. if(this->OutputObjectDepends(dependout))
  271. {
  272. this->OutputCheckDepends(checkdependout);
  273. }
  274. else
  275. {
  276. checkdependout << "all:\n\t@echo cmake.depends is up-to-date\n";
  277. }
  278. }
  279. this->OutputCustomRules(fout);
  280. this->OutputMakeRules(fout);
  281. // only add the depend include if the depend file exists
  282. if(cmSystemTools::FileExists(dependName.c_str()))
  283. {
  284. fout << m_IncludeDirective << " cmake.depends\n";
  285. }
  286. }
  287. std::string cmLocalUnixMakefileGenerator::GetOutputExtension(const char* s)
  288. {
  289. if(m_Makefile->IsOn("WIN32") && !(m_Makefile->IsOn("CYGWIN") || m_Makefile->IsOn("MINGW")))
  290. {
  291. std::string sourceExtension = s;
  292. if(sourceExtension == "def")
  293. {
  294. return "";
  295. }
  296. if(sourceExtension == "ico" || sourceExtension == "rc2")
  297. {
  298. return "";
  299. }
  300. if(sourceExtension == "rc")
  301. {
  302. return ".res";
  303. }
  304. return ".obj";
  305. }
  306. else
  307. {
  308. return ".o";
  309. }
  310. }
  311. std::string cmLocalUnixMakefileGenerator::GetBaseTargetName(const char* n,
  312. const cmTarget& t)
  313. {
  314. const char* targetPrefix = t.GetProperty("PREFIX");
  315. const char* prefixVar = 0;
  316. switch(t.GetType())
  317. {
  318. case cmTarget::STATIC_LIBRARY:
  319. prefixVar = "CMAKE_STATIC_LIBRARY_PREFIX";
  320. break;
  321. case cmTarget::SHARED_LIBRARY:
  322. prefixVar = "CMAKE_SHARED_LIBRARY_PREFIX";
  323. break;
  324. case cmTarget::MODULE_LIBRARY:
  325. prefixVar = "CMAKE_SHARED_MODULE_PREFIX";
  326. break;
  327. case cmTarget::EXECUTABLE:
  328. case cmTarget::UTILITY:
  329. case cmTarget::INSTALL_FILES:
  330. case cmTarget::INSTALL_PROGRAMS:
  331. break;
  332. }
  333. // if there is no prefix on the target use the cmake definition
  334. if(!targetPrefix && prefixVar)
  335. {
  336. targetPrefix = m_Makefile->GetSafeDefinition(prefixVar);
  337. }
  338. std::string name = targetPrefix?targetPrefix:"";
  339. name += n;
  340. return name;
  341. }
  342. std::string cmLocalUnixMakefileGenerator::GetFullTargetName(const char* n,
  343. const cmTarget& t)
  344. {
  345. const char* targetSuffix = t.GetProperty("SUFFIX");
  346. const char* suffixVar = 0;
  347. switch(t.GetType())
  348. {
  349. case cmTarget::STATIC_LIBRARY:
  350. suffixVar = "CMAKE_STATIC_LIBRARY_SUFFIX";
  351. break;
  352. case cmTarget::SHARED_LIBRARY:
  353. suffixVar = "CMAKE_SHARED_LIBRARY_SUFFIX";
  354. break;
  355. case cmTarget::MODULE_LIBRARY:
  356. suffixVar = "CMAKE_SHARED_MODULE_SUFFIX";
  357. break;
  358. case cmTarget::EXECUTABLE:
  359. targetSuffix = cmSystemTools::GetExecutableExtension();
  360. case cmTarget::UTILITY:
  361. case cmTarget::INSTALL_FILES:
  362. case cmTarget::INSTALL_PROGRAMS:
  363. break;
  364. }
  365. // if there is no suffix on the target use the cmake definition
  366. if(!targetSuffix && suffixVar)
  367. {
  368. targetSuffix = m_Makefile->GetSafeDefinition(suffixVar);
  369. }
  370. std::string name = this->GetBaseTargetName(n, t);
  371. name += targetSuffix?targetSuffix:"";
  372. return name;
  373. }
  374. // Output the rules for any targets
  375. void cmLocalUnixMakefileGenerator::OutputEcho(std::ostream& fout,
  376. const char *msg)
  377. {
  378. std::string echostring = msg;
  379. // for unix we want to quote the output of echo
  380. // for nmake and borland, the echo should not be quoted
  381. if(strcmp(m_GlobalGenerator->GetName(), "Unix Makefiles") == 0)
  382. {
  383. cmSystemTools::ReplaceString(echostring, "\\\n", " ");
  384. cmSystemTools::ReplaceString(echostring, " \t", " ");
  385. cmSystemTools::ReplaceString(echostring, "\n\t", "\"\n\t@echo \"");
  386. fout << "\t@echo \"" << echostring.c_str() << "\"\n";
  387. }
  388. else
  389. {
  390. cmSystemTools::ReplaceString(echostring, "\n\t", "\n\t@echo ");
  391. fout << "\t@echo " << echostring.c_str() << "\n";
  392. }
  393. }
  394. // Output the rules for any targets
  395. void cmLocalUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
  396. {
  397. const cmTargets &tgts = m_Makefile->GetTargets();
  398. // add the help target
  399. fout << "help:\n";
  400. this->OutputEcho(fout,"The following are some of the valid targets for this Makefile:");
  401. this->OutputEcho(fout,"... all (the default if no target is provided)");
  402. this->OutputEcho(fout,"... clean");
  403. this->OutputEcho(fout,"... depend");
  404. this->OutputEcho(fout,"... install");
  405. this->OutputEcho(fout,"... rebuild_cache");
  406. // libraries
  407. std::string path;
  408. for(cmTargets::const_iterator l = tgts.begin();
  409. l != tgts.end(); l++)
  410. {
  411. if((l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
  412. (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
  413. (l->second.GetType() == cmTarget::MODULE_LIBRARY))
  414. {
  415. std::string path2 = m_LibraryOutputPath;
  416. path2 += this->GetFullTargetName(l->first.c_str(), l->second);
  417. path = "... ";
  418. path += this->ConvertToRelativeOutputPath(path2.c_str());
  419. this->OutputEcho(fout,path.c_str());
  420. }
  421. }
  422. // executables
  423. for(cmTargets::const_iterator l = tgts.begin();
  424. l != tgts.end(); l++)
  425. {
  426. if ( l->second.GetType() == cmTarget::EXECUTABLE )
  427. {
  428. path = "... ";
  429. path += l->first + cmSystemTools::GetExecutableExtension();
  430. this->OutputEcho(fout,path.c_str());
  431. }
  432. }
  433. // list utilities last
  434. for(cmTargets::const_iterator l = tgts.begin();
  435. l != tgts.end(); l++)
  436. {
  437. if (l->second.GetType() == cmTarget::UTILITY)
  438. {
  439. path = "... ";
  440. path += l->first;
  441. this->OutputEcho(fout,path.c_str());
  442. }
  443. }
  444. fout << "\n\n";
  445. // for each target add to the list of targets
  446. fout << "TARGETS = ";
  447. // list libraries first
  448. for(cmTargets::const_iterator l = tgts.begin();
  449. l != tgts.end(); l++)
  450. {
  451. if (l->second.IsInAll())
  452. {
  453. if((l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
  454. (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
  455. (l->second.GetType() == cmTarget::MODULE_LIBRARY))
  456. {
  457. path = m_LibraryOutputPath;
  458. path += this->GetFullTargetName(l->first.c_str(), l->second);
  459. fout << " \\\n"
  460. << this->ConvertToMakeTarget(this->ConvertToRelativeOutputPath(path.c_str()).c_str());
  461. }
  462. }
  463. }
  464. // executables
  465. for(cmTargets::const_iterator l = tgts.begin();
  466. l != tgts.end(); l++)
  467. {
  468. if (l->second.GetType() == cmTarget::EXECUTABLE &&
  469. l->second.IsInAll())
  470. {
  471. path = m_ExecutableOutputPath;
  472. path += this->GetFullTargetName(l->first.c_str(), l->second);
  473. fout << " \\\n" << this->ConvertToMakeTarget(this->ConvertToRelativeOutputPath(path.c_str()).c_str());
  474. }
  475. }
  476. // list utilities last
  477. for(cmTargets::const_iterator l = tgts.begin();
  478. l != tgts.end(); l++)
  479. {
  480. if (l->second.GetType() == cmTarget::UTILITY &&
  481. l->second.IsInAll())
  482. {
  483. fout << " \\\n" << l->first.c_str();
  484. }
  485. }
  486. fout << "\n\n";
  487. // get the classes from the source lists then add them to the groups
  488. for(cmTargets::const_iterator l = tgts.begin();
  489. l != tgts.end(); l++)
  490. {
  491. std::vector<cmSourceFile*> classes = l->second.GetSourceFiles();
  492. if (classes.begin() != classes.end())
  493. {
  494. fout << this->CreateMakeVariable(l->first.c_str(), "_SRC_OBJS") << " = ";
  495. for(std::vector<cmSourceFile*>::iterator i = classes.begin();
  496. i != classes.end(); i++)
  497. {
  498. if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
  499. !(*i)->GetCustomCommand())
  500. {
  501. std::string outExt(
  502. this->GetOutputExtension((*i)->GetSourceExtension().c_str()));
  503. if(outExt.size() && !(*i)->GetPropertyAsBool("EXTERNAL_OBJECT") )
  504. {
  505. fout << "\\\n";
  506. std::string ofname = (*i)->GetSourceName() + outExt;
  507. ofname = this->CreateSafeUniqueObjectFileName(ofname.c_str());
  508. fout << this->ConvertToMakeTarget(this->ConvertToRelativeOutputPath(ofname.c_str()).c_str());
  509. }
  510. }
  511. }
  512. fout << "\n\n";
  513. fout << this->CreateMakeVariable(l->first.c_str(), "_EXTERNAL_OBJS") << " = ";
  514. for(std::vector<cmSourceFile*>::iterator i = classes.begin();
  515. i != classes.end(); i++)
  516. {
  517. if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
  518. !(*i)->GetCustomCommand())
  519. {
  520. std::string outExt(
  521. this->GetOutputExtension((*i)->GetSourceExtension().c_str()));
  522. if(outExt.size() && (*i)->GetPropertyAsBool("EXTERNAL_OBJECT") )
  523. {
  524. fout << "\\\n";
  525. fout << this->ConvertToMakeTarget(this->ConvertToRelativeOutputPath((*i)->GetFullPath().c_str()).c_str()) << " ";
  526. }
  527. }
  528. }
  529. fout << "\n\n";
  530. fout << this->CreateMakeVariable(l->first.c_str(), "_SRC_OBJS_QUOTED") << " = ";
  531. for(std::vector<cmSourceFile*>::iterator i = classes.begin();
  532. i != classes.end(); i++)
  533. {
  534. if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
  535. !(*i)->GetCustomCommand())
  536. {
  537. std::string outExt(this->GetOutputExtension((*i)->GetSourceExtension().c_str()));
  538. if(outExt.size() && !(*i)->GetPropertyAsBool("EXTERNAL_OBJECT") )
  539. {
  540. std::string ofname = (*i)->GetSourceName() + outExt;
  541. ofname = this->CreateSafeUniqueObjectFileName(ofname.c_str());
  542. fout << "\\\n\"" << this->ConvertToMakeTarget(ConvertToRelativeOutputPath(ofname.c_str()).c_str()) << "\" ";
  543. }
  544. }
  545. }
  546. fout << "\n\n";
  547. fout << this->CreateMakeVariable(l->first.c_str(), "_EXTERNAL_OBJS_QUOTED") << " = ";
  548. for(std::vector<cmSourceFile*>::iterator i = classes.begin();
  549. i != classes.end(); i++)
  550. {
  551. if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
  552. !(*i)->GetCustomCommand())
  553. {
  554. std::string outExt(this->GetOutputExtension((*i)->GetSourceExtension().c_str()));
  555. if(outExt.size() && (*i)->GetPropertyAsBool("EXTERNAL_OBJECT") )
  556. {
  557. fout << "\\\n\"" << this->ConvertToMakeTarget(ConvertToRelativeOutputPath((*i)->GetFullPath().c_str()).c_str()) << "\" ";
  558. }
  559. }
  560. }
  561. fout << "\n\n";
  562. }
  563. }
  564. // This list contains extra files created for a target. It includes
  565. // the extra names associated with a versioned shared library.
  566. fout << "TARGET_EXTRAS = ";
  567. for(cmTargets::const_iterator l = tgts.begin();
  568. l != tgts.end(); l++)
  569. {
  570. if (l->second.IsInAll())
  571. {
  572. if(l->second.GetType() == cmTarget::SHARED_LIBRARY ||
  573. l->second.GetType() == cmTarget::MODULE_LIBRARY)
  574. {
  575. std::string targetName;
  576. std::string targetNameSO;
  577. std::string targetNameReal;
  578. std::string targetNameBase;
  579. this->GetLibraryNames(l->first.c_str(), l->second,
  580. targetName, targetNameSO,
  581. targetNameReal, targetNameBase);
  582. if(targetNameSO != targetName)
  583. {
  584. path = m_LibraryOutputPath;
  585. path += targetNameSO;
  586. fout << " \\\n"
  587. << this->ConvertToRelativeOutputPath(path.c_str());
  588. }
  589. if(targetNameReal != targetName &&
  590. targetNameReal != targetNameSO)
  591. {
  592. path = m_LibraryOutputPath;
  593. path += targetNameReal;
  594. fout << " \\\n"
  595. << this->ConvertToRelativeOutputPath(path.c_str());
  596. }
  597. }
  598. }
  599. }
  600. fout << "\n\n";
  601. fout << "CLEAN_OBJECT_FILES = ";
  602. for(cmTargets::const_iterator l = tgts.begin();
  603. l != tgts.end(); l++)
  604. {
  605. std::vector<cmSourceFile*> classes = l->second.GetSourceFiles();
  606. if (classes.begin() != classes.end())
  607. {
  608. fout << "$(" << this->CreateMakeVariable(l->first.c_str(), "_SRC_OBJS")
  609. << ") ";
  610. }
  611. }
  612. fout << "\n\n";
  613. const char * additional_clean_files =
  614. m_Makefile->GetProperty("ADDITIONAL_MAKE_CLEAN_FILES");
  615. if ( additional_clean_files && strlen(additional_clean_files) > 0 )
  616. {
  617. std::string arg = additional_clean_files;
  618. std::vector<std::string> args;
  619. cmSystemTools::ExpandListArgument(arg, args);
  620. fout << "ADDITIONAL_MAKE_CLEAN_FILES = ";
  621. for(std::vector<std::string>::iterator i = args.begin(); i != args.end(); ++i)
  622. {
  623. fout << this->ConvertToRelativeOutputPath(i->c_str()) << " ";
  624. }
  625. fout << "\n\n";
  626. }
  627. const char * qt_files = m_Makefile->GetDefinition("GENERATED_QT_FILES");
  628. if (qt_files != NULL &&
  629. strlen(m_Makefile->GetDefinition("GENERATED_QT_FILES"))>0)
  630. {
  631. fout << "GENERATED_QT_FILES = ";
  632. fout << qt_files;
  633. fout << "\n\n";
  634. }
  635. }
  636. /**
  637. * Output the linking rules on a command line. For executables,
  638. * targetLibrary should be a NULL pointer. For libraries, it should point
  639. * to the name of the library. This will not link a library against itself.
  640. */
  641. void cmLocalUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
  642. const char* targetLibrary,
  643. const cmTarget &tgt)
  644. {
  645. // Try to emit each search path once
  646. std::set<std::string> emitted;
  647. // Embed runtime search paths if possible and if required.
  648. bool outputRuntime = true;
  649. std::string runtimeFlag;
  650. std::string runtimeSep;
  651. std::vector<std::string> runtimeDirs;
  652. std::string buildType = m_Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
  653. buildType = cmSystemTools::UpperCase(buildType);
  654. bool cxx = tgt.HasCxx();
  655. if(!cxx )
  656. {
  657. // if linking a c executable use the C runtime flag as cc
  658. // may not be the same program that creates shared libaries
  659. // and may have different flags
  660. runtimeFlag = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_RUNTIME_FLAG");
  661. runtimeSep = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_RUNTIME_FLAG_SEP");
  662. }
  663. else
  664. {
  665. runtimeFlag = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG");
  666. runtimeSep = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP");
  667. }
  668. // concatenate all paths or no?
  669. bool runtimeConcatenate = ( runtimeSep!="" );
  670. if(runtimeFlag == "" || m_Makefile->IsOn("CMAKE_SKIP_RPATH") )
  671. {
  672. outputRuntime = false;
  673. }
  674. // Some search paths should never be emitted
  675. emitted.insert("");
  676. emitted.insert("/usr/lib");
  677. std::string libPathFlag = m_Makefile->GetDefinition("CMAKE_LIBRARY_PATH_FLAG");
  678. std::string libLinkFlag = m_Makefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_FLAG");
  679. // collect all the flags needed for linking libraries
  680. std::string linkLibs;
  681. // Flags to link an executable to shared libraries.
  682. if( tgt.GetType() == cmTarget::EXECUTABLE )
  683. {
  684. if(cxx)
  685. {
  686. linkLibs = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS");
  687. }
  688. else
  689. {
  690. linkLibs = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_LINK_FLAGS");
  691. }
  692. linkLibs += " ";
  693. }
  694. const std::vector<std::string>& libdirs = tgt.GetLinkDirectories();
  695. for(std::vector<std::string>::const_iterator libDir = libdirs.begin();
  696. libDir != libdirs.end(); ++libDir)
  697. {
  698. std::string libpath = this->ConvertToOutputForExisting(libDir->c_str());
  699. if(emitted.insert(libpath).second)
  700. {
  701. std::string fullLibPath;
  702. if(!m_WindowsShell && m_UseRelativePaths)
  703. {
  704. fullLibPath = "\"`cd ";
  705. }
  706. fullLibPath += libpath;
  707. if(!m_WindowsShell && m_UseRelativePaths)
  708. {
  709. fullLibPath += ";pwd`\"";
  710. }
  711. std::string::size_type pos = libDir->find(libPathFlag.c_str());
  712. if((pos == std::string::npos || pos > 0)
  713. && libDir->find("${") == std::string::npos)
  714. {
  715. linkLibs += libPathFlag;
  716. if(outputRuntime)
  717. {
  718. runtimeDirs.push_back( fullLibPath );
  719. }
  720. }
  721. linkLibs += fullLibPath;
  722. linkLibs += " ";
  723. }
  724. }
  725. std::string linkSuffix = m_Makefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_SUFFIX");
  726. std::string regexp = ".*\\";
  727. regexp += linkSuffix;
  728. regexp += "$";
  729. cmsys::RegularExpression hasSuffix(regexp.c_str());
  730. std::string librariesLinked;
  731. const cmTarget::LinkLibraries& libs = tgt.GetLinkLibraries();
  732. for(cmTarget::LinkLibraries::const_iterator lib = libs.begin();
  733. lib != libs.end(); ++lib)
  734. {
  735. // Don't link the library against itself!
  736. if(targetLibrary && (lib->first == targetLibrary)) continue;
  737. // use the correct lib for the current configuration
  738. if (lib->second == cmTarget::DEBUG && buildType != "DEBUG")
  739. {
  740. continue;
  741. }
  742. if (lib->second == cmTarget::OPTIMIZED && buildType == "DEBUG")
  743. {
  744. continue;
  745. }
  746. // skip zero size library entries, this may happen
  747. // if a variable expands to nothing.
  748. if (lib->first.size() == 0) continue;
  749. // if it is a full path break it into -L and -l
  750. cmsys::RegularExpression reg("^([ \t]*\\-[lWRB])|([ \t]*\\-framework)|(\\${)|([ \t]*\\-pthread)|([ \t]*`)");
  751. if(lib->first.find('/') != std::string::npos
  752. && !reg.find(lib->first))
  753. {
  754. std::string dir, file;
  755. cmSystemTools::SplitProgramPath(lib->first.c_str(),
  756. dir, file);
  757. std::string libpath = this->ConvertToOutputForExisting(dir.c_str());
  758. if(emitted.insert(libpath).second)
  759. {
  760. linkLibs += libPathFlag;
  761. linkLibs += libpath;
  762. linkLibs += " ";
  763. if(outputRuntime)
  764. {
  765. runtimeDirs.push_back( libpath );
  766. }
  767. }
  768. cmsys::RegularExpression libname("^lib([^/]*)(\\.so|\\.lib|\\.dll|\\.sl|\\.a|\\.dylib).*");
  769. cmsys::RegularExpression libname_noprefix("([^/]*)(\\.so|\\.lib|\\.dll|\\.sl|\\.a|\\.dylib).*");
  770. if(libname.find(file))
  771. {
  772. // Library had "lib" prefix.
  773. librariesLinked += libLinkFlag;
  774. file = libname.match(1);
  775. // if ignore libprefix is on,
  776. // then add the lib prefix back into the name
  777. if(m_IgnoreLibPrefix)
  778. {
  779. std::cout << "m_IgnoreLibPrefix\n";
  780. file = "lib" + file;
  781. }
  782. librariesLinked += file;
  783. if(linkSuffix.size() && !hasSuffix.find(file))
  784. {
  785. librariesLinked += linkSuffix;
  786. }
  787. librariesLinked += " ";
  788. }
  789. else if(libname_noprefix.find(file))
  790. {
  791. // Library had no "lib" prefix.
  792. librariesLinked += libLinkFlag;
  793. file = libname_noprefix.match(1);
  794. librariesLinked += file;
  795. if(linkSuffix.size() && !hasSuffix.find(file))
  796. {
  797. librariesLinked += linkSuffix;
  798. }
  799. librariesLinked += " ";
  800. }
  801. else
  802. {
  803. // Error parsing the library name. Just use the full path.
  804. // The linker will give an error if it is invalid.
  805. librariesLinked += lib->first;
  806. librariesLinked += " ";
  807. }
  808. }
  809. // not a full path, so add -l name
  810. else
  811. {
  812. if(!reg.find(lib->first))
  813. {
  814. librariesLinked += libLinkFlag;
  815. }
  816. librariesLinked += lib->first;
  817. if(linkSuffix.size() && !hasSuffix.find(lib->first))
  818. {
  819. librariesLinked += linkSuffix;
  820. }
  821. librariesLinked += " ";
  822. }
  823. }
  824. linkLibs += librariesLinked;
  825. fout << linkLibs;
  826. if(outputRuntime && runtimeDirs.size()>0)
  827. {
  828. // For the runtime search directories, do a "-Wl,-rpath,a:b:c" or
  829. // a "-R a -R b -R c" type link line
  830. fout << runtimeFlag;
  831. std::vector<std::string>::iterator itr = runtimeDirs.begin();
  832. fout << *itr;
  833. ++itr;
  834. for( ; itr != runtimeDirs.end(); ++itr )
  835. {
  836. if(runtimeConcatenate)
  837. {
  838. fout << runtimeSep << *itr;
  839. }
  840. else
  841. {
  842. fout << " " << runtimeFlag << *itr;
  843. }
  844. }
  845. fout << " ";
  846. }
  847. if(m_Makefile->GetDefinition("CMAKE_STANDARD_LIBRARIES"))
  848. {
  849. fout << m_Makefile->GetDefinition("CMAKE_STANDARD_LIBRARIES") << " ";
  850. }
  851. }
  852. std::string cmLocalUnixMakefileGenerator::CreatePreBuildRules(
  853. const cmTarget &target, const char* /* targetName */)
  854. {
  855. std::string customRuleCode = "";
  856. bool initNext = false;
  857. for (std::vector<cmCustomCommand>::const_iterator cr =
  858. target.GetPreBuildCommands().begin();
  859. cr != target.GetPreBuildCommands().end(); ++cr)
  860. {
  861. cmCustomCommand cc(*cr);
  862. cc.ExpandVariables(*m_Makefile);
  863. if(initNext)
  864. {
  865. customRuleCode += "\n\t";
  866. }
  867. else
  868. {
  869. initNext = true;
  870. }
  871. std::string command = this->ConvertToRelativeOutputPath(cc.GetCommand().c_str());
  872. customRuleCode += command + " " + cc.GetArguments();
  873. }
  874. return customRuleCode;
  875. }
  876. std::string cmLocalUnixMakefileGenerator::CreatePreLinkRules(
  877. const cmTarget &target, const char* /* targetName */)
  878. {
  879. std::string customRuleCode = "";
  880. bool initNext = false;
  881. for (std::vector<cmCustomCommand>::const_iterator cr =
  882. target.GetPreLinkCommands().begin();
  883. cr != target.GetPreLinkCommands().end(); ++cr)
  884. {
  885. cmCustomCommand cc(*cr);
  886. cc.ExpandVariables(*m_Makefile);
  887. if(initNext)
  888. {
  889. customRuleCode += "\n\t";
  890. }
  891. else
  892. {
  893. initNext = true;
  894. }
  895. std::string command = this->ConvertToRelativeOutputPath(cc.GetCommand().c_str());
  896. customRuleCode += command + " " + cc.GetArguments();
  897. }
  898. return customRuleCode;
  899. }
  900. std::string cmLocalUnixMakefileGenerator::CreatePostBuildRules(
  901. const cmTarget &target, const char* /* targetName */)
  902. {
  903. std::string customRuleCode = "";
  904. bool initNext = false;
  905. for (std::vector<cmCustomCommand>::const_iterator cr =
  906. target.GetPostBuildCommands().begin();
  907. cr != target.GetPostBuildCommands().end(); ++cr)
  908. {
  909. cmCustomCommand cc(*cr);
  910. cc.ExpandVariables(*m_Makefile);
  911. if(initNext)
  912. {
  913. customRuleCode += "\n\t";
  914. }
  915. else
  916. {
  917. initNext = true;
  918. }
  919. std::string command = this->ConvertToRelativeOutputPath(cc.GetCommand().c_str());
  920. customRuleCode += command + " " + cc.GetArguments();
  921. }
  922. return customRuleCode;
  923. }
  924. struct RuleVariables
  925. {
  926. const char* replace;
  927. const char* lookup;
  928. };
  929. static RuleVariables ruleReplaceVars[] =
  930. {
  931. {"<CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS>", "CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS"},
  932. {"<CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS>", "CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS"},
  933. {"<CMAKE_SHARED_MODULE_C_FLAGS>", "CMAKE_SHARED_MODULE_C_FLAGS"},
  934. {"<CMAKE_SHARED_MODULE_CXX_FLAGS>", "CMAKE_SHARED_MODULE_CXX_FLAGS"},
  935. {"<CMAKE_SHARED_LIBRARY_C_FLAGS>", "CMAKE_SHARED_LIBRARY_C_FLAGS"},
  936. {"<CMAKE_SHARED_LIBRARY_CXX_FLAGS>", "CMAKE_SHARED_LIBRARY_CXX_FLAGS"},
  937. {"<CMAKE_CXX_LINK_FLAGS>", "CMAKE_CXX_LINK_FLAGS"},
  938. {"<CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS>", "CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS"},
  939. {"<CMAKE_SHARED_MODULE_CREATE_C_FLAGS>", "CMAKE_SHARED_MODULE_CREATE_C_FLAGS"},
  940. {"<CMAKE_SHARED_LIBRARY_SONAME_C_FLAG>", "CMAKE_SHARED_LIBRARY_SONAME_C_FLAG"},
  941. {"<CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG>", "CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG"},
  942. {"<CMAKE_C_LINK_FLAGS>", "CMAKE_C_LINK_FLAGS"},
  943. {"<CMAKE_AR>", "CMAKE_AR"},
  944. {"<CMAKE_RANLIB>", "CMAKE_RANLIB"},
  945. {0, 0}
  946. };
  947. void
  948. cmLocalUnixMakefileGenerator::ExpandRuleVariables(std::string& s,
  949. const char* objects,
  950. const char* target,
  951. const char* linkLibs,
  952. const char* source,
  953. const char* object,
  954. const char* flags,
  955. const char* objectsquoted,
  956. const char* targetBase,
  957. const char* targetSOName,
  958. const char* linkFlags)
  959. {
  960. std::string cxxcompiler = this->ConvertToOutputForExisting(
  961. m_Makefile->GetSafeDefinition("CMAKE_CXX_COMPILER"));
  962. std::string ccompiler = this->ConvertToOutputForExisting(
  963. m_Makefile->GetSafeDefinition("CMAKE_C_COMPILER"));
  964. cmSystemTools::ReplaceString(s, "<CMAKE_CXX_COMPILER>", cxxcompiler.c_str());
  965. cmSystemTools::ReplaceString(s, "<CMAKE_C_COMPILER>", ccompiler.c_str());
  966. if(linkFlags)
  967. {
  968. cmSystemTools::ReplaceString(s, "<LINK_FLAGS>", linkFlags);
  969. }
  970. if(flags)
  971. {
  972. cmSystemTools::ReplaceString(s, "<FLAGS>", flags);
  973. }
  974. if(source)
  975. {
  976. cmSystemTools::ReplaceString(s, "<SOURCE>", source);
  977. }
  978. if(object)
  979. {
  980. cmSystemTools::ReplaceString(s, "<OBJECT>", object);
  981. }
  982. if(objects)
  983. {
  984. cmSystemTools::ReplaceString(s, "<OBJECTS>", objects);
  985. }
  986. if(objectsquoted)
  987. {
  988. cmSystemTools::ReplaceString(s, "<OBJECTS_QUOTED>", objectsquoted);
  989. }
  990. if(target)
  991. {
  992. std::string targetQuoted = target;
  993. if(targetQuoted.size() && targetQuoted[0] != '\"')
  994. {
  995. targetQuoted = '\"';
  996. targetQuoted += target;
  997. targetQuoted += '\"';
  998. }
  999. cmSystemTools::ReplaceString(s, "<TARGET_QUOTED>", targetQuoted.c_str());
  1000. cmSystemTools::ReplaceString(s, "<TARGET>", target);
  1001. }
  1002. if(targetBase)
  1003. {
  1004. // special case for quoted paths with spaces
  1005. // if you see <TARGET_BASE>.lib then put the .lib inside
  1006. // the quotes, same for .dll
  1007. if((strlen(targetBase) > 1) && targetBase[0] == '\"')
  1008. {
  1009. std::string base = targetBase;
  1010. base[base.size()-1] = '.';
  1011. std::string baseLib = base + "lib\"";
  1012. std::string baseDll = base + "dll\"";
  1013. cmSystemTools::ReplaceString(s, "<TARGET_BASE>.lib", baseLib.c_str());
  1014. cmSystemTools::ReplaceString(s, "<TARGET_BASE>.dll", baseDll.c_str());
  1015. }
  1016. cmSystemTools::ReplaceString(s, "<TARGET_BASE>", targetBase);
  1017. }
  1018. if(targetSOName)
  1019. {
  1020. if(m_Makefile->GetDefinition("CMAKE_SHARED_LIBRARY_SONAME_C_FLAG"))
  1021. {
  1022. cmSystemTools::ReplaceString(s, "<TARGET_SONAME>", targetSOName);
  1023. }
  1024. else
  1025. {
  1026. cmSystemTools::ReplaceString(s, "<TARGET_SONAME>", "");
  1027. }
  1028. }
  1029. if(linkLibs)
  1030. {
  1031. cmSystemTools::ReplaceString(s, "<LINK_LIBRARIES>", linkLibs);
  1032. }
  1033. RuleVariables* rv = ruleReplaceVars;
  1034. while(rv->replace)
  1035. {
  1036. cmSystemTools::ReplaceString(s, rv->replace,
  1037. m_Makefile->GetSafeDefinition(rv->lookup));
  1038. rv++;
  1039. }
  1040. }
  1041. void cmLocalUnixMakefileGenerator::OutputLibraryRule(std::ostream& fout,
  1042. const char* name,
  1043. const cmTarget &t,
  1044. const char* createVariable,
  1045. const char* comment,
  1046. const char* linkFlags
  1047. )
  1048. {
  1049. std::string targetName;
  1050. std::string targetNameSO;
  1051. std::string targetNameReal;
  1052. std::string targetNameBase;
  1053. this->GetLibraryNames(name, t,
  1054. targetName, targetNameSO,
  1055. targetNameReal, targetNameBase);
  1056. std::string outpath;
  1057. std::string outdir;
  1058. if(m_UseRelativePaths)
  1059. {
  1060. outdir = this->ConvertToRelativeOutputPath(m_LibraryOutputPath.c_str());
  1061. }
  1062. else
  1063. {
  1064. outdir = m_LibraryOutputPath;
  1065. }
  1066. if(!m_WindowsShell && m_UseRelativePaths && outdir.size())
  1067. {
  1068. outpath = "\"`cd ";
  1069. }
  1070. outpath += outdir;
  1071. if(!m_WindowsShell && m_UseRelativePaths && outdir.size())
  1072. {
  1073. outpath += ";pwd`\"/";
  1074. }
  1075. if(outdir.size() == 0 && m_UseRelativePaths && !m_WindowsShell)
  1076. {
  1077. outpath = "\"`pwd`\"/";
  1078. }
  1079. // The full path versions of the names.
  1080. std::string targetFullPath = outpath + targetName;
  1081. std::string targetFullPathSO = outpath + targetNameSO;
  1082. std::string targetFullPathReal = outpath + targetNameReal;
  1083. std::string targetFullPathBase = outpath + targetNameBase;
  1084. // If not using relative paths then the output path needs to be
  1085. // converted here
  1086. if(!m_UseRelativePaths)
  1087. {
  1088. targetFullPath = this->ConvertToRelativeOutputPath(targetFullPath.c_str());
  1089. targetFullPathSO = this->ConvertToRelativeOutputPath(targetFullPathSO.c_str());
  1090. targetFullPathReal = this->ConvertToRelativeOutputPath(targetFullPathReal.c_str());
  1091. targetFullPathBase = this->ConvertToRelativeOutputPath(targetFullPathBase.c_str());
  1092. }
  1093. // get the objects that are used to link this library
  1094. std::string objs = "$(" + this->CreateMakeVariable(name, "_SRC_OBJS") + ") $(" + this->CreateMakeVariable(name, "_EXTERNAL_OBJS") + ") ";
  1095. std::string objsQuoted = "$(" + this->CreateMakeVariable(name, "_SRC_OBJS_QUOTED") + ") $(" + this->CreateMakeVariable(name, "_EXTERNAL_OBJS_QUOTED") + ") ";
  1096. // create a variable with the objects that this library depends on
  1097. std::string depend =
  1098. objs + " $(" + this->CreateMakeVariable(name, "_DEPEND_LIBS") + ")";
  1099. std::vector<std::string> commands;
  1100. std::string cmakecommand = this->ConvertToOutputForExisting(
  1101. m_Makefile->GetDefinition("CMAKE_COMMAND"));
  1102. // Remove any existing files for this library.
  1103. std::string remove = cmakecommand;
  1104. remove += " -E remove -f ";
  1105. remove += targetFullPathReal;
  1106. if(targetFullPathSO != targetFullPathReal)
  1107. {
  1108. remove += " ";
  1109. remove += targetFullPathSO;
  1110. }
  1111. if(targetFullPath != targetFullPathSO &&
  1112. targetFullPath != targetFullPathReal)
  1113. {
  1114. remove += " ";
  1115. remove += targetFullPath;
  1116. }
  1117. commands.push_back(remove);
  1118. // collect custom commands for this target and add them to the list
  1119. std::string customCommands = this->CreatePreBuildRules(t, name);
  1120. if(customCommands.size() > 0)
  1121. {
  1122. commands.push_back(customCommands);
  1123. }
  1124. // collect custom commands for this target and add them to the list
  1125. customCommands = this->CreatePreLinkRules(t, name);
  1126. if(customCommands.size() > 0)
  1127. {
  1128. commands.push_back(customCommands);
  1129. }
  1130. // collect up the build rules
  1131. std::vector<std::string> rules;
  1132. rules.push_back(m_Makefile->GetDefinition(createVariable));
  1133. // expand multi-command semi-colon separated lists
  1134. // of commands into separate commands
  1135. cmSystemTools::ExpandList(rules, commands);
  1136. // Create necessary symlinks for library.
  1137. if(targetFullPath != targetFullPathReal)
  1138. {
  1139. std::string symlink = cmakecommand;
  1140. symlink += " -E cmake_symlink_library ";
  1141. symlink += targetFullPathReal;
  1142. symlink += " ";
  1143. symlink += targetFullPathSO;
  1144. symlink += " ";
  1145. symlink += targetFullPath;
  1146. commands.push_back(symlink);
  1147. }
  1148. // collect custom commands for this target and add them to the list
  1149. customCommands = this->CreatePostBuildRules(t, name);
  1150. if(customCommands.size() > 0)
  1151. {
  1152. commands.push_back(customCommands);
  1153. }
  1154. // collect up the link libraries
  1155. cmOStringStream linklibs;
  1156. this->OutputLinkLibraries(linklibs, name, t);
  1157. for(std::vector<std::string>::iterator i = commands.begin();
  1158. i != commands.end(); ++i)
  1159. {
  1160. this->ExpandRuleVariables(*i,
  1161. objs.c_str(),
  1162. targetFullPathReal.c_str(),
  1163. linklibs.str().c_str(),
  1164. 0, 0, 0, objsQuoted.c_str(),
  1165. targetFullPathBase.c_str(),
  1166. targetNameSO.c_str(),
  1167. linkFlags);
  1168. }
  1169. targetFullPath = m_LibraryOutputPath + targetName;
  1170. this->OutputMakeRule(fout, comment,
  1171. targetFullPath.c_str(),
  1172. depend.c_str(),
  1173. commands);
  1174. depend = targetFullPath;
  1175. std::string tgt = this->ConvertToRelativeOutputPath(targetFullPath.c_str());
  1176. tgt = this->ConvertToMakeTarget(tgt.c_str());
  1177. cmSystemTools::ConvertToUnixSlashes(tgt);
  1178. if(tgt.find('/', 0) != tgt.npos)
  1179. {
  1180. // we need a local target
  1181. depend = this->ConvertToRelativeOutputPath(depend.c_str());
  1182. std::string target = targetName;
  1183. commands.resize(0);
  1184. this->OutputMakeRule(fout,
  1185. comment,
  1186. target.c_str(),
  1187. depend.c_str(),
  1188. commands);
  1189. }
  1190. }
  1191. void cmLocalUnixMakefileGenerator::OutputSharedLibraryRule(std::ostream& fout,
  1192. const char* name,
  1193. const cmTarget &t)
  1194. {
  1195. const char* createRule;
  1196. if(t.HasCxx())
  1197. {
  1198. createRule = "CMAKE_CXX_CREATE_SHARED_LIBRARY";
  1199. }
  1200. else
  1201. {
  1202. createRule = "CMAKE_C_CREATE_SHARED_LIBRARY";
  1203. }
  1204. std::string buildType = m_Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
  1205. buildType = cmSystemTools::UpperCase(buildType);
  1206. std::string linkFlags = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LINKER_FLAGS");
  1207. linkFlags += " ";
  1208. if(buildType.size())
  1209. {
  1210. std::string build = "CMAKE_SHARED_LINKER_FLAGS_";
  1211. build += buildType;
  1212. linkFlags += m_Makefile->GetSafeDefinition(build.c_str());
  1213. linkFlags += " ";
  1214. }
  1215. if(m_Makefile->IsOn("WIN32") && !(m_Makefile->IsOn("CYGWIN") || m_Makefile->IsOn("MINGW")))
  1216. {
  1217. const std::vector<cmSourceFile*>& sources = t.GetSourceFiles();
  1218. for(std::vector<cmSourceFile*>::const_iterator i = sources.begin();
  1219. i != sources.end(); ++i)
  1220. {
  1221. if((*i)->GetSourceExtension() == "def")
  1222. {
  1223. linkFlags += m_Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG");
  1224. linkFlags += this->ConvertToRelativeOutputPath((*i)->GetFullPath().c_str());
  1225. linkFlags += " ";
  1226. }
  1227. }
  1228. }
  1229. const char* targetLinkFlags = t.GetProperty("LINK_FLAGS");
  1230. if(targetLinkFlags)
  1231. {
  1232. linkFlags += targetLinkFlags;
  1233. linkFlags += " ";
  1234. }
  1235. this->OutputLibraryRule(fout, name, t,
  1236. createRule,
  1237. "shared library",
  1238. linkFlags.c_str());
  1239. }
  1240. void cmLocalUnixMakefileGenerator::OutputModuleLibraryRule(std::ostream& fout,
  1241. const char* name,
  1242. const cmTarget &t)
  1243. {
  1244. const char* createRule;
  1245. if(t.HasCxx())
  1246. {
  1247. createRule = "CMAKE_CXX_CREATE_SHARED_MODULE";
  1248. }
  1249. else
  1250. {
  1251. createRule = "CMAKE_C_CREATE_SHARED_MODULE";
  1252. }
  1253. std::string buildType = m_Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
  1254. buildType = cmSystemTools::UpperCase(buildType);
  1255. std::string linkFlags = m_Makefile->GetSafeDefinition("CMAKE_MODULE_LINKER_FLAGS");
  1256. linkFlags += " ";
  1257. if(buildType.size())
  1258. {
  1259. std::string build = "CMAKE_MODULE_LINKER_FLAGS_";
  1260. build += buildType;
  1261. linkFlags += m_Makefile->GetSafeDefinition(build.c_str());
  1262. linkFlags += " ";
  1263. }
  1264. const char* targetLinkFlags = t.GetProperty("LINK_FLAGS");
  1265. if(targetLinkFlags)
  1266. {
  1267. linkFlags += targetLinkFlags;
  1268. linkFlags += " ";
  1269. }
  1270. this->OutputLibraryRule(fout, name, t,
  1271. createRule,
  1272. "shared module",
  1273. linkFlags.c_str());
  1274. }
  1275. void cmLocalUnixMakefileGenerator::OutputStaticLibraryRule(std::ostream& fout,
  1276. const char* name,
  1277. const cmTarget &t)
  1278. {
  1279. const char* createRule;
  1280. if(t.HasCxx())
  1281. {
  1282. createRule = "CMAKE_CXX_CREATE_STATIC_LIBRARY";
  1283. }
  1284. else
  1285. {
  1286. createRule = "CMAKE_C_CREATE_STATIC_LIBRARY";
  1287. }
  1288. std::string linkFlags;
  1289. const char* targetLinkFlags = t.GetProperty("STATIC_LIBRARY_FLAGS");
  1290. if(targetLinkFlags)
  1291. {
  1292. linkFlags += targetLinkFlags;
  1293. linkFlags += " ";
  1294. }
  1295. this->OutputLibraryRule(fout, name, t,
  1296. createRule,
  1297. "static library",
  1298. linkFlags.c_str());
  1299. }
  1300. void cmLocalUnixMakefileGenerator::OutputExecutableRule(std::ostream& fout,
  1301. const char* name,
  1302. const cmTarget &t)
  1303. {
  1304. std::string linkFlags;
  1305. std::string buildType = m_Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
  1306. buildType = cmSystemTools::UpperCase(buildType);
  1307. std::string flags;
  1308. // Construct the full path to the executable that will be generated.
  1309. std::string target = m_ExecutableOutputPath;
  1310. if(target.length() == 0)
  1311. {
  1312. target = m_Makefile->GetCurrentOutputDirectory();
  1313. if(target.size() && target[target.size()-1] != '/')
  1314. {
  1315. target += "/";
  1316. }
  1317. }
  1318. #ifdef __APPLE__
  1319. if ( t.GetPropertyAsBool("MACOSX_BUNDLE") )
  1320. {
  1321. // Make bundle directories
  1322. target += name;
  1323. target += ".app/Contents/MacOS/";
  1324. }
  1325. #endif
  1326. target += name;
  1327. target += cmSystemTools::GetExecutableExtension();
  1328. target = this->ConvertToRelativeOutputPath(target.c_str());
  1329. bool needsLocalTarget = false;
  1330. if(m_UseRelativePaths)
  1331. {
  1332. cmSystemTools::ConvertToUnixSlashes(target);
  1333. std::string tgt = this->ConvertToMakeTarget(target.c_str());
  1334. if(tgt.find('/', 0) != tgt.npos)
  1335. {
  1336. needsLocalTarget = true;
  1337. }
  1338. target = cmSystemTools::ConvertToOutputPath(target.c_str());
  1339. }
  1340. else
  1341. {
  1342. needsLocalTarget = true;
  1343. }
  1344. std::string objs = "$(" + this->CreateMakeVariable(name, "_SRC_OBJS") + ") $(" + this->CreateMakeVariable(name, "_EXTERNAL_OBJS") + ") ";
  1345. std::string depend = "$(";
  1346. depend += this->CreateMakeVariable(name, "_SRC_OBJS")
  1347. + ") $(" + this->CreateMakeVariable(name, "_EXTERNAL_OBJS")
  1348. + ") $(" + this->CreateMakeVariable(name, "_DEPEND_LIBS") + ")";
  1349. std::vector<std::string> rules;
  1350. linkFlags += m_Makefile->GetSafeDefinition("CMAKE_EXE_LINKER_FLAGS");
  1351. linkFlags += " ";
  1352. if(buildType.size())
  1353. {
  1354. std::string build = "CMAKE_EXE_LINKER_FLAGS_";
  1355. build += buildType;
  1356. linkFlags += m_Makefile->GetSafeDefinition(build.c_str());
  1357. linkFlags += " ";
  1358. }
  1359. if(t.HasCxx())
  1360. {
  1361. rules.push_back(m_Makefile->GetDefinition("CMAKE_CXX_LINK_EXECUTABLE"));
  1362. flags += m_Makefile->GetSafeDefinition("CMAKE_CXX_FLAGS");
  1363. flags += " ";
  1364. flags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_CXX_FLAGS");
  1365. flags += " ";
  1366. }
  1367. else
  1368. {
  1369. rules.push_back(m_Makefile->GetDefinition("CMAKE_C_LINK_EXECUTABLE"));
  1370. flags += m_Makefile->GetSafeDefinition("CMAKE_C_FLAGS");
  1371. flags += " ";
  1372. flags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_C_FLAGS");
  1373. flags += " ";
  1374. }
  1375. cmOStringStream linklibs;
  1376. this->OutputLinkLibraries(linklibs, 0, t);
  1377. std::string comment = "executable";
  1378. std::vector<std::string> commands;
  1379. std::string customCommands = this->CreatePreBuildRules(t, name);
  1380. if(customCommands.size() > 0)
  1381. {
  1382. commands.push_back(customCommands.c_str());
  1383. }
  1384. customCommands = this->CreatePreLinkRules(t, name);
  1385. if(customCommands.size() > 0)
  1386. {
  1387. commands.push_back(customCommands.c_str());
  1388. }
  1389. cmSystemTools::ExpandList(rules, commands);
  1390. customCommands = this->CreatePostBuildRules(t, name);
  1391. if(customCommands.size() > 0)
  1392. {
  1393. commands.push_back(customCommands.c_str());
  1394. }
  1395. if(cmSystemTools::IsOn(m_Makefile->GetDefinition("BUILD_SHARED_LIBS")))
  1396. {
  1397. linkFlags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_BUILD_CXX_FLAGS");
  1398. linkFlags += " ";
  1399. }
  1400. if ( t.GetPropertyAsBool("WIN32_EXECUTABLE") )
  1401. {
  1402. linkFlags += m_Makefile->GetSafeDefinition("CMAKE_CREATE_WIN32_EXE");
  1403. linkFlags += " ";
  1404. }
  1405. else
  1406. {
  1407. linkFlags += m_Makefile->GetSafeDefinition("CMAKE_CREATE_CONSOLE_EXE");
  1408. linkFlags += " ";
  1409. }
  1410. const char* targetLinkFlags = t.GetProperty("LINK_FLAGS");
  1411. if(targetLinkFlags)
  1412. {
  1413. linkFlags += targetLinkFlags;
  1414. linkFlags += " ";
  1415. }
  1416. for(std::vector<std::string>::iterator i = commands.begin();
  1417. i != commands.end(); ++i)
  1418. {
  1419. this->ExpandRuleVariables(*i,
  1420. objs.c_str(),
  1421. target.c_str(),
  1422. linklibs.str().c_str(),
  1423. 0,
  1424. 0,
  1425. flags.c_str(),
  1426. 0,
  1427. 0,
  1428. 0,
  1429. linkFlags.c_str());
  1430. }
  1431. this->OutputMakeRule(fout,
  1432. comment.c_str(),
  1433. target.c_str(),
  1434. depend.c_str(),
  1435. commands);
  1436. // If there is no executable output path, add a rule with the
  1437. // relative path to the executable. This is necessary for
  1438. // try-compile to work in this case.
  1439. if(needsLocalTarget)
  1440. {
  1441. depend = target;
  1442. target = name;
  1443. target += cmSystemTools::GetExecutableExtension();
  1444. target = this->ConvertToRelativeOutputPath(target.c_str());
  1445. commands.resize(0);
  1446. this->OutputMakeRule(fout,
  1447. comment.c_str(),
  1448. target.c_str(),
  1449. depend.c_str(),
  1450. commands);
  1451. }
  1452. }
  1453. void cmLocalUnixMakefileGenerator::OutputUtilityRule(std::ostream& fout,
  1454. const char* name,
  1455. const cmTarget &t)
  1456. {
  1457. const char* cc = 0;
  1458. std::string customCommands = this->CreatePreBuildRules(t, name);
  1459. std::string customCommands2 = this->CreatePreLinkRules(t, name);
  1460. if(customCommands2.size() > 0)
  1461. {
  1462. customCommands += customCommands2;
  1463. }
  1464. customCommands2 = this->CreatePostBuildRules(t, name);
  1465. if(customCommands2.size() > 0)
  1466. {
  1467. customCommands += customCommands2;
  1468. }
  1469. if(customCommands.size() > 0)
  1470. {
  1471. cc = customCommands.c_str();
  1472. }
  1473. std::string comment = "Utility";
  1474. std::string depends;
  1475. depends = "$(" + this->CreateMakeVariable(name, "_DEPEND_LIBS") + ")";
  1476. std::string replaceVars;
  1477. const std::vector<cmCustomCommand> &ccs = t.GetPostBuildCommands();
  1478. for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
  1479. i != ccs.end(); ++i)
  1480. {
  1481. const std::vector<std::string> & dep = i->GetDepends();
  1482. for(std::vector<std::string>::const_iterator d = dep.begin();
  1483. d != dep.end(); ++d)
  1484. {
  1485. depends += " \\\n";
  1486. replaceVars = *d;
  1487. m_Makefile->ExpandVariablesInString(replaceVars);
  1488. depends += this->ConvertToMakeTarget(this->ConvertToRelativeOutputPath(replaceVars.c_str()).c_str());
  1489. }
  1490. }
  1491. this->OutputMakeRule(fout, comment.c_str(), name,
  1492. depends.c_str(), cc);
  1493. }
  1494. void cmLocalUnixMakefileGenerator::OutputTargets(std::ostream& fout)
  1495. {
  1496. // for each target
  1497. const cmTargets &tgts = m_Makefile->GetTargets();
  1498. for(cmTargets::const_iterator l = tgts.begin();
  1499. l != tgts.end(); l++)
  1500. {
  1501. switch(l->second.GetType())
  1502. {
  1503. case cmTarget::STATIC_LIBRARY:
  1504. this->OutputStaticLibraryRule(fout, l->first.c_str(), l->second);
  1505. break;
  1506. case cmTarget::SHARED_LIBRARY:
  1507. this->OutputSharedLibraryRule(fout, l->first.c_str(), l->second);
  1508. break;
  1509. case cmTarget::MODULE_LIBRARY:
  1510. this->OutputModuleLibraryRule(fout, l->first.c_str(), l->second);
  1511. break;
  1512. case cmTarget::EXECUTABLE:
  1513. this->OutputExecutableRule(fout, l->first.c_str(), l->second);
  1514. break;
  1515. case cmTarget::UTILITY:
  1516. this->OutputUtilityRule(fout, l->first.c_str(), l->second);
  1517. break;
  1518. // This is handled by the OutputCustomRules method
  1519. case cmTarget::INSTALL_FILES:
  1520. // This is handled by the OutputInstallRules method
  1521. case cmTarget::INSTALL_PROGRAMS:
  1522. // This is handled by the OutputInstallRules method
  1523. break;
  1524. }
  1525. }
  1526. }
  1527. // For each target that is an executable or shared library, generate
  1528. // the "<name>_DEPEND_LIBS" variable listing its library dependencies.
  1529. void cmLocalUnixMakefileGenerator::OutputDependLibs(std::ostream& fout)
  1530. {
  1531. // Build a set of libraries that will be linked into any target in
  1532. // this directory.
  1533. std::set<std::string> used;
  1534. // for each target
  1535. const cmTargets &tgts = m_Makefile->GetTargets();
  1536. for(cmTargets::const_iterator l = tgts.begin();
  1537. l != tgts.end(); l++)
  1538. {
  1539. // Each dependency should only be emitted once per target.
  1540. std::set<std::string> emitted;
  1541. if ((l->second.GetType() == cmTarget::SHARED_LIBRARY)
  1542. || (l->second.GetType() == cmTarget::MODULE_LIBRARY)
  1543. || (l->second.GetType() == cmTarget::STATIC_LIBRARY)
  1544. || (l->second.GetType() == cmTarget::EXECUTABLE)
  1545. || (l->second.GetType() == cmTarget::UTILITY))
  1546. {
  1547. fout << this->CreateMakeVariable(l->first.c_str(), "_DEPEND_LIBS") << " = ";
  1548. // A library should not depend on itself!
  1549. emitted.insert(l->first);
  1550. // for static libraries do not depend on other libraries
  1551. if(l->second.GetType() != cmTarget::STATIC_LIBRARY)
  1552. {
  1553. // Now, look at all link libraries specific to this target.
  1554. const cmTarget::LinkLibraries& tlibs = l->second.GetLinkLibraries();
  1555. for(cmTarget::LinkLibraries::const_iterator lib = tlibs.begin();
  1556. lib != tlibs.end(); ++lib)
  1557. {
  1558. // Record that this library was used.
  1559. used.insert(lib->first);
  1560. // Don't emit the same library twice for this target.
  1561. if(emitted.insert(lib->first).second)
  1562. {
  1563. // Output this dependency.
  1564. this->OutputLibDepend(fout, lib->first.c_str());
  1565. }
  1566. }
  1567. }
  1568. // for all targets depend on utilities
  1569. // Now, look at all utilities specific to this target.
  1570. const std::set<cmStdString>& tutils = l->second.GetUtilities();
  1571. for(std::set<cmStdString>::const_iterator util = tutils.begin();
  1572. util != tutils.end(); ++util)
  1573. {
  1574. // Record that this utility was used.
  1575. used.insert(*util);
  1576. // Don't emit the same utility twice for this target.
  1577. if(emitted.insert(*util).second)
  1578. {
  1579. // Output this dependency.
  1580. std::string utilType = *util + "_LIBRARY_TYPE";
  1581. const char* libType = m_Makefile->GetDefinition(utilType.c_str());
  1582. if ( libType )
  1583. {
  1584. this->OutputLibDepend(fout, util->c_str());
  1585. }
  1586. else
  1587. {
  1588. this->OutputExeDepend(fout, util->c_str());
  1589. }
  1590. }
  1591. }
  1592. fout << "\n";
  1593. }
  1594. }
  1595. fout << "\n";
  1596. // Loop over the libraries used and make sure there is a rule to
  1597. // build them in this makefile. If the library is in another
  1598. // directory, add a rule to jump to that directory and make sure it
  1599. // exists.
  1600. for(std::set<std::string>::const_iterator lib = used.begin();
  1601. lib != used.end(); ++lib)
  1602. {
  1603. // loop over the list of directories that the libraries might
  1604. // be in, looking for an ADD_LIBRARY(lib...) line. This would
  1605. // be stored in the cache
  1606. std::string libPath = *lib + "_CMAKE_PATH";
  1607. const char* cacheValue = m_Makefile->GetDefinition(libPath.c_str());
  1608. // if cache and not the current directory add a rule, to
  1609. // jump into the directory and build for the first time
  1610. if(cacheValue && *cacheValue &&
  1611. (!this->SamePath(m_Makefile->GetCurrentOutputDirectory(), cacheValue)))
  1612. {
  1613. // add the correct extension
  1614. std::string ltname = *lib+"_LIBRARY_TYPE";
  1615. const char* libType
  1616. = m_Makefile->GetDefinition(ltname.c_str());
  1617. // if it was a library..
  1618. if (libType)
  1619. {
  1620. std::string library;
  1621. std::string libpath = cacheValue;
  1622. if(libType && std::string(libType) == "SHARED")
  1623. {
  1624. library = m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_PREFIX");
  1625. library += *lib;
  1626. library += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_SUFFIX");
  1627. }
  1628. else if(libType && std::string(libType) == "MODULE")
  1629. {
  1630. library = m_Makefile->GetSafeDefinition("CMAKE_SHARED_MODULE_PREFIX");
  1631. library += *lib;
  1632. library += m_Makefile->GetSafeDefinition("CMAKE_SHARED_MODULE_SUFFIX");
  1633. }
  1634. else if(libType && std::string(libType) == "STATIC")
  1635. {
  1636. library = m_Makefile->GetSafeDefinition("CMAKE_STATIC_LIBRARY_PREFIX");
  1637. library += *lib;
  1638. library += m_Makefile->GetSafeDefinition("CMAKE_STATIC_LIBRARY_SUFFIX");
  1639. }
  1640. else
  1641. {
  1642. cmSystemTools::Error("Unknown library type!");
  1643. return;
  1644. }
  1645. if(m_LibraryOutputPath.size())
  1646. {
  1647. libpath = m_LibraryOutputPath;
  1648. }
  1649. else
  1650. {
  1651. libpath += "/";
  1652. }
  1653. libpath += library;
  1654. // put out a rule to build the library if it does not exist
  1655. this->OutputBuildTargetInDir(fout,
  1656. cacheValue,
  1657. library.c_str(),
  1658. libpath.c_str());
  1659. }
  1660. // something other than a library...
  1661. else
  1662. {
  1663. std::string exepath = cacheValue;
  1664. if(m_ExecutableOutputPath.size())
  1665. {
  1666. exepath = m_ExecutableOutputPath;
  1667. }
  1668. else
  1669. {
  1670. exepath += "/";
  1671. }
  1672. std::string fullName = lib->c_str();
  1673. fullName += cmSystemTools::GetExecutableExtension();
  1674. exepath += fullName;
  1675. this->OutputBuildTargetInDir(fout,
  1676. cacheValue,
  1677. fullName.c_str(),
  1678. exepath.c_str());
  1679. }
  1680. }
  1681. }
  1682. }
  1683. void cmLocalUnixMakefileGenerator::OutputBuildTargetInDirWindows(std::ostream& fout,
  1684. const char* path,
  1685. const char* library,
  1686. const char* fullpath)
  1687. {
  1688. std::string jumpBack;
  1689. if(m_UseRelativePaths)
  1690. {
  1691. cmSystemTools::Message("using relative paths??");
  1692. jumpBack = cmSystemTools::RelativePath(cmSystemTools::GetProgramPath(path).c_str(),
  1693. m_Makefile->GetCurrentOutputDirectory());
  1694. }
  1695. else
  1696. {
  1697. jumpBack = m_Makefile->GetCurrentOutputDirectory();
  1698. }
  1699. jumpBack = this->ConvertToOutputForExisting(jumpBack.c_str());
  1700. std::string wpath = this->ConvertToOutputForExisting(path);
  1701. std::string wfullpath = this->ConvertToRelativeOutputPath(fullpath);
  1702. fout << wfullpath
  1703. << ":\n\tcd " << wpath << "\n"
  1704. << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.depends\n"
  1705. << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) cmake.check_depends\n"
  1706. << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) -f cmake.check_depends\n"
  1707. << "\t$(MAKE) $(MAKESILENT) " << library
  1708. << "\n\tcd " << jumpBack << "\n";
  1709. }
  1710. void cmLocalUnixMakefileGenerator::OutputBuildTargetInDir(std::ostream& fout,
  1711. const char* path,
  1712. const char* library,
  1713. const char* fullpath)
  1714. {
  1715. if(m_WindowsShell)
  1716. {
  1717. this->OutputBuildTargetInDirWindows(fout, path, library, fullpath);
  1718. return;
  1719. }
  1720. fout << this->ConvertToOutputForExisting(fullpath)
  1721. << ":\n\tcd " << this->ConvertToOutputForExisting(path)
  1722. << "; $(MAKE) $(MAKESILENT) cmake.depends"
  1723. << "; $(MAKE) $(MAKESILENT) cmake.check_depends"
  1724. << "; $(MAKE) $(MAKESILENT) -f cmake.check_depends"
  1725. << "; $(MAKE) $(MAKESILENT) "
  1726. << library << "\n\n";
  1727. }
  1728. bool cmLocalUnixMakefileGenerator::SamePath(const char* path1, const char* path2)
  1729. {
  1730. if (strcmp(path1, path2) == 0)
  1731. {
  1732. return true;
  1733. }
  1734. #if defined(_WIN32) || defined(__APPLE__)
  1735. return
  1736. cmSystemTools::LowerCase(this->ConvertToOutputForExisting(path1)) ==
  1737. cmSystemTools::LowerCase(this->ConvertToOutputForExisting(path2));
  1738. #else
  1739. return false;
  1740. #endif
  1741. }
  1742. void cmLocalUnixMakefileGenerator::OutputLibDepend(std::ostream& fout,
  1743. const char* name)
  1744. {
  1745. std::string libPath = name;
  1746. libPath += "_CMAKE_PATH";
  1747. const char* cacheValue = m_Makefile->GetDefinition(libPath.c_str());
  1748. if( cacheValue && *cacheValue )
  1749. {
  1750. // if there is a cache value, then this is a library that cmake
  1751. // knows how to build, so we can depend on it
  1752. std::string libpath;
  1753. if (!this->SamePath(m_Makefile->GetCurrentOutputDirectory(), cacheValue))
  1754. {
  1755. // if the library is not in the current directory, then get the full
  1756. // path to it
  1757. if(m_LibraryOutputPath.size())
  1758. {
  1759. libpath = m_LibraryOutputPath;
  1760. }
  1761. else
  1762. {
  1763. libpath = cacheValue;
  1764. libpath += "/";
  1765. }
  1766. }
  1767. else
  1768. {
  1769. // library is in current Makefile so use lib as a prefix
  1770. libpath = m_LibraryOutputPath;
  1771. }
  1772. // add the correct extension
  1773. std::string ltname = name;
  1774. ltname += "_LIBRARY_TYPE";
  1775. const char* libType = m_Makefile->GetDefinition(ltname.c_str());
  1776. if(libType && std::string(libType) == "SHARED")
  1777. {
  1778. libpath += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_PREFIX");
  1779. libpath += name;
  1780. libpath += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_SUFFIX");
  1781. }
  1782. else if (libType && std::string(libType) == "MODULE")
  1783. {
  1784. libpath += m_Makefile->GetSafeDefinition("CMAKE_SHARED_MODULE_PREFIX");
  1785. libpath += name;
  1786. libpath += m_Makefile->GetSafeDefinition("CMAKE_SHARED_MODULE_SUFFIX");
  1787. }
  1788. else if (libType && std::string(libType) == "STATIC")
  1789. {
  1790. libpath += m_Makefile->GetSafeDefinition("CMAKE_STATIC_LIBRARY_PREFIX");
  1791. libpath += name;
  1792. libpath += m_Makefile->GetSafeDefinition("CMAKE_STATIC_LIBRARY_SUFFIX");
  1793. }
  1794. fout << this->ConvertToRelativeOutputPath(libpath.c_str()) << " ";
  1795. }
  1796. else
  1797. {
  1798. if(cmSystemTools::FileExists(name))
  1799. {
  1800. std::string nameStr = name;
  1801. // if it starts with / or \ or ?:/ or ?:\ then it must be a full path
  1802. if( (nameStr.size() && (nameStr[0] == '/' || nameStr[0] == '\\')) ||
  1803. ((nameStr.size() > 3) && (nameStr[1] == ':') && (nameStr[2] == '/' || nameStr[2] == '\\')))
  1804. {
  1805. fout << this->ConvertToRelativeOutputPath(name) << " ";
  1806. }
  1807. }
  1808. }
  1809. }
  1810. void cmLocalUnixMakefileGenerator::OutputExeDepend(std::ostream& fout,
  1811. const char* name)
  1812. {
  1813. std::string exePath = name;
  1814. exePath += "_CMAKE_PATH";
  1815. const char* cacheValue = m_Makefile->GetDefinition(exePath.c_str());
  1816. if( cacheValue && *cacheValue )
  1817. {
  1818. // if there is a cache value, then this is a executable/utility that cmake
  1819. // knows how to build, so we can depend on it
  1820. std::string exepath;
  1821. if (!this->SamePath(m_Makefile->GetCurrentOutputDirectory(), cacheValue))
  1822. {
  1823. // if the exe/utility is not in the current directory, then get the full
  1824. // path to it
  1825. if(m_ExecutableOutputPath.size())
  1826. {
  1827. exepath = m_ExecutableOutputPath;
  1828. }
  1829. else
  1830. {
  1831. exepath = cacheValue;
  1832. exepath += "/";
  1833. }
  1834. }
  1835. else
  1836. {
  1837. // library is in current Makefile
  1838. exepath = m_ExecutableOutputPath;
  1839. }
  1840. // add the library name
  1841. exepath += name;
  1842. // add the correct extension
  1843. exepath += cmSystemTools::GetExecutableExtension();
  1844. fout << this->ConvertToRelativeOutputPath(exepath.c_str()) << " ";
  1845. }
  1846. // if it isn't in the cache, it might still be a utility target
  1847. // so check for that
  1848. else
  1849. {
  1850. std::map<cmStdString, cmTarget>& targets = m_Makefile->GetTargets();
  1851. if (targets.find(name) != targets.end())
  1852. {
  1853. fout << name << " ";
  1854. }
  1855. }
  1856. }
  1857. // fix up names of directories so they can be used
  1858. // as targets in makefiles.
  1859. inline std::string FixDirectoryName(const char* dir)
  1860. {
  1861. std::string s = dir;
  1862. // replace ../ with 3 under bars
  1863. size_t pos = s.find("../");
  1864. if(pos != std::string::npos)
  1865. {
  1866. s.replace(pos, 3, "___");
  1867. }
  1868. // replace / directory separators with a single under bar
  1869. pos = s.find("/");
  1870. while(pos != std::string::npos)
  1871. {
  1872. s.replace(pos, 1, "_");
  1873. pos = s.find("/");
  1874. }
  1875. return s;
  1876. }
  1877. void cmLocalUnixMakefileGenerator::
  1878. BuildInSubDirectoryWindows(std::ostream& fout,
  1879. const char* directory,
  1880. const char* target1,
  1881. const char* target2,
  1882. bool silent)
  1883. {
  1884. std::string dir;
  1885. if(target1)
  1886. {
  1887. dir = this->ConvertToOutputForExisting(directory);
  1888. if(dir[0] == '\"')
  1889. {
  1890. dir = dir.substr(1, dir.size()-2);
  1891. }
  1892. fout << "\tif not exist \"" << dir << "\\$(NULL)\""
  1893. << " "
  1894. << "$(MAKE) $(MAKESILENT) rebuild_cache\n";
  1895. if (!silent)
  1896. {
  1897. fout << "\t@echo " << directory << ": building " << target1 << "\n";
  1898. }
  1899. fout << "\tcd " << dir << "\n"
  1900. << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) " << target1 << "\n";
  1901. }
  1902. if(target2)
  1903. {
  1904. if (!silent)
  1905. {
  1906. fout << "\t@echo " << directory << ": building " << target2 << "\n";
  1907. }
  1908. fout << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) " << target2 << "\n";
  1909. }
  1910. std::string currentDir;
  1911. if(m_UseRelativePaths)
  1912. {
  1913. currentDir = dir;
  1914. cmSystemTools::ConvertToUnixSlashes(currentDir);
  1915. std::string cdback = "..";
  1916. unsigned int i = 0;
  1917. if(currentDir.size() > 2 && currentDir[0] == '.' && currentDir[1] == '/')
  1918. {
  1919. // start past ./ if it starts with ./
  1920. i = 2;
  1921. }
  1922. for(; i < currentDir.size(); ++i)
  1923. {
  1924. if(currentDir[i] == '/')
  1925. {
  1926. cdback += "/..";
  1927. }
  1928. }
  1929. fout << "\tcd " << this->ConvertToOutputForExisting(cdback.c_str()) << "\n\n";
  1930. }
  1931. else
  1932. {
  1933. currentDir = m_Makefile->GetCurrentOutputDirectory();
  1934. fout << "\tcd " << this->ConvertToOutputForExisting(currentDir.c_str()) << "\n\n";
  1935. }
  1936. }
  1937. void cmLocalUnixMakefileGenerator::BuildInSubDirectory(std::ostream& fout,
  1938. const char* dir,
  1939. const char* target1,
  1940. const char* target2,
  1941. bool silent)
  1942. {
  1943. if(m_WindowsShell)
  1944. {
  1945. this->BuildInSubDirectoryWindows(fout, dir, target1, target2, silent);
  1946. return;
  1947. }
  1948. std::string directory = this->ConvertToRelativeOutputPath(dir);
  1949. if(target1)
  1950. {
  1951. fout << "\t@if test ! -d " << directory
  1952. << "; then $(MAKE) rebuild_cache; fi\n";
  1953. if (!silent)
  1954. {
  1955. fout << "\t@echo " << directory << ": building " << target1 << "\n";
  1956. }
  1957. fout << "\t@cd " << directory
  1958. << "; $(MAKE) " << target1 << "\n";
  1959. }
  1960. if(target2)
  1961. {
  1962. if (!silent)
  1963. {
  1964. fout << "\t@echo " << directory << ": building " << target2 << "\n";
  1965. }
  1966. fout << "\t@cd " << directory
  1967. << "; $(MAKE) " << target2 << "\n";
  1968. }
  1969. fout << "\n";
  1970. }
  1971. void
  1972. cmLocalUnixMakefileGenerator::
  1973. OutputSubDirectoryVars(std::ostream& fout,
  1974. const char* var,
  1975. const char* target,
  1976. const char* target1,
  1977. const char* target2,
  1978. const char* depend,
  1979. const std::vector<std::pair<cmStdString, bool> >& SubDirectories,
  1980. bool silent, int order)
  1981. {
  1982. if(!depend)
  1983. {
  1984. depend = "";
  1985. }
  1986. if( SubDirectories.size() == 0)
  1987. {
  1988. return;
  1989. }
  1990. fout << "# Variable for making " << target << " in subdirectories.\n";
  1991. fout << var << " = ";
  1992. unsigned int ii;
  1993. // make sure all the pre-order subdirectories are fist
  1994. // other than that keep the same order that the user specified
  1995. std::vector<std::pair<cmStdString, bool> > orderedDirs;
  1996. // collect pre-order first
  1997. for(ii =0; ii < SubDirectories.size(); ii++)
  1998. {
  1999. if(m_Makefile->IsDirectoryPreOrder(SubDirectories[ii].first.c_str()))
  2000. {
  2001. orderedDirs.push_back(SubDirectories[ii]);
  2002. }
  2003. }
  2004. // now collect post order dirs
  2005. for(ii =0; ii < SubDirectories.size(); ii++)
  2006. {
  2007. if(!m_Makefile->IsDirectoryPreOrder(SubDirectories[ii].first.c_str()))
  2008. {
  2009. orderedDirs.push_back(SubDirectories[ii]);
  2010. }
  2011. }
  2012. for(ii =0; ii < orderedDirs.size(); ii++)
  2013. {
  2014. if(!orderedDirs[ii].second)
  2015. {
  2016. continue;
  2017. }
  2018. if(order == 1 && m_Makefile->IsDirectoryPreOrder(orderedDirs[ii].first.c_str()))
  2019. {
  2020. continue;
  2021. }
  2022. if(order == 2 && !m_Makefile->IsDirectoryPreOrder(orderedDirs[ii].first.c_str()))
  2023. {
  2024. continue;
  2025. }
  2026. fout << " \\\n";
  2027. std::string subdir = FixDirectoryName(orderedDirs[ii].first.c_str());
  2028. fout << target << "_" << subdir.c_str();
  2029. }
  2030. fout << " \n\n";
  2031. fout << "# Targets for making " << target << " in subdirectories.\n";
  2032. std::string last = "";
  2033. for(unsigned int cc =0; cc < orderedDirs.size(); cc++)
  2034. {
  2035. if(!orderedDirs[cc].second)
  2036. {
  2037. continue;
  2038. }
  2039. std::string subdir = FixDirectoryName(orderedDirs[cc].first.c_str());
  2040. if(order == 1 && m_Makefile->IsDirectoryPreOrder(orderedDirs[cc].first.c_str()))
  2041. {
  2042. last = subdir;
  2043. continue;
  2044. }
  2045. if(order == 2 && !m_Makefile->IsDirectoryPreOrder(orderedDirs[cc].first.c_str()))
  2046. {
  2047. last = subdir;
  2048. continue;
  2049. }
  2050. fout << target << "_" << subdir.c_str() << ": " << depend;
  2051. // Make each subdirectory depend on previous one. This forces
  2052. // parallel builds (make -j 2) to build in same order as a single
  2053. // threaded build to avoid dependency problems.
  2054. if(cc > 0)
  2055. {
  2056. fout << " " << target << "_" << last.c_str();
  2057. }
  2058. fout << "\n";
  2059. last = subdir;
  2060. std::string dir = m_Makefile->GetCurrentOutputDirectory();
  2061. dir += "/";
  2062. dir += orderedDirs[cc].first;
  2063. this->BuildInSubDirectory(fout, dir.c_str(),
  2064. target1, target2, silent);
  2065. }
  2066. fout << "\n\n";
  2067. }
  2068. // output rules for decending into sub directories
  2069. void cmLocalUnixMakefileGenerator::OutputSubDirectoryRules(std::ostream& fout)
  2070. {
  2071. // Output Sub directory build rules
  2072. const std::vector<std::pair<cmStdString, bool> >& SubDirectories
  2073. = m_Makefile->GetSubDirectories();
  2074. if( SubDirectories.size() == 0)
  2075. {
  2076. return;
  2077. }
  2078. this->OutputSubDirectoryVars(fout,
  2079. "SUBDIR_BUILD",
  2080. "default_target",
  2081. "default_target",
  2082. 0, "$(TARGETS)",
  2083. SubDirectories,
  2084. false, 1);
  2085. this->OutputSubDirectoryVars(fout,
  2086. "SUBDIR_PREORDER_BUILD",
  2087. "default_target",
  2088. "default_target",
  2089. 0, "$(TARGETS)",
  2090. SubDirectories,
  2091. false, 2);
  2092. this->OutputSubDirectoryVars(fout, "SUBDIR_CLEAN", "clean",
  2093. "clean",
  2094. 0, 0,
  2095. SubDirectories);
  2096. this->OutputSubDirectoryVars(fout, "SUBDIR_DEPEND", "depend",
  2097. "depend",
  2098. 0, 0,
  2099. SubDirectories);
  2100. }
  2101. // Output the depend information for all the classes
  2102. // in the makefile. These would have been generated
  2103. // by the class cmMakeDepend GenerateMakefile
  2104. bool cmLocalUnixMakefileGenerator::OutputObjectDepends(std::ostream& fout)
  2105. {
  2106. bool ret = false;
  2107. // Iterate over every target.
  2108. std::map<cmStdString, cmTarget>& targets = m_Makefile->GetTargets();
  2109. for(std::map<cmStdString, cmTarget>::const_iterator target = targets.begin();
  2110. target != targets.end(); ++target)
  2111. {
  2112. // Iterate over every source for this target.
  2113. const std::vector<cmSourceFile*>& sources = target->second.GetSourceFiles();
  2114. for(std::vector<cmSourceFile*>::const_iterator source = sources.begin();
  2115. source != sources.end(); ++source)
  2116. {
  2117. if(!(*source)->GetPropertyAsBool("HEADER_FILE_ONLY"))
  2118. {
  2119. if(!(*source)->GetDepends().empty())
  2120. {
  2121. // Iterate through all the dependencies for this source.
  2122. for(std::vector<std::string>::const_iterator dep =
  2123. (*source)->GetDepends().begin();
  2124. dep != (*source)->GetDepends().end(); ++dep)
  2125. {
  2126. std::string s = (*source)->GetSourceName();
  2127. s += this->GetOutputExtension((*source)->GetSourceExtension().c_str());
  2128. fout << this->ConvertToRelativeOutputPath(s.c_str()) << " : "
  2129. << this->ConvertToRelativeOutputPath(dep->c_str()) << "\n";
  2130. ret = true;
  2131. }
  2132. fout << "\n\n";
  2133. }
  2134. }
  2135. }
  2136. }
  2137. return ret;
  2138. }
  2139. // Output the depend information for all the classes
  2140. // in the makefile. These would have been generated
  2141. // by the class cmMakeDepend GenerateMakefile
  2142. void cmLocalUnixMakefileGenerator::OutputCheckDepends(std::ostream& fout)
  2143. {
  2144. std::set<std::string> emittedLowerPath;
  2145. std::set<std::string> emitted;
  2146. // Iterate over every target.
  2147. std::map<cmStdString, cmTarget>& targets = m_Makefile->GetTargets();
  2148. fout << "# Suppresses display of executed commands\n";
  2149. fout << ".SILENT:\n";
  2150. fout << "# disable some common implicit rules to speed things up\n";
  2151. fout << ".SUFFIXES:\n";
  2152. fout << ".SUFFIXES:.hpuxmakemusthaverule\n";
  2153. this->OutputMakeVariables(fout);
  2154. fout << "default:\n";
  2155. fout << "\t$(MAKE) $(MAKESILENT) -f cmake.check_depends all\n"
  2156. << "\t$(MAKE) $(MAKESILENT) -f cmake.check_depends cmake.depends\n\n";
  2157. for(std::map<cmStdString, cmTarget>::const_iterator target = targets.begin();
  2158. target != targets.end(); ++target)
  2159. {
  2160. // Iterate over every source for this target.
  2161. const std::vector<cmSourceFile*>& sources = target->second.GetSourceFiles();
  2162. for(std::vector<cmSourceFile*>::const_iterator source = sources.begin();
  2163. source != sources.end(); ++source)
  2164. {
  2165. if(!(*source)->GetPropertyAsBool("HEADER_FILE_ONLY"))
  2166. {
  2167. if(!(*source)->GetDepends().empty())
  2168. {
  2169. for(std::vector<std::string>::const_iterator dep =
  2170. (*source)->GetDepends().begin();
  2171. dep != (*source)->GetDepends().end(); ++dep)
  2172. {
  2173. // do not call CollapseFullPath on dep here, because it already
  2174. // has been done because m_FullPath on cmDependInformation
  2175. // always is it called. If it is called here, network builds are
  2176. // very slow because of the number of stats
  2177. std::string dependfile = this->ConvertToRelativeOutputPath(dep->c_str());
  2178. // use the lower path function to create uniqe names
  2179. std::string lowerpath = this->LowerCasePath(dependfile.c_str());
  2180. if(emittedLowerPath.insert(lowerpath).second)
  2181. {
  2182. emitted.insert(dependfile);
  2183. fout << "all: " << dependfile << "\n";
  2184. }
  2185. }
  2186. }
  2187. }
  2188. }
  2189. }
  2190. fout << "\n\n# if any of these files changes run make dependlocal\n";
  2191. std::set<std::string>::iterator i;
  2192. for(i = emitted.begin(); i != emitted.end(); ++i)
  2193. {
  2194. fout << "cmake.depends: " << *i << "\n";
  2195. }
  2196. fout << "cmake.depends: \n"
  2197. << "\t$(MAKE) $(MAKESILENT) dependlocal\n\n";
  2198. fout << "\n\n";
  2199. fout << "# if a .h file is removed then run make dependlocal\n\n";
  2200. for(std::set<std::string>::iterator it = emitted.begin();
  2201. it != emitted.end(); ++it)
  2202. {
  2203. fout << *it << ":\n"
  2204. << "\t$(MAKE) $(MAKESILENT) dependlocal\n\n";
  2205. }
  2206. }
  2207. // Output each custom rule in the following format:
  2208. // output: source depends...
  2209. // (tab) command...
  2210. void cmLocalUnixMakefileGenerator::OutputCustomRules(std::ostream& fout)
  2211. {
  2212. // we cannot provide multiple rules for a single output
  2213. // so we will keep track of outputs to make sure we don't write
  2214. // two rules. First found wins
  2215. std::set<std::string> processedOutputs;
  2216. // first output all custom rules
  2217. const std::vector<cmSourceFile*>& sources = m_Makefile->GetSourceFiles();
  2218. for(std::vector<cmSourceFile*>::const_iterator i = sources.begin();
  2219. i != sources.end(); ++i)
  2220. {
  2221. if ((*i)->GetCustomCommand())
  2222. {
  2223. cmCustomCommand *c = (*i)->GetCustomCommand();
  2224. // escape spaces and convert to native slashes path for
  2225. // the command
  2226. std::string comment = c->GetComment();
  2227. std::string command = c->GetCommand();
  2228. cmSystemTools::ReplaceString(command, "/./", "/");
  2229. command = this->ConvertToRelativeOutputPath(command.c_str());
  2230. command += " ";
  2231. // now add the arguments
  2232. command += c->GetArguments();
  2233. std::vector<std::string> depends;
  2234. // Collect out all the dependencies for this rule.
  2235. for(std::vector<std::string>::const_iterator d =
  2236. c->GetDepends().begin();
  2237. d != c->GetDepends().end(); ++d)
  2238. {
  2239. std::string dep = *d;
  2240. m_Makefile->ExpandVariablesInString(dep);
  2241. // watch for target dependencies,
  2242. std::string libPath = dep + "_CMAKE_PATH";
  2243. const char* cacheValue = m_Makefile->GetDefinition(libPath.c_str());
  2244. if ( cacheValue && *cacheValue )
  2245. {
  2246. libPath = cacheValue;
  2247. if (m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH") &&
  2248. m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH")[0] != '\0')
  2249. {
  2250. libPath = m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
  2251. }
  2252. libPath += "/";
  2253. libPath += dep;
  2254. libPath += cmSystemTools::GetExecutableExtension();
  2255. dep = libPath;
  2256. }
  2257. cmSystemTools::ReplaceString(dep, "/./", "/");
  2258. cmSystemTools::ReplaceString(dep, "/$(IntDir)/", "/");
  2259. dep = this->ConvertToRelativeOutputPath(dep.c_str());
  2260. depends.push_back(dep.c_str());
  2261. }
  2262. // output rule
  2263. if (processedOutputs.find(c->GetOutput()) == processedOutputs.end())
  2264. {
  2265. this->OutputMakeRule(fout,
  2266. (comment.size()?comment.c_str():"Custom command"),
  2267. c->GetOutput().c_str(),
  2268. depends,
  2269. command.c_str());
  2270. processedOutputs.insert(c->GetOutput());
  2271. }
  2272. else
  2273. {
  2274. cmSystemTools::Error("An output was found with multiple rules on how to build it for output: ",
  2275. c->GetOutput().c_str());
  2276. }
  2277. }
  2278. }
  2279. }
  2280. std::string
  2281. cmLocalUnixMakefileGenerator::ConvertToOutputForExisting(const char* p)
  2282. {
  2283. std::string ret = this->ConvertToRelativeOutputPath(p);
  2284. // if there are spaces in the path, then get the short path version
  2285. // if there is one
  2286. if(ret.find(' ') != std::string::npos)
  2287. {
  2288. if(cmSystemTools::FileExists(p))
  2289. {
  2290. if(!cmSystemTools::GetShortPath(ret.c_str(), ret))
  2291. {
  2292. ret = this->ConvertToRelativeOutputPath(p);
  2293. }
  2294. }
  2295. }
  2296. return ret;
  2297. }
  2298. void cmLocalUnixMakefileGenerator::OutputMakeVariables(std::ostream& fout)
  2299. {
  2300. const char* variables =
  2301. "# the standard shell for make\n"
  2302. "SHELL = /bin/sh\n"
  2303. "\n";
  2304. if(!m_WindowsShell)
  2305. {
  2306. fout << variables;
  2307. }
  2308. else
  2309. {
  2310. fout <<
  2311. "!IF \"$(OS)\" == \"Windows_NT\"\n"
  2312. "NULL=\n"
  2313. "!ELSE \n"
  2314. "NULL=nul\n"
  2315. "!ENDIF \n";
  2316. }
  2317. if(m_MakeSilentFlag.size())
  2318. {
  2319. fout << "MAKESILENT = " << m_MakeSilentFlag << "\n";
  2320. }
  2321. std::string cmakecommand = this->ConvertToOutputForExisting(
  2322. m_Makefile->GetDefinition("CMAKE_COMMAND"));
  2323. fout << "CMAKE_COMMAND = "
  2324. << cmakecommand
  2325. << "\n";
  2326. fout << "RM = " << cmakecommand.c_str() << " -E remove -f\n";
  2327. if(m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))
  2328. {
  2329. fout << "CMAKE_EDIT_COMMAND = "
  2330. << this->ConvertToOutputForExisting(m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))
  2331. << "\n";
  2332. }
  2333. fout << "CMAKE_CURRENT_SOURCE = " <<
  2334. this->ConvertToRelativeOutputPath(m_Makefile->GetStartDirectory())
  2335. << "\n";
  2336. fout << "CMAKE_CURRENT_BINARY = " <<
  2337. this->ConvertToRelativeOutputPath(m_Makefile->GetStartOutputDirectory())
  2338. << "\n";
  2339. fout << "CMAKE_SOURCE_DIR = " <<
  2340. this->ConvertToRelativeOutputPath(m_Makefile->GetHomeDirectory())
  2341. << "\n";
  2342. fout << "CMAKE_BINARY_DIR = " <<
  2343. this->ConvertToRelativeOutputPath(m_Makefile->GetHomeOutputDirectory())
  2344. << "\n";
  2345. // Output Include paths
  2346. fout << "INCLUDE_FLAGS = ";
  2347. std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
  2348. std::vector<std::string>::iterator i;
  2349. fout << "-I" <<
  2350. this->ConvertToOutputForExisting(m_Makefile->GetStartDirectory()) << " ";
  2351. std::map<cmStdString, cmStdString> implicitIncludes;
  2352. implicitIncludes["/usr/include"] = "/usr/include";
  2353. if(m_Makefile->GetDefinition("CMAKE_PLATFORM_IMPLICIT_INCLUDE_DIRECTORIES"))
  2354. {
  2355. std::string arg = m_Makefile->GetDefinition("CMAKE_PLATFORM_IMPLICIT_INCLUDE_DIRECTORIES");
  2356. std::vector<std::string> implicitIncludeVec;
  2357. cmSystemTools::ExpandListArgument(arg, implicitIncludeVec);
  2358. for(unsigned int k =0; k < implicitIncludeVec.size(); k++)
  2359. {
  2360. implicitIncludes[implicitIncludeVec[k]] = implicitIncludeVec[k];
  2361. }
  2362. }
  2363. for(i = includes.begin(); i != includes.end(); ++i)
  2364. {
  2365. std::string include = *i;
  2366. // Don't output a -I for the standard include path "/usr/include".
  2367. // This can cause problems with certain standard library
  2368. // implementations because the wrong headers may be found first.
  2369. if(implicitIncludes.find(include) == implicitIncludes.end())
  2370. {
  2371. fout << "-I" << this->ConvertToOutputForExisting(i->c_str()) << " ";
  2372. }
  2373. }
  2374. fout << m_Makefile->GetDefineFlags();
  2375. fout << "\n\n";
  2376. }
  2377. void cmLocalUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
  2378. {
  2379. this->OutputMakeRule(fout,
  2380. "default build rule",
  2381. "all",
  2382. "cmake.depends $(SUBDIR_PREORDER_BUILD) $(TARGETS) $(SUBDIR_BUILD)",
  2383. 0);
  2384. this->OutputMakeRule(fout,
  2385. "clean generated files",
  2386. "clean",
  2387. "$(SUBDIR_CLEAN)",
  2388. "-@ $(RM) $(CLEAN_OBJECT_FILES) "
  2389. " $(TARGETS) $(TARGET_EXTRAS) $(GENERATED_QT_FILES) $(GENERATED_FLTK_FILES) $(ADDITIONAL_MAKE_CLEAN_FILES)");
  2390. // collect up all the sources
  2391. std::vector<std::string> allsources;
  2392. std::map<cmStdString, cmTarget>& targets = m_Makefile->GetTargets();
  2393. for(std::map<cmStdString,cmTarget>::const_iterator target = targets.begin();
  2394. target != targets.end(); ++target)
  2395. {
  2396. // Iterate over every source for this target.
  2397. const std::vector<cmSourceFile*>& sources = target->second.GetSourceFiles();
  2398. for(std::vector<cmSourceFile*>::const_iterator source = sources.begin();
  2399. source != sources.end(); ++source)
  2400. {
  2401. if(!(*source)->GetPropertyAsBool("HEADER_FILE_ONLY"))
  2402. {
  2403. allsources.push_back(this->ConvertToRelativeOutputPath((*source)->GetFullPath().c_str()));
  2404. }
  2405. }
  2406. }
  2407. std::string checkCache = m_Makefile->GetHomeOutputDirectory();
  2408. checkCache += "/cmake.check_cache";
  2409. checkCache = this->ConvertToRelativeOutputPath(checkCache.c_str());
  2410. std::vector<std::string> cmake_depends;
  2411. cmake_depends.push_back("$(CMAKE_MAKEFILE_SOURCES)");
  2412. this->OutputMakeRule(fout,
  2413. "dependencies.",
  2414. "cmake.depends",
  2415. cmake_depends,
  2416. "$(CMAKE_COMMAND) "
  2417. "-S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
  2418. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2419. this->OutputMakeRule(fout,
  2420. "dependencies",
  2421. "cmake.check_depends",
  2422. allsources,
  2423. "$(CMAKE_COMMAND) "
  2424. "-S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
  2425. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2426. this->OutputMakeRule(fout,
  2427. "dependencies",
  2428. "depend",
  2429. "$(SUBDIR_DEPEND)",
  2430. "$(CMAKE_COMMAND) "
  2431. "-S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
  2432. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2433. this->OutputMakeRule(fout,
  2434. "dependencies",
  2435. "dependlocal",
  2436. 0,
  2437. "$(CMAKE_COMMAND) "
  2438. "-S$(CMAKE_CURRENT_SOURCE) -O$(CMAKE_CURRENT_BINARY) "
  2439. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2440. this->OutputMakeRule(fout,
  2441. "CMakeCache.txt",
  2442. "rebuild_cache",
  2443. 0,
  2444. "$(CMAKE_COMMAND) "
  2445. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2446. std::vector<std::string> check_cache_depends;
  2447. std::string CMakeCache = m_Makefile->GetHomeOutputDirectory();
  2448. CMakeCache += "/CMakeCache.txt";
  2449. CMakeCache = this->ConvertToRelativeOutputPath(CMakeCache.c_str());
  2450. check_cache_depends.push_back("$(CMAKE_MAKEFILE_SOURCES)");
  2451. this->OutputMakeRule(fout,
  2452. "CMakeCache.txt because out-of-date:",
  2453. checkCache.c_str(),
  2454. check_cache_depends,
  2455. "$(CMAKE_COMMAND) "
  2456. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2457. // if CMAKE_EDIT_COMMAND is defined then add a rule to run it
  2458. // called edit_cache
  2459. if(m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))
  2460. {
  2461. this->OutputMakeRule(fout,
  2462. "edit CMakeCache.txt",
  2463. "edit_cache",
  2464. 0,
  2465. "$(CMAKE_EDIT_COMMAND) "
  2466. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2467. }
  2468. else
  2469. {
  2470. this->OutputMakeRule(fout,
  2471. "edit CMakeCache.txt",
  2472. "edit_cache",
  2473. 0,
  2474. "$(CMAKE_COMMAND) "
  2475. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -i");
  2476. }
  2477. std::string cacheFile = m_Makefile->GetHomeOutputDirectory();
  2478. cacheFile += "/CMakeCache.txt";
  2479. cacheFile = this->ConvertToRelativeOutputPath(cacheFile.c_str());
  2480. this->OutputMakeRule(fout,
  2481. "CMakeCache.txt",
  2482. cacheFile.c_str(),
  2483. 0,
  2484. "$(CMAKE_COMMAND) "
  2485. "-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
  2486. this->OutputMakeRule(fout,
  2487. "Rule to keep make from removing Makefiles "
  2488. "if control-C is hit during a run of cmake.",
  2489. ".PRECIOUS",
  2490. "Makefile cmake.depends",
  2491. 0);
  2492. this->OutputSourceObjectBuildRules(fout);
  2493. // find ctest
  2494. std::string ctest = m_Makefile->GetDefinition("CMAKE_COMMAND");
  2495. ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
  2496. ctest += "/";
  2497. ctest += "ctest";
  2498. ctest += cmSystemTools::GetExecutableExtension();
  2499. if(!cmSystemTools::FileExists(ctest.c_str()))
  2500. {
  2501. ctest = m_Makefile->GetDefinition("CMAKE_COMMAND");
  2502. ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
  2503. ctest += "/Debug/";
  2504. ctest += "ctest";
  2505. ctest += cmSystemTools::GetExecutableExtension();
  2506. }
  2507. if(!cmSystemTools::FileExists(ctest.c_str()))
  2508. {
  2509. ctest = m_Makefile->GetDefinition("CMAKE_COMMAND");
  2510. ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
  2511. ctest += "/Release/";
  2512. ctest += "ctest";
  2513. ctest += cmSystemTools::GetExecutableExtension();
  2514. }
  2515. if (!cmSystemTools::FileExists(ctest.c_str()))
  2516. {
  2517. if ( !m_Makefile->GetDefinition("PROJECT_NAME") ||
  2518. strcmp(m_Makefile->GetDefinition("PROJECT_NAME"), "CMake") )
  2519. {
  2520. return;
  2521. }
  2522. ctest = m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
  2523. ctest += "/ctest";
  2524. }
  2525. if (m_Makefile->IsOn("CMAKE_TESTING_ENABLED"))
  2526. {
  2527. fout << "ARGS=\n";
  2528. std::string cmd = this->ConvertToOutputForExisting(ctest.c_str());
  2529. cmd += " $(ARGS)";
  2530. this->OutputMakeRule(fout,
  2531. "tests",
  2532. "test",
  2533. "",
  2534. cmd.c_str());
  2535. }
  2536. this->OutputMakeRule(fout, "installation", "install", "",
  2537. "$(CMAKE_COMMAND) -P cmake_install.cmake");
  2538. }
  2539. void
  2540. cmLocalUnixMakefileGenerator::
  2541. OutputBuildObjectFromSource(std::ostream& fout,
  2542. const char* shortName,
  2543. const cmSourceFile& source,
  2544. const char* extraCompileFlags,
  2545. bool shared)
  2546. {
  2547. // Header files shouldn't have build rules.
  2548. if(source.GetPropertyAsBool("HEADER_FILE_ONLY"))
  2549. {
  2550. return;
  2551. }
  2552. std::string comment = "object file";
  2553. std::string objectFile = std::string(shortName) +
  2554. this->GetOutputExtension(source.GetSourceExtension().c_str());
  2555. objectFile = this->CreateSafeUniqueObjectFileName(objectFile.c_str());
  2556. objectFile = this->ConvertToRelativeOutputPath(objectFile.c_str());
  2557. cmSystemTools::FileFormat format =
  2558. cmSystemTools::GetFileFormat(source.GetSourceExtension().c_str());
  2559. std::vector<std::string> rules;
  2560. std::string flags;
  2561. if(extraCompileFlags)
  2562. {
  2563. flags += extraCompileFlags;
  2564. }
  2565. std::string sourceFile =
  2566. this->ConvertToRelativeOutputPath(source.GetFullPath().c_str());
  2567. std::string buildType = m_Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
  2568. buildType = cmSystemTools::UpperCase(buildType);
  2569. switch(format)
  2570. {
  2571. case cmSystemTools::C_FILE_FORMAT:
  2572. {
  2573. rules.push_back(m_Makefile->GetDefinition("CMAKE_C_COMPILE_OBJECT"));
  2574. flags += m_Makefile->GetSafeDefinition("CMAKE_C_FLAGS");
  2575. flags += " ";
  2576. if(buildType.size())
  2577. {
  2578. std::string build = "CMAKE_C_FLAGS_";
  2579. build += buildType;
  2580. flags += m_Makefile->GetSafeDefinition(build.c_str());
  2581. flags += " ";
  2582. }
  2583. if(shared)
  2584. {
  2585. flags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_C_FLAGS");
  2586. flags += " ";
  2587. }
  2588. if(cmSystemTools::IsOn(m_Makefile->GetDefinition("BUILD_SHARED_LIBS")))
  2589. {
  2590. flags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_BUILD_C_FLAGS");
  2591. flags += " ";
  2592. }
  2593. break;
  2594. }
  2595. case cmSystemTools::CXX_FILE_FORMAT:
  2596. {
  2597. rules.push_back(m_Makefile->GetDefinition("CMAKE_CXX_COMPILE_OBJECT"));
  2598. flags += m_Makefile->GetSafeDefinition("CMAKE_CXX_FLAGS");
  2599. flags += " ";
  2600. if(buildType.size())
  2601. {
  2602. std::string build = "CMAKE_CXX_FLAGS_";
  2603. build += buildType;
  2604. flags += m_Makefile->GetSafeDefinition(build.c_str());
  2605. flags += " ";
  2606. }
  2607. if(shared)
  2608. {
  2609. flags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_LIBRARY_CXX_FLAGS");
  2610. flags += " ";
  2611. }
  2612. if(cmSystemTools::IsOn(m_Makefile->GetDefinition("BUILD_SHARED_LIBS")))
  2613. {
  2614. flags += m_Makefile->GetSafeDefinition("CMAKE_SHARED_BUILD_CXX_FLAGS");
  2615. flags += " ";
  2616. }
  2617. break;
  2618. }
  2619. case cmSystemTools::HEADER_FILE_FORMAT:
  2620. return;
  2621. case cmSystemTools::DEFINITION_FILE_FORMAT:
  2622. return;
  2623. case cmSystemTools::OBJECT_FILE_FORMAT:
  2624. return;
  2625. case cmSystemTools::RESOURCE_FILE_FORMAT:
  2626. {
  2627. flags = " $(INCLUDE_FLAGS) ";
  2628. // use rc rule here if it is defined
  2629. const char* rule = m_Makefile->GetDefinition("CMAKE_COMPILE_RESOURCE");
  2630. if(rule)
  2631. {
  2632. rules.push_back(rule);
  2633. }
  2634. }
  2635. break;
  2636. case cmSystemTools::NO_FILE_FORMAT:
  2637. case cmSystemTools::JAVA_FILE_FORMAT:
  2638. case cmSystemTools::STATIC_LIBRARY_FILE_FORMAT:
  2639. case cmSystemTools::SHARED_LIBRARY_FILE_FORMAT:
  2640. case cmSystemTools::MODULE_FILE_FORMAT:
  2641. case cmSystemTools::UNKNOWN_FILE_FORMAT:
  2642. cmSystemTools::Error("Unexpected file type ",
  2643. sourceFile.c_str());
  2644. break;
  2645. }
  2646. flags += "$(INCLUDE_FLAGS) ";
  2647. // expand multi-command semi-colon separated lists
  2648. // of commands into separate commands
  2649. std::vector<std::string> commands;
  2650. cmSystemTools::ExpandList(rules, commands);
  2651. for(std::vector<std::string>::iterator i = commands.begin();
  2652. i != commands.end(); ++i)
  2653. {
  2654. this->ExpandRuleVariables(*i,
  2655. 0, // no objects
  2656. 0, // no target
  2657. 0, // no link libs
  2658. sourceFile.c_str(),
  2659. objectFile.c_str(),
  2660. flags.c_str());
  2661. }
  2662. std::vector<std::string> sourceAndDeps;
  2663. sourceAndDeps.push_back(sourceFile);
  2664. // Check for extra object-file dependencies.
  2665. std::vector<std::string> depends;
  2666. const char* additionalDeps = source.GetProperty("OBJECT_DEPENDS");
  2667. if(additionalDeps)
  2668. {
  2669. cmSystemTools::ExpandListArgument(additionalDeps, depends);
  2670. for(std::vector<std::string>::iterator i = depends.begin();
  2671. i != depends.end(); ++i)
  2672. {
  2673. sourceAndDeps.push_back(this->ConvertToRelativeOutputPath(i->c_str()));
  2674. }
  2675. }
  2676. this->OutputMakeRule(fout,
  2677. comment.c_str(),
  2678. objectFile.c_str(),
  2679. sourceAndDeps,
  2680. commands);
  2681. }
  2682. void cmLocalUnixMakefileGenerator::OutputSourceObjectBuildRules(std::ostream& fout)
  2683. {
  2684. fout << "# Rules to build " << this->GetOutputExtension("")
  2685. << " files from their sources:\n";
  2686. std::set<std::string> rules;
  2687. // Iterate over every target.
  2688. std::map<cmStdString, cmTarget>& targets = m_Makefile->GetTargets();
  2689. for(std::map<cmStdString, cmTarget>::const_iterator target = targets.begin();
  2690. target != targets.end(); ++target)
  2691. {
  2692. bool shared = ((target->second.GetType() == cmTarget::SHARED_LIBRARY) ||
  2693. (target->second.GetType() == cmTarget::MODULE_LIBRARY));
  2694. std::string exportsDef = "";
  2695. if(shared)
  2696. {
  2697. std::string export_symbol;
  2698. if (const char* custom_export_name = target->second.GetProperty("DEFINE_SYMBOL"))
  2699. {
  2700. export_symbol = custom_export_name;
  2701. }
  2702. else
  2703. {
  2704. std::string in = target->first + "_EXPORTS";
  2705. export_symbol = cmSystemTools::MakeCindentifier(in.c_str());
  2706. }
  2707. exportsDef = "-D"+ export_symbol;
  2708. }
  2709. // Iterate over every source for this target.
  2710. const std::vector<cmSourceFile*>& sources =
  2711. target->second.GetSourceFiles();
  2712. for(std::vector<cmSourceFile*>::const_iterator source = sources.begin();
  2713. source != sources.end(); ++source)
  2714. {
  2715. if(!(*source)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
  2716. !(*source)->GetCustomCommand())
  2717. {
  2718. std::string shortName;
  2719. std::string sourceName;
  2720. // If the full path to the source file includes this
  2721. // directory, we want to use the relative path for the
  2722. // filename of the object file. Otherwise, we will use just
  2723. // the filename portion.
  2724. if((cmSystemTools::GetFilenamePath(
  2725. (*source)->GetFullPath()).find(
  2726. m_Makefile->GetCurrentDirectory()) == 0)
  2727. || (cmSystemTools::GetFilenamePath(
  2728. (*source)->GetFullPath()).find(
  2729. m_Makefile->GetCurrentOutputDirectory()) == 0))
  2730. {
  2731. sourceName = (*source)->GetSourceName()+"."+
  2732. (*source)->GetSourceExtension();
  2733. shortName = (*source)->GetSourceName();
  2734. // The path may be relative. See if a directory needs to be
  2735. // created for the output file. This is a ugly, and perhaps
  2736. // should be moved elsewhere.
  2737. std::string relPath =
  2738. cmSystemTools::GetFilenamePath((*source)->GetSourceName());
  2739. if(relPath != "")
  2740. {
  2741. std::string outPath = m_Makefile->GetCurrentOutputDirectory();
  2742. outPath += "/"+relPath;
  2743. cmSystemTools::MakeDirectory(outPath.c_str());
  2744. }
  2745. }
  2746. else
  2747. {
  2748. sourceName = (*source)->GetFullPath();
  2749. shortName = cmSystemTools::GetFilenameName((*source)->GetSourceName());
  2750. }
  2751. std::string shortNameWithExt = shortName +
  2752. (*source)->GetSourceExtension();
  2753. // Only output a rule for each .o once.
  2754. std::string compileFlags = exportsDef;
  2755. compileFlags += " ";
  2756. if(rules.find(shortNameWithExt) == rules.end())
  2757. {
  2758. if((*source)->GetProperty("COMPILE_FLAGS"))
  2759. {
  2760. compileFlags += (*source)->GetProperty("COMPILE_FLAGS");
  2761. compileFlags += " ";
  2762. }
  2763. this->OutputBuildObjectFromSource(fout,
  2764. shortName.c_str(),
  2765. *(*source),
  2766. compileFlags.c_str(),
  2767. shared);
  2768. rules.insert(shortNameWithExt);
  2769. }
  2770. }
  2771. }
  2772. }
  2773. }
  2774. void cmLocalUnixMakefileGenerator::OutputMakeRule(std::ostream& fout,
  2775. const char* comment,
  2776. const char* target,
  2777. const char* depends,
  2778. const char* command,
  2779. const char* command2,
  2780. const char* command3,
  2781. const char* command4)
  2782. {
  2783. std::vector<std::string> commands;
  2784. if(command)
  2785. {
  2786. commands.push_back(command);
  2787. }
  2788. if(command2)
  2789. {
  2790. commands.push_back(command2);
  2791. }
  2792. if(command3)
  2793. {
  2794. commands.push_back(command3);
  2795. }
  2796. if(command4)
  2797. {
  2798. commands.push_back(command4);
  2799. }
  2800. this->OutputMakeRule(fout, comment, target, depends, commands);
  2801. }
  2802. void cmLocalUnixMakefileGenerator::OutputMakeRule(std::ostream& fout,
  2803. const char* comment,
  2804. const char* target,
  2805. const char* depends,
  2806. const std::vector<std::string>& commands)
  2807. {
  2808. std::vector<std::string> depend;
  2809. if(depends)
  2810. {
  2811. depend.push_back(depends);
  2812. }
  2813. this->OutputMakeRule(fout, comment, target, depend, commands);
  2814. }
  2815. void cmLocalUnixMakefileGenerator::OutputMakeRule(std::ostream& fout,
  2816. const char* comment,
  2817. const char* target,
  2818. const std::vector<std::string>& depends,
  2819. const char* command)
  2820. {
  2821. std::vector<std::string> commands;
  2822. if(command)
  2823. {
  2824. commands.push_back(command);
  2825. }
  2826. this->OutputMakeRule(fout, comment, target, depends, commands);
  2827. }
  2828. void cmLocalUnixMakefileGenerator::OutputMakeRule(std::ostream& fout,
  2829. const char* comment,
  2830. const char* target,
  2831. const std::vector<std::string>& depends,
  2832. const std::vector<std::string>& commands)
  2833. {
  2834. if(!target)
  2835. {
  2836. cmSystemTools::Error("no target for OutputMakeRule");
  2837. return;
  2838. }
  2839. std::string replace;
  2840. if(comment)
  2841. {
  2842. replace = comment;
  2843. m_Makefile->ExpandVariablesInString(replace);
  2844. fout << "#---------------------------------------------------------\n";
  2845. fout << "# " << replace;
  2846. fout << "\n#\n";
  2847. }
  2848. fout << "\n";
  2849. replace = target;
  2850. m_Makefile->ExpandVariablesInString(replace);
  2851. std::string tgt = this->ConvertToRelativeOutputPath(replace.c_str());
  2852. tgt = this->ConvertToMakeTarget(tgt.c_str());
  2853. if(depends.empty())
  2854. {
  2855. fout << tgt.c_str() << ":\n";
  2856. }
  2857. else
  2858. {
  2859. // Split dependencies into multiple rule lines. This allows for
  2860. // very long dependency lists.
  2861. for(std::vector<std::string>::const_iterator dep = depends.begin();
  2862. dep != depends.end(); ++dep)
  2863. {
  2864. replace = *dep;
  2865. m_Makefile->ExpandVariablesInString(replace);
  2866. replace = this->ConvertToMakeTarget(replace.c_str());
  2867. fout << tgt.c_str() << ": " << replace.c_str() << "\n";
  2868. }
  2869. }
  2870. int count = 0;
  2871. for (std::vector<std::string>::const_iterator i = commands.begin();
  2872. i != commands.end(); ++i)
  2873. {
  2874. replace = *i;
  2875. m_Makefile->ExpandVariablesInString(replace);
  2876. if(count == 0 && replace.find_first_not_of(" \t\n\r") != std::string::npos &&
  2877. replace[0] != '-' && replace.find("echo") != 0
  2878. && replace.find("$(MAKE)") != 0)
  2879. {
  2880. std::string echostring = "Building ";
  2881. echostring += comment;
  2882. echostring += " ";
  2883. echostring += target;
  2884. echostring += "...";
  2885. this->OutputEcho(fout,echostring.c_str());
  2886. }
  2887. fout << "\t" << replace.c_str() << "\n";
  2888. count++;
  2889. }
  2890. fout << "\n";
  2891. }
  2892. std::string cmLocalUnixMakefileGenerator::LowerCasePath(const char* path)
  2893. {
  2894. #ifdef _WIN32
  2895. return cmSystemTools::LowerCase(path);
  2896. #else
  2897. return std::string(path);
  2898. #endif
  2899. }
  2900. std::string&
  2901. cmLocalUnixMakefileGenerator::CreateSafeUniqueObjectFileName(const char* sin)
  2902. {
  2903. if ( m_Makefile->IsOn("CMAKE_MANGLE_OBJECT_FILE_NAMES") )
  2904. {
  2905. std::map<cmStdString,cmStdString>::iterator it = m_UniqueObjectNamesMap.find(sin);
  2906. if ( it == m_UniqueObjectNamesMap.end() )
  2907. {
  2908. std::string ssin = sin;
  2909. bool done;
  2910. int cc = 0;
  2911. char rpstr[100];
  2912. sprintf(rpstr, "_p_");
  2913. cmSystemTools::ReplaceString(ssin, "+", rpstr);
  2914. std::string sssin = sin;
  2915. do
  2916. {
  2917. done = true;
  2918. for ( it = m_UniqueObjectNamesMap.begin();
  2919. it != m_UniqueObjectNamesMap.end();
  2920. ++ it )
  2921. {
  2922. if ( it->second == ssin )
  2923. {
  2924. done = false;
  2925. }
  2926. }
  2927. if ( done )
  2928. {
  2929. break;
  2930. }
  2931. sssin = ssin;
  2932. cmSystemTools::ReplaceString(ssin, "_p_", rpstr);
  2933. sprintf(rpstr, "_p%d_", cc++);
  2934. }
  2935. while ( !done );
  2936. m_UniqueObjectNamesMap[sin] = ssin;
  2937. }
  2938. }
  2939. else
  2940. {
  2941. m_UniqueObjectNamesMap[sin] = sin;
  2942. }
  2943. return m_UniqueObjectNamesMap[sin];
  2944. }
  2945. std::string
  2946. cmLocalUnixMakefileGenerator::CreateMakeVariable(const char* sin, const char* s2in)
  2947. {
  2948. std::string s = sin;
  2949. std::string s2 = s2in;
  2950. std::string unmodified = s;
  2951. unmodified += s2;
  2952. // if there is no restriction on the length of make variables
  2953. // and there are no "." charactors in the string, then return the
  2954. // unmodified combination.
  2955. if(!m_MakefileVariableSize && unmodified.find('.') == s.npos)
  2956. {
  2957. return unmodified;
  2958. }
  2959. // see if the variable has been defined before and return
  2960. // the modified version of the variable
  2961. std::map<cmStdString, cmStdString>::iterator i = m_MakeVariableMap.find(unmodified);
  2962. if(i != m_MakeVariableMap.end())
  2963. {
  2964. return i->second;
  2965. }
  2966. // start with the unmodified variable
  2967. std::string ret = unmodified;
  2968. // if this there is no value for m_MakefileVariableSize then
  2969. // the string must have bad characters in it
  2970. if(!m_MakefileVariableSize)
  2971. {
  2972. cmSystemTools::ReplaceString(ret, ".", "_");
  2973. int ni = 0;
  2974. char buffer[5];
  2975. // make sure the _ version is not already used, if
  2976. // it is used then add number to the end of the variable
  2977. while(m_ShortMakeVariableMap.count(ret) && ni < 1000)
  2978. {
  2979. ++ni;
  2980. sprintf(buffer, "%04d", ni);
  2981. ret = unmodified + buffer;
  2982. }
  2983. m_ShortMakeVariableMap[ret] = "1";
  2984. m_MakeVariableMap[unmodified] = ret;
  2985. return ret;
  2986. }
  2987. // if the string is greater the 32 chars it is an invalid vairable name
  2988. // for borland make
  2989. if(static_cast<int>(ret.size()) > m_MakefileVariableSize)
  2990. {
  2991. int keep = m_MakefileVariableSize - 8;
  2992. int size = keep + 3;
  2993. std::string str1 = s;
  2994. std::string str2 = s2;
  2995. // we must shorten the combined string by 4 charactors
  2996. // keep no more than 24 charactors from the second string
  2997. if(static_cast<int>(str2.size()) > keep)
  2998. {
  2999. str2 = str2.substr(0, keep);
  3000. }
  3001. if(static_cast<int>(str1.size()) + static_cast<int>(str2.size()) > size)
  3002. {
  3003. str1 = str1.substr(0, size - str2.size());
  3004. }
  3005. char buffer[5];
  3006. int ni = 0;
  3007. sprintf(buffer, "%04d", ni);
  3008. ret = str1 + str2 + buffer;
  3009. while(m_ShortMakeVariableMap.count(ret) && ni < 1000)
  3010. {
  3011. ++ni;
  3012. sprintf(buffer, "%04d", ni);
  3013. ret = str1 + str2 + buffer;
  3014. }
  3015. if(ni == 1000)
  3016. {
  3017. cmSystemTools::Error("Borland makefile variable length too long");
  3018. return unmodified;
  3019. }
  3020. // once an unused variable is found
  3021. m_ShortMakeVariableMap[ret] = "1";
  3022. }
  3023. // always make an entry into the unmodified to variable map
  3024. m_MakeVariableMap[unmodified] = ret;
  3025. return ret;
  3026. }
  3027. void cmLocalUnixMakefileGenerator::GetLibraryNames(const char* n,
  3028. const cmTarget& t,
  3029. std::string& name,
  3030. std::string& soName,
  3031. std::string& realName,
  3032. std::string& baseName)
  3033. {
  3034. // Check for library version properties.
  3035. const char* version = t.GetProperty("VERSION");
  3036. const char* soversion = t.GetProperty("SOVERSION");
  3037. if((t.GetType() != cmTarget::SHARED_LIBRARY &&
  3038. t.GetType() != cmTarget::MODULE_LIBRARY) ||
  3039. !m_Makefile->GetDefinition("CMAKE_SHARED_LIBRARY_SONAME_C_FLAG"))
  3040. {
  3041. // Versioning is supported only for shared libraries and modules,
  3042. // and then only when the platform supports an soname flag.
  3043. version = 0;
  3044. soversion = 0;
  3045. }
  3046. if(version && !soversion)
  3047. {
  3048. // The soversion must be set if the library version is set. Use
  3049. // the library version as the soversion.
  3050. soversion = version;
  3051. }
  3052. // The library name.
  3053. name = this->GetFullTargetName(n, t);
  3054. // The library's soname.
  3055. soName = name;
  3056. if(soversion)
  3057. {
  3058. soName += ".";
  3059. soName += soversion;
  3060. }
  3061. // The library's real name on disk.
  3062. realName = name;
  3063. if(version)
  3064. {
  3065. realName += ".";
  3066. realName += version;
  3067. }
  3068. else if(soversion)
  3069. {
  3070. realName += ".";
  3071. realName += soversion;
  3072. }
  3073. // The library name without extension.
  3074. baseName = this->GetBaseTargetName(n, t);
  3075. }
  3076. std::string cmLocalUnixMakefileGenerator::ConvertToMakeTarget(const char* tgt)
  3077. {
  3078. // Make targets should not have a leading './' for a file in the
  3079. // directory containing the makefile.
  3080. std::string ret = tgt;
  3081. if(ret.size() > 2 &&
  3082. (ret[0] == '.') &&
  3083. ( (ret[1] == '/') || ret[1] == '\\'))
  3084. {
  3085. std::string upath = ret;
  3086. cmSystemTools::ConvertToUnixSlashes(upath);
  3087. if(upath.find(2, '/') == upath.npos)
  3088. {
  3089. ret = ret.substr(2, ret.size()-2);
  3090. }
  3091. }
  3092. return ret;
  3093. }