diff options
author | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:21 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:21 -0500 |
commit | 90f2dfbc40d6fa72213f508b0dd85f00965b6194 (patch) | |
tree | fe538be92461bce377578197528d08a8f26edd40 | |
parent | 1b4ca41a58016053220047b9f77a2eec812c03a0 (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 77246ed..d9053b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,6 +27,8 @@ pkgconfig_DATA = fontenc.pc EXTRA_DIST = fontenc.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) |