Xcode: Disable implicit make rules in custom rules makefiles.

With apologies to the suggester for not accenting the surname
vowel properly.

Suggested-By: Johan Bjork
This commit is contained in:
David Cole 2011-01-11 17:34:06 -05:00
parent 28a0403c34
commit 66d9cd8351
1 changed files with 3 additions and 0 deletions

View File

@ -1279,6 +1279,9 @@ void cmGlobalXCodeGenerator
makefileStream << "# Generated by CMake, DO NOT EDIT\n";
makefileStream << "# Custom rules for " << target.GetName() << "\n";
// disable the implicit rules
makefileStream << ".SUFFIXES: " << "\n";
// have all depend on all outputs
makefileStream << "all: ";
std::map<const cmCustomCommand*, cmStdString> tname;