From d224d9bb721bf7e70dafc519ac24855e17b0d603 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Tue, 28 Apr 2009 09:53:06 +0000 Subject: [build] Rename ChangeLog and autogenerate it --- (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index a46473a..9029b00 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,3 +54,24 @@ DISTCHECK_CONFIGURE_FLAGS = --disable-schemas-install --disable-scrollkeeper --e # Ignore scrollkeeper issues for now. @#*$& scrollkeeper distuninstallcheck_listfiles = find . -type f -print | grep -v scrollkeeper | grep -v /share/gnome/help/ | grep -v \.omf + +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 -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 -- cgit v0.9.1