diff options
author | James Cloos <cloos@jhcloos.com> | 2007-12-06 16:37:08 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-12-06 16:37:08 -0500 |
commit | 1540dc21e1ef7bb473af7616294e5730e38f66ec (patch) | |
tree | 6dd1fb4a79da0d57606ab0d21976a54605a0cd95 /Makefile.am | |
parent | b1c5b72bb4bb5f3e116255f9d04b368137ff25f7 (diff) |
Replace static ChangeLog with dist-hook to generate from git log
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index d635909..b820545 100644 --- a/Makefile.am +++ b/Makefile.am @@ -96,3 +96,13 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): sed $(MAN_SUBSTS) < $< > $@ + +EXTRA_DIST += ChangeLog +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) + +dist-hook: ChangeLog |