diff options
-rw-r--r-- | ChangeLog | 21 | ||||
-rw-r--r-- | Makefile.am | 10 |
2 files changed, 10 insertions, 21 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index bb25336..0000000 --- a/ChangeLog +++ /dev/null @@ -1,21 +0,0 @@ -2006-02-13 Adam Jackson <ajax@freedesktop.org> - - * src/screen.c: - Minimal hack to enable EXT_texture_from_pixmap. - -2006-01-18 Adam Jackson <ajax@freedesktop.org> - - * include/comp.h: - * src/screen.c: - * src/texture.c: - Allow using EXT_texture_from_drawable as well as MESA_render_texture. - - * src/screen.c: - Also check for EXT_tfd in the GLX extension string. - - * plugins/Makefile.am: - Deconfuse automake. - -2005-12-31 Zack Rusin <zack@freedesktop.org> - - Initial import. (David Reveman) diff --git a/Makefile.am b/Makefile.am index b888c76..8921931 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,3 +6,13 @@ EXTRA_DIST = \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = glxcomp.pc + +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 |