From b04bffc9c99045776abea011cc95f5819a939872 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 20 Nov 2007 17:01:38 +0000 Subject: +index.html.in --- CHANGES | 6 +++++- GNUmakefile | 4 ++-- Makefile | 15 +++++++++++---- index.html.in | 11 +++++++++++ 4 files changed, 29 insertions(+), 7 deletions(-) create mode 100644 index.html.in diff --git a/CHANGES b/CHANGES index 597a5a28..f4c01dee 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +20 November 2007 + +* tmux 0.1 released. + 17 November 2007 * (nicm) Add -k option to link-window to kill target window if it exists. @@ -227,4 +231,4 @@ (including mutt, emacs). No status bar yet and no key remapping or other customisation. -$Id: CHANGES,v 1.73 2007-11-17 08:21:54 nicm Exp $ +$Id: CHANGES,v 1.74 2007-11-20 17:01:38 nicm Exp $ diff --git a/GNUmakefile b/GNUmakefile index 2378fd34..ab492580 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,9 +1,9 @@ -# $Id: GNUmakefile,v 1.5 2007-11-16 21:31:03 nicm Exp $ +# $Id: GNUmakefile,v 1.6 2007-11-20 17:01:38 nicm Exp $ .PHONY: clean PROG= tmux -VERSION= 1.5 +VERSION= 0.2 DATE= $(shell date +%Y%m%d-%H%M) diff --git a/Makefile b/Makefile index 51d93666..41dc6ae3 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -# $Id: Makefile,v 1.42 2007-11-20 12:00:16 nicm Exp $ +# $Id: Makefile,v 1.43 2007-11-20 17:01:38 nicm Exp $ .SUFFIXES: .c .o .y .h -.PHONY: clean +.PHONY: clean update-index.html upload-index.html PROG= tmux -VERSION= 0.1 +VERSION= 0.2 OS!= uname REL!= uname -r @@ -67,7 +67,7 @@ DISTDIR= ${PROG}-${VERSION} DISTFILES= *.[chyl] Makefile GNUmakefile *.[1-9] NOTES TODO \ `find examples compat -type f -and ! -path '*CVS*'` -CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log +CLEANFILES= ${PROG} *.o .depend *~ ${PROG}.core *.log index.html .c.o: ${CC} ${CFLAGS} ${INCDIRS} -c ${.IMPSRC} -o ${.TARGET} @@ -99,6 +99,13 @@ lint: clean: rm -f ${CLEANFILES} +upload-index.html: + scp index.html nicm@shell.sf.net:index.html + ssh nicm@shell.sf.net sh update-index-tmux.sh + +update-index.html: + sed "s/%%VERSION%%/${VERSION}/g" index.html.in >index.html + install: all ${INSTALLBIN} ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG} ${INSTALLMAN} ${PROG}.1 ${DESTDIR}${PREFIX}/man/man1/ diff --git a/index.html.in b/index.html.in new file mode 100644 index 00000000..11924a2c --- /dev/null +++ b/index.html.in @@ -0,0 +1,11 @@ + + + + +tmux + + +

The project page is here.

+

Download tmux %%VERSION%% with this link.

+ + -- cgit