Merge branch '0.9'

This commit is contained in:
Sean Middleditch 2009-03-22 23:04:32 -04:00
commit a25ee61f2b
4 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,4 @@
VERSION = 0.9
CFLAGS = -Wall -g -O0 -DHAVE_ZLIB -DHAVE_ALLOCA -DENABLE_COLOR CFLAGS = -Wall -g -O0 -DHAVE_ZLIB -DHAVE_ALLOCA -DENABLE_COLOR
LFLAGS = -L. -ltelnet -lz LFLAGS = -L. -ltelnet -lz
@ -23,13 +24,13 @@ clean:
telnet-client telnet-client.o telnet-chatd telnet-chatd.o telnet-client telnet-client.o telnet-chatd telnet-chatd.o
dist: dist:
rm -fr libtelnet-dist rm -fr libtelnet-$(VERSION)
rm -f libtelnet-dist.tar.gz rm -f libtelnet-$(VERSION).tar.gz
mkdir libtelnet-dist mkdir libtelnet-$(VERSION)
cp Makefile README libtelnet.h libtelnet.c telnet-proxy.c \ cp Makefile README libtelnet.h libtelnet.c telnet-proxy.c \
telnet-client.c telnet-chatd.c libtelnet-dist telnet-client.c telnet-chatd.c libtelnet-$(VERSION)
tar -cf libtelnet-dist.tar libtelnet-dist tar -cf libtelnet-$(VERSION).tar libtelnet-$(VERSION)
gzip libtelnet-dist.tar gzip libtelnet-$(VERSION).tar
rm -fr libtelnet-dist rm -fr libtelnet-$(VERSION)
.PHONY: all clean dist .PHONY: all clean dist

2
README
View File

@ -1,5 +1,5 @@
===================================================================== =====================================================================
libtelnet - TELNET protocol handling library libtelnet 0.9 - TELNET protocol handling library
===================================================================== =====================================================================
http://github.com/elanthis/libtelnet http://github.com/elanthis/libtelnet

View File

@ -1,4 +1,6 @@
/* /*
* libtelnet 0.9
*
* Sean Middleditch * Sean Middleditch
* sean@sourcemud.org * sean@sourcemud.org
* *

View File

@ -1,4 +1,6 @@
/* /*
* libtelnet 0.9
*
* Sean Middleditch * Sean Middleditch
* sean@sourcemud.org * sean@sourcemud.org
* *