BUG: remove warning from hpux make

This commit is contained in:
Bill Hoffman 2002-01-21 11:39:00 -05:00
parent 9fd92a28f7
commit 8efc43b7d5
1 changed files with 2 additions and 0 deletions

View File

@ -233,6 +233,7 @@ void cmUnixMakefileGenerator::OutputMakefile(const char* file)
fout << ".SILENT:\n";
fout << "# disable some common implicit rules to speed things up\n";
fout << ".SUFFIXES:\n";
fout << ".SUFFIXES:.hpuxmakemusthaverule\n";
// create a make variable with all of the sources for this Makefile
// for depend purposes.
fout << "CMAKE_MAKEFILE_SOURCES = ";
@ -1267,6 +1268,7 @@ void cmUnixMakefileGenerator::OutputCheckDepends(std::ostream& fout)
fout << ".SILENT:\n";
fout << "# disable some common implicit rules to speed things up\n";
fout << ".SUFFIXES:\n";
fout << ".SUFFIXES:.hpuxmakemusthaverule\n";
this->OutputMakeVariables(fout);
fout << "default:\n";
fout << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) -f cmake.check_depends all\n"