Browse Source

Make Fortran $obj.provides.build targets not .PHONY

Commit 60cd72d0 (Cleaned up generation of symbolic rules, 2006-02-15)
incorrectly made these Makefile targets .PHONY even though the build
rule touches an actual file.  Correct it so that the copy_f90_mod and
touch steps do not happen on every "make".
Brad King 15 years ago
parent
commit
5622a16f1f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmMakefileTargetGenerator.cxx

+ 1 - 1
Source/cmMakefileTargetGenerator.cxx

@@ -849,7 +849,7 @@ cmMakefileTargetGenerator
   p_depends.push_back(relativeObj);
   this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0,
                                       temp.c_str(), p_depends, no_commands,
-                                      true);
+                                      false);
 }
 
 //----------------------------------------------------------------------------