diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index cee043d..e5377f8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,4 +7,16 @@ INCLUDES = @XCOMPMGR_CFLAGS@ EXTRA_DIST = \ autogen.sh \ + ChangeLog \ ${man_MANS} + +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 + |