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".
This commit is contained in:
Brad King 2010-12-06 16:43:04 -05:00
parent afc8906468
commit 5622a16f1f
1 changed files with 1 additions and 1 deletions

View File

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