summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 15:51:12 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 15:51:12 -0500
commit423873fb23e4a12a9745d13d8967956db7e5b28e (patch)
treeee4f44827686083d238d8f499bfcd84ba9d57f33
parent3d4f1cbe3f54f0acbecef5c45d8082b631b67ae4 (diff)
Add missing PHONY line for automatic ChangeLog generation
-rw-r--r--Makefile.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index bc4ce7c..c9c3c90 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,6 +6,8 @@ AUTOMAKE_OPTIONS = foreign
dist-hook: 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)