|
|
@@ -33,7 +33,7 @@
|
|
|
#include <ctype.h>
|
|
|
|
|
|
cmMakefileTargetGenerator::cmMakefileTargetGenerator(cmGeneratorTarget* target)
|
|
|
- : cmCommonTargetGenerator()
|
|
|
+ : cmCommonTargetGenerator(target)
|
|
|
, OSXBundleGenerator(0)
|
|
|
, MacOSXContentGenerator(0)
|
|
|
{
|
|
|
@@ -42,15 +42,12 @@ cmMakefileTargetGenerator::cmMakefileTargetGenerator(cmGeneratorTarget* target)
|
|
|
this->FlagFileStream = 0;
|
|
|
this->CustomCommandDriver = OnBuild;
|
|
|
this->FortranModuleDirectoryComputed = false;
|
|
|
- this->Target = target->Target;
|
|
|
- this->Makefile = this->Target->GetMakefile();
|
|
|
this->LocalGenerator =
|
|
|
static_cast<cmLocalUnixMakefileGenerator3*>(target->GetLocalGenerator());
|
|
|
this->ConfigName = this->LocalGenerator->ConfigurationName.c_str();
|
|
|
this->GlobalGenerator =
|
|
|
static_cast<cmGlobalUnixMakefileGenerator3*>(
|
|
|
this->LocalGenerator->GetGlobalGenerator());
|
|
|
- this->GeneratorTarget = target;
|
|
|
cmake* cm = this->GlobalGenerator->GetCMakeInstance();
|
|
|
this->NoRuleMessages = false;
|
|
|
if(const char* ruleStatus = cm->GetState()
|