diff options
author | raveit65 <[email protected]> | 2016-04-06 11:20:39 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-06 11:20:39 +0200 |
commit | afaacd71c5aa173fdebbe76fd5492c0566a824a6 (patch) | |
tree | d94a0a16f51a7a8e848226eefaca69b3b9b48824 | |
parent | 25f55e742317f5d16cddfef0ce246d278e5c73c2 (diff) | |
download | marco-afaacd71c5aa173fdebbe76fd5492c0566a824a6.tar.bz2 marco-afaacd71c5aa173fdebbe76fd5492c0566a824a6.tar.xz |
Add Changelog generation
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index dd38ff5c..a7a31d79 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,3 +7,13 @@ EXTRA_DIST = autogen.sh HACKING rationales.txt \ intltool-extract.in intltool-merge.in intltool-update.in DISTCLEANFILES = intltool-extract intltool-merge intltool-update po/stamp-it 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 |