summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2007-04-10 19:14:13 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2007-04-10 19:14:13 -0700
commit31f21b77706a614cf1f47ee25f42848cfa5198cb (patch)
tree2c6651d7221b6adac3769aa1629600344ba2acf9
parent45a939aa4c555133dc11780be1ea66887e8667ae (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog34
-rw-r--r--Makefile.am10
2 files changed, 9 insertions, 35 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 836a23b..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,34 +0,0 @@
-2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version for X11R7 release.
-
-2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for final X11R7 release candidate.
-
-2005-12-09 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Get the cursor install dir from xcursor.pc.
-
-2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for RC1 release.
-
-2005-10-07 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * genmakefile.sh:
- Add .xcf files to dist
-
- * redglass/Makefile.cfg:
- * whiteglass/Makefile.cfg:
- * redglass/Makefile.cursors:
- * whiteglass/Makefile.cursors:
- Add missing files to DIST and regenerate */Makefile.cursors
-
-2005-07-11 Daniel Stone <daniel@freedesktop.org>
-
- * Initial autotooling.
diff --git a/Makefile.am b/Makefile.am
index a4d0cdd..bc4ce7c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,13 @@
SUBDIRS = handhelds redglass whiteglass
-EXTRA_DIST = genmakefile.sh
+EXTRA_DIST = genmakefile.sh ChangeLog
AUTOMAKE_OPTIONS = foreign
+
+dist-hook: 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)
+
+
+