diff options
author | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:14 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:14 -0500 |
commit | f641875615739ae6431e59b4fc47bb52fdce6381 (patch) | |
tree | 555c15446698dc878955cb17b508a6a7973f2056 | |
parent | ec5ca1927558d686c4957f2ae8c8c50c722cd87b (diff) |
Add missing PHONY line for automatic ChangeLog generation
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index b964031..77a88c8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,6 +28,8 @@ EXTRA_DIST = xscrnsaver.pc.in autogen.sh ChangeLog CLEANFILES = ChangeLog +.PHONY: ChangeLog + ChangeLog: (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) |