diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-07-16 14:26:03 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-07-16 14:26:03 -0700 |
commit | 9ef704675867ab08bc8ea129825d4ba32061dded (patch) | |
tree | 601229f049064e881d0208f73ce214c7e61b029b /Makefile.am | |
parent | 39ebc64fcc7ed7abdd529100da4cc6ba59ccff9d (diff) |
Replace static ChangeLog with dist-hook to generate from git log
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e4ed6c1..f130a0b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,8 +12,16 @@ appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST = $(appman_PRE) +EXTRA_DIST = $(appman_PRE) ChangeLog autogen.sh CLEANFILES = $(appman_DATA) +MAINTAINERCLEANFILES = ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + +dist-hook: ChangeLog SED = sed |