diff options
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 71beaf1..2b9b1c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,3 +40,14 @@ DISTCLEANFILES = \ intltool-update \ intltool-merge \ po/.intltool-merge-cache + +# 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 + |