diff --git a/Changelog b/Changelog index 962abc7..3bbe743 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,7 @@ -1.4.3 (???) +1.4.3 (2004/02/28) * Make ttyplay use the 'strip' value it remembered from last view. * Don't fail if client-supplied window size seems incorrect. + * Added a simple man page. 1.4.2 (2004/02/22) * Add a compile-time option to define a static location to look diff --git a/Makefile b/Makefile index 64c223b..ab69b45 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,16 @@ -VERSION = 1.4.2 +VERSION = 1.4.3 # Hardcoded path to config file DEFCONFIG = /etc/dgamelaunch.conf NAME = dgamelaunch exclusions = CVS .svn .cvsignore tags PREFIX = /usr SBINDIR = $(PREFIX)/sbin +ifeq (PREFIX,/usr) + MANDIR = $(PREFIX)/share/man +else + MANDIR = $(PREFIX)/man +endif +MAN8 = dgamelaunch.8 ifndef optimize optimize = -O0 @@ -61,6 +67,7 @@ clean: install: $(INSTALL) -m 755 $(NAME) $(SBINDIR) + $(INSTALL) -m 644 $(MAN8) $(MANDIR)/man8 indent: indent -nut -ts2 *.c *.h