diff options
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index be38f92..59e0378 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,3 +10,13 @@ randrdocdir = $(datadir)/doc/$(PACKAGE) randrdoc_DATA = randrproto.txt EXTRA_DIST = autogen.sh randrproto.pc.in $(randrdoc_DATA) + +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 |