summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 16:38:49 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 16:38:49 -0500
commiteeaf538fef4673b3c4dc78f5a4099e107cd76910 (patch)
tree4202ae813a17b80f93fe96f6ca134843e12835e5
parentfe41c3974a2b45480e1337fbcff6667153e6f730 (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog74
-rw-r--r--Makefile.am10
2 files changed, 10 insertions, 74 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index ef2412f..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,74 +0,0 @@
-2006-05-15 Adam Jackson <ajax@freedesktop.org>
-
- * configure.ac:
- Bump to 1.0.1
-
-2006-03-20 Adam Jackson <ajax@freedesktop.org>
-
- * src/Makefile.am:
- Bug #6245: Fix build on Cygwin. (Yaakov Selkowitz)
-
-2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for final X11R7 release candidate.
-
-2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for X11R7 RC3 release.
-
-2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * lbxutil.pc.in:
- Update pkgconfig files to separate library build-time dependencies
- from application build-time dependencies.
-
-2005-11-09 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for X11R7 RC2 release.
-
-2005-11-01 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update pkgcheck dependencies to work with separate build roots.
-
-2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for RC1 release.
-
-2005-10-15 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * src/Makefile.am: Generate g3states.h as needed instead of using
- BUILT_SOURCES in order to pass check-tarball test.
-
-2005-07-13 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * src/Makefile.am:
- Use "-c" flag to mkg3states to add "const" tags to data tables.
- (Moves ~135k from unshared/rw data section to shared/ro text section)
-
-2005-07-08 Keith Packard <keithp@keithp.com>
-
- * .cvsignore:
- * src/.cvsignore:
- Add .cvsignore files
-
-2005-06-30 Alexander Gottwald <ago at freedesktop dot org>
-
- * src/Makefile.am:
- Fix call of mkg3states
- remove -no-undefined since liblbxutil has external references to Xfree
- and Xalloc
-
-2005-05-17 <ssp@aware-of-vacuity.boston.redhat.com>
-
- * configure.ac: Remove rest of half-removed if statement
-
- * ChangeLog: remove irrelevant entries
-
-2005-04-16 Josh Triplett <josh@freedesktop.org>
-
- * Makefile.am: Tell automake about the manpage.
diff --git a/Makefile.am b/Makefile.am
index 662026e..f18c22b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -29,3 +29,13 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = lbxutil.pc
EXTRA_DIST = lbxutil.pc.in autogen.sh
+
+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