From 67a5a82586c9ed79a428179da2f54d626985a829 Mon Sep 17 00:00:00 2001 From: Berk Geveci Date: Tue, 15 Jan 2002 17:21:54 -0500 Subject: [PATCH] Improved performance by removing implicit rules. --- Source/cmUnixMakefileGenerator.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 346973a54..78f2f5801 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -231,6 +231,7 @@ void cmUnixMakefileGenerator::OutputMakefile(const char* file) fout << "\n\n"; fout << "# Suppresses display of executed commands\n"; fout << ".SILENT:\n"; + fout << ".SUFFIXES:\n"; // create a make variable with all of the sources for this Makefile // for depend purposes. fout << "CMAKE_MAKEFILE_SOURCES = ";