summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-04-25 15:59:36 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-04-25 15:59:36 +0200
commite24d78079036ca73f0d2998c4d248bc96c3f0475 (patch)
treea32428863d9fdb0a668e62f1bbb07b39c36c661e /Makefile.am
parent40334d2dec0545100edcca403d50ad6b1b015a9a (diff)
downloadcataract-e24d78079036ca73f0d2998c4d248bc96c3f0475.tar.xz
Generate ChangeLog automatically
Disable dist-gzip Unmark package as foreign ChangeLog creation taken from http://git.gnome.org/cgit/gvfs/commit/?id=a8620dfb94955fd9e6678dc936b7f97d8610df00
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am25
1 files changed, 24 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 7c7a990..e346226 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,4 +22,27 @@ samples:
ACLOCAL_AMFLAGS = -I m4
-AUTOMAKE_OPTIONS = foreign dist-bzip2
+AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
+
+distclean-local:
+ if test $(srdcir) = .; then :; else \
+ rm -f ChangeLog; \
+ fi
+
+
+ChangeLog:
+ @echo Creating $@
+ @if test -d "$(srcdir)/.git"; then \
+ (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
+ && mv -f $@.tmp $@ \
+ || ($(RM) $@.tmp; \
+ echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
+ (test -f $@ || echo git-log is required to generate this file >> $@)); \
+ else \
+ test -f $@ || \
+ (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
+ echo A git checkout and git-log is required to generate this file >> $@); \
+ fi
+
+
+.PHONY: ChangeLog