summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-20 17:01:38 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-20 17:01:38 +0000
commitb04bffc9c99045776abea011cc95f5819a939872 (patch)
tree3261825d06b381009b1c3216d8f11ddfc27ff1c1
parentda21ac965d4d6d3a136cf574d396f19bd2941efd (diff)
+index.html.in
-rw-r--r--CHANGES6
-rw-r--r--GNUmakefile4
-rw-r--r--Makefile15
-rw-r--r--index.html.in11
4 files changed, 29 insertions, 7 deletions
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 @@
+<!-- $Id: index.html.in,v 1.1 2007-11-20 17:01:38 nicm Exp $ -->
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<title>tmux</title>
+</head>
+<body>
+<p>The project page is <a href="http://sf.net/projects/tmux">here.</a></p>
+<p>Download tmux %%VERSION%% with <a href="http://downloads.sourceforge.net/tmux/tmux-%%VERSION%%.tar.gz">this link.</a></p>
+</body>
+</html>