Moved old ChangeLog to a zipped file, now generate ChangeLog at make dist time.

This commit is contained in:
Tristan Van Berkom 2013-04-15 17:27:30 +09:00
parent 4e3c6e869e
commit 1028e9dd21
3 changed files with 14 additions and 14082 deletions

14082
ChangeLog

File diff suppressed because it is too large Load Diff

BIN
ChangeLog.old.gz Normal file

Binary file not shown.

View File

@ -15,3 +15,17 @@ DISTCLEANFILES = intltool-extract \
intltool-update
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
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 $(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