summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 16:37:29 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 16:37:29 -0500
commit08c9daab3a0b3ef37723c007858fa949cb91bbd8 (patch)
treefa5e38e6344bde01682a0d9b6096573ac32a05c5
parent1f93390ce63016bbeef8e99fac3049514a72e3d7 (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog88
-rw-r--r--Makefile.am10
2 files changed, 10 insertions, 88 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index cd54f3f..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,88 +0,0 @@
-2006-02-28 Matthew Allum <mallum@openedhand.com>
-
- * configure.ac:
- Bump up version to 0.4
-
-2006-02-27 Matthew Allum <mallum@openedhand.com>
-
- * doc/xrestop.1:
- Add docs for --max-samples options
- * xrestop.c: (window_get_utf8_name), (usage), (recurse_win_tree),
- (main):
- Fix gcc 4 compiler warnings. Minor source cleanups.
- Fix missing PIDs due to window recursing bug ( John Tapsell )
- Handle 'q' key to quit ( Moray Allan )
- '--max-samples' option ( Jeremy C Reed )
-
-2004-08-14 mallum,,, <mallum@handhelds.org>
-
- * configure.ac:
- Bump up version to 0.3
-
-2004-02-07 Matthew Allum,,, <mallum@handhelds.org>
-
- * doc/xrestop.1:
- Applied man page patch from Moray Allan
-
-2004-01-02 Matthew Allum <mallum@handhelds.com>
-
- Applied patch from Alan Coopersmith;
-
- * configure.ac:
- check for xres header and lib. Check Solaris X bits. Check for
- curses if no ncurses
-
- * xrestop.c: (window_get_pid), (window_get_utf8_name):
- Solaris cc tweaks. Compile with curses if no ncurses.
-
-2003-12-24 Matthew Allum <mallum@handhelds.com>
-
- * doc/Makefile.am:
- Small fix to extra_dist
-
-2003-12-24 Matthew Allum <mallum@handhelds.com>
-
- * Makefile.am:
- * configure.ac:
- * doc/Makefile.am:
- * xrestop.spec.in:
- Added spec file from Ralph Loader.
- Put the man page in EXTRA_DIST
-
-2003-12-21 Matthew Allum <mallum@handhelds.com>
-
- * xrestop.c: (xrestop_client_get_info), (xrestop_display),
- (xrestop_sort_compare), (main):
- Fix broken sort.
- Identify self.
- Tweak readability.
-
-2003-12-20 Matthew Allum <mallum@handhelds.org>
-
- * Makefile.am:
- * configure.ac:
- * doc/Makefile.am:
- * doc/xrestop.1:
-
- Added a simple man page.
-
-2003-12-20 Matthew Allum <mallum@handhelds.org>
-
- * xrestop.c: (xrestop_display), (xrestop_sort_compare):
- Add totals to display. Change sort order to total bytes rather
- than just pixmap bytes.
-
-2003-12-18 Matthew Allum <mallum@handhelds.org>
-
- * xrestop.c: (xrestop_display), (main):
- Added basic --batch mode functionality
-
-2003-12-18 Matthew Allum <mallum@handhelds.org>
-
- * xrestop.c: (window_get_utf8_name), (check_win_for_info),
- (xrestop_client_get_stats):
- Added support for grabbing utf8 window titles
-
-2003-12-18 Matthew Allum <mallum@handhelds.org>
-
- Initial import.
diff --git a/Makefile.am b/Makefile.am
index 93a6fd2..5a349d6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -9,3 +9,13 @@ xrestop_SOURCES = xrestop.c
xrestop_LDADD = @XLIBS_LIBS@
extra_DIST = xrestop.spec xrestop.spec.in
+
+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