Autogenerate ChangeLog on distcheck

This commit is contained in:
Lucas Rocha 2009-08-10 22:04:24 +01:00
parent dd026c67de
commit 63da872c90
1 changed files with 14 additions and 0 deletions

View File

@ -21,3 +21,17 @@ DISTCLEANFILES = \
gnome-doc-utils.make
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
dist-hook:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating ChangeLog && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
$(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|| ( rm -f ChangeLog.tmp ; \
echo Failed to generate ChangeLog >&2 ); \
else \
echo A git clone is required to generate a ChangeLog >&2; \
fi