diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-04-19 16:23:02 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-04-19 16:23:02 +0000 |
commit | 274aeaea2ad7a5707adfb8ce4dd5cb5d4d77c033 (patch) | |
tree | a0a0be39c2cad8e42aa510004f00e23b494211c3 /app/x11perf/Makefile.am | |
parent | bba04c17ddd44dca56e642d502a6631debcac6cf (diff) |
update to x11perf 1.5
Diffstat (limited to 'app/x11perf/Makefile.am')
-rw-r--r-- | app/x11perf/Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/x11perf/Makefile.am b/app/x11perf/Makefile.am index d6359099e..b8205452f 100644 --- a/app/x11perf/Makefile.am +++ b/app/x11perf/Makefile.am @@ -96,3 +96,13 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): sed $(MAN_SUBSTS) < $< > $@ + +EXTRA_DIST += ChangeLog +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 |