summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-01-21 16:39:00 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-01-21 16:39:00 (GMT)
commit8efc43b7d5909c1c5cb8b07ff869befc52d6eac0 (patch)
treec579671a65bfd8928e39643c1eadb77196745b0e /Source/cmUnixMakefileGenerator.cxx
parent9fd92a28f7009eec00d6934892d0db8a39678d89 (diff)
downloadCMake-8efc43b7d5909c1c5cb8b07ff869befc52d6eac0.zip
CMake-8efc43b7d5909c1c5cb8b07ff869befc52d6eac0.tar.gz
CMake-8efc43b7d5909c1c5cb8b07ff869befc52d6eac0.tar.bz2
BUG: remove warning from hpux make
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmUnixMakefileGenerator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx
index 7733a00..c19fe4b 100644
--- a/Source/cmUnixMakefileGenerator.cxx
+++ b/Source/cmUnixMakefileGenerator.cxx
@@ -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"