summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 8e14fc3c..18718fba 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,9 +36,12 @@ DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb --disable-icon-update --enab
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
-distclean-local:
- if test "$(srcdir)" = "."; then :; else \
- rm -f ChangeLog; \
+# Build ChangeLog from GIT history
+ChangeLog:
+ $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
+ GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
fi
+dist: ChangeLog
+
.PHONY: ChangeLog