diff options
author | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:20 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:20 -0500 |
commit | c044ea620446db676ee076484fed3268c4d7c695 (patch) | |
tree | 5fca30f845f8cebd9fb8199758269b77d9fc9688 | |
parent | 6b483e355de6c5ee5dc635ab9b817bf72680b016 (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 dcc853e..8409cfb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,6 +30,8 @@ pkgconfig_DATA = xt.pc EXTRA_DIST = xt.pc.in ChangeLog autogen.sh MAINTAINERCLEANFILES=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) |