summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2011-01-07 15:09:04 +0000
committerTiago Cunha <tcunha@gmx.com>2011-01-07 15:09:04 +0000
commit1cb579d0fdf5eab42866c3d2d01ab6f2f87b3cbb (patch)
tree30194f36e6342f040f693737d040d1d9baa0da40 /tools
parent3d4ebeb1b0cee67e9aad1d3454a2f835f8d9c7f5 (diff)
Bring the last remaining bits of dist.mk.
Diffstat (limited to 'tools')
-rw-r--r--tools/dist.mk33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/dist.mk b/tools/dist.mk
deleted file mode 100644
index 59b68b0d..00000000
--- a/tools/dist.mk
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: dist.mk,v 1.11 2010-12-27 21:32:16 tcunha Exp $
-
-VERSION= 1.4
-
-DISTDIR= tmux-${VERSION}
-DISTFILES= *.[ch] Makefile GNUmakefile configure tmux.1 \
- NOTES TODO CHANGES FAQ \
- `find examples compat -type f -and ! -path '*CVS*'`
-
-dist:
- (./configure && make clean-all)
- grep '^#FDEBUG=' Makefile
- grep '^#FDEBUG=' GNUmakefile
- [ "`(grep '^VERSION' Makefile; grep '^VERSION' GNUmakefile)| \
- uniq -u`" = "" ]
- chmod +x configure
- tar -zc \
- -s '/.*/${DISTDIR}\/\0/' \
- -f ${DISTDIR}.tar.gz ${DISTFILES}
-
-upload-index.html: update-index.html
- scp www/index.html www/main.css www/images/*.png \
- ${USER},tmux@web.sf.net:/home/groups/t/tm/tmux/htdocs
- rm -f www/index.html www/images/small-*
-
-update-index.html:
- (cd www/images && \
- rm -f small-* && \
- for i in *.png; do \
- convert "$$i" -resize 200x150 "small-$$i"; \
- done \
- )
- sed "s/%%VERSION%%/${VERSION}/g" www/index.html.in >www/index.html