summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-01-27 21:23:16 +0100
committerinfirit <[email protected]>2014-02-10 00:41:17 +0100
commit705ad0c6130fdde1369e79d6037c0044208df50a (patch)
treec54de00ba09dc66e4ddc16afb168bc15506785f5
parent5d5e97348d1b0ae2af2b90edf92b7b87e364e619 (diff)
downloadmate-calc-705ad0c6130fdde1369e79d6037c0044208df50a.tar.bz2
mate-calc-705ad0c6130fdde1369e79d6037c0044208df50a.tar.xz
Add dist-hook for ChangeLog
-rw-r--r--Makefile.am14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 33dd4f7..d4604f4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -17,3 +17,17 @@ DISTCLEANFILES = \
EXTRA_DIST = \
autogen.sh
+
+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