mirror of
https://github.com/tmate-io/tmate.git
synced 2025-01-11 08:28:29 +01:00
+index.html.in
This commit is contained in:
parent
da21ac965d
commit
b04bffc9c9
6
CHANGES
6
CHANGES
@ -1,3 +1,7 @@
|
|||||||
|
20 November 2007
|
||||||
|
|
||||||
|
* tmux 0.1 released.
|
||||||
|
|
||||||
17 November 2007
|
17 November 2007
|
||||||
|
|
||||||
* (nicm) Add -k option to link-window to kill target window if it exists.
|
* (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
|
(including mutt, emacs). No status bar yet and no key remapping or other
|
||||||
customisation.
|
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 $
|
||||||
|
@ -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
|
.PHONY: clean
|
||||||
|
|
||||||
PROG= tmux
|
PROG= tmux
|
||||||
VERSION= 1.5
|
VERSION= 0.2
|
||||||
|
|
||||||
DATE= $(shell date +%Y%m%d-%H%M)
|
DATE= $(shell date +%Y%m%d-%H%M)
|
||||||
|
|
||||||
|
15
Makefile
15
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
|
.SUFFIXES: .c .o .y .h
|
||||||
.PHONY: clean
|
.PHONY: clean update-index.html upload-index.html
|
||||||
|
|
||||||
PROG= tmux
|
PROG= tmux
|
||||||
VERSION= 0.1
|
VERSION= 0.2
|
||||||
|
|
||||||
OS!= uname
|
OS!= uname
|
||||||
REL!= uname -r
|
REL!= uname -r
|
||||||
@ -67,7 +67,7 @@ DISTDIR= ${PROG}-${VERSION}
|
|||||||
DISTFILES= *.[chyl] Makefile GNUmakefile *.[1-9] NOTES TODO \
|
DISTFILES= *.[chyl] Makefile GNUmakefile *.[1-9] NOTES TODO \
|
||||||
`find examples compat -type f -and ! -path '*CVS*'`
|
`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:
|
.c.o:
|
||||||
${CC} ${CFLAGS} ${INCDIRS} -c ${.IMPSRC} -o ${.TARGET}
|
${CC} ${CFLAGS} ${INCDIRS} -c ${.IMPSRC} -o ${.TARGET}
|
||||||
@ -99,6 +99,13 @@ lint:
|
|||||||
clean:
|
clean:
|
||||||
rm -f ${CLEANFILES}
|
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
|
install: all
|
||||||
${INSTALLBIN} ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
|
${INSTALLBIN} ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
|
||||||
${INSTALLMAN} ${PROG}.1 ${DESTDIR}${PREFIX}/man/man1/
|
${INSTALLMAN} ${PROG}.1 ${DESTDIR}${PREFIX}/man/man1/
|
||||||
|
11
index.html.in
Normal file
11
index.html.in
Normal file
@ -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>
|
Loading…
Reference in New Issue
Block a user