diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2006-07-11 13:27:49 -0700 |
---|---|---|
committer | Donnie Berkholz <donnie@comet.(none)> | 2006-07-11 13:28:14 -0700 |
commit | 2d426d1f2608fedb77bd7d010dabece76b8d4a60 (patch) | |
tree | 4b3e123827219906653bcdece7353dfe15c27dc1 | |
parent | 99c711707ad08e1396e123b1c7df687c560a489a (diff) |
Add a .PHONY to ensure the ChangeLog isn't stale.
Setting the ChangeLog rule as phony forces it to be re-run even when the
ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
Solaris make.
(cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit)
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 93bb2da..80fdf2b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,6 +12,8 @@ EXTRA_DIST=x11.pc.in ChangeLog CLEANFILES=ChangeLog +.PHONY: ChangeLog + ChangeLog: git-log > ChangeLog |