diff options
-rw-r--r-- | ChangeLog | 81 | ||||
-rw-r--r-- | Makefile.am | 11 |
2 files changed, 10 insertions, 82 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 81b785b..0000000 --- a/ChangeLog +++ /dev/null @@ -1,81 +0,0 @@ -2006-04-26 Adam Jackson <ajax@freedesktop.org> - - * configure.ac: - Bump to 1.0.1 - -2006-03-31 Daniel Stone <daniel@freedesktop.org> - - * **/*.[ch]: - Reindent with -bad -bap -c0 -cd0 -cp0 -ncdb -ci4 -cli0 -ncs -d0 -di4 - -i4 -ip4 -l80 -npcs -psl -sob -ss -ce -sc -br -cdw -lp -cbi0. - -2006-03-20 Adam Jackson <ajax@freedesktop.org> - - * src/Makefile.am: - Bug #6286: Fix build on Cygwin. (Yaakov Selkowitz) - -2006-02-12 Alan Coopersmith <alan.coopersmith@sun.com> - - * man/Makefile.am: - Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> - Shadow pages not created correctly when MANDIR & MANSUFFIX don't match. - -2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-06 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * man/Makefile.am: - Change *man_SOURCES ==> *man_PRE to fix autotools warnings. - -2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for X11R7 RC3 release. - -2005-12-02 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - * src/Makefile.am: - Add check and cflags for malloc(0) returning NULL. - -2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * xi.pc.in: - Update pkgconfig files to separate library build-time dependencies - from application build-time dependencies. - -2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for RC1 release. - -2005-10-11 Alan Coopersmith <alan.coopersmith@sun.com> - - * man/Makefile.am: - * configure.ac: - Use sed to put version number in man page - Add shadow man pages for man pages that document multiple functions. - -2005-10-05 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * src/Makefile.am: - Added missing file to EXTRA_DIST - -2005-07-08 Keith Packard <keithp@keithp.com> - - * .cvsignore: - * man/.cvsignore: - * src/.cvsignore: - * src/Makefile.am: - Add .cvsignore files - Switch _la_CFLAGS for AM_CFLAGS to clean up directory - -2005-05-22 Alan Coopersmith <alan.coopersmith@sun.com> - - * Makefile.am, src/Makefile.am, man/Makefile.am, configure.ac, - COPYING, NEWS, README, AUTHORS, xi.pc.in: - Initial autotooling. - diff --git a/Makefile.am b/Makefile.am index 059fffc..48b6eea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,4 +7,13 @@ SUBDIRS = src man pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xi.pc -EXTRA_DIST = xi.pc.in autogen.sh +EXTRA_DIST = xi.pc.in autogen.sh ChangeLog + +CLEANFILES = ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + GIT_DIR=${srcdir}/.git git-log > ChangeLog + +dist-hook: ChangeLog |