diff options
author | James Cloos <cloos@jhcloos.com> | 2007-12-06 16:39:15 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-12-06 16:39:15 -0500 |
commit | 29a5de547f301b8b3af265d87889ba08ef3a5c8e (patch) | |
tree | 893384acbe093b4cd8da518655bce0b978b0f555 /Makefile.am | |
parent | b845eec55045df17af46fead628e4814af6c1945 (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 9320e38..9254d26 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,3 +8,13 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xineramaproto.pc EXTRA_DIST = autogen.sh xineramaproto.pc.in + +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 |