mirror of https://gerrit.osmocom.org/libtelnet
prep for 0.9 release
parent
8c11179961
commit
ae39ceebd9
15
Makefile
15
Makefile
|
@ -1,3 +1,4 @@
|
|||
VERSION = 0.9
|
||||
CFLAGS = -Wall -g -O0 -DHAVE_ZLIB -DHAVE_ALLOCA -DENABLE_COLOR
|
||||
LFLAGS = -L. -ltelnet -lz
|
||||
|
||||
|
@ -23,13 +24,13 @@ clean:
|
|||
telnet-client telnet-client.o telnet-chatd telnet-chatd.o
|
||||
|
||||
dist:
|
||||
rm -fr libtelnet-dist
|
||||
rm -f libtelnet-dist.tar.gz
|
||||
mkdir libtelnet-dist
|
||||
rm -fr libtelnet-$(VERSION)
|
||||
rm -f libtelnet-$(VERSION).tar.gz
|
||||
mkdir libtelnet-$(VERSION)
|
||||
cp Makefile README libtelnet.h libtelnet.c telnet-proxy.c \
|
||||
telnet-client.c telnet-chatd.c libtelnet-dist
|
||||
tar -cf libtelnet-dist.tar libtelnet-dist
|
||||
gzip libtelnet-dist.tar
|
||||
rm -fr libtelnet-dist
|
||||
telnet-client.c telnet-chatd.c libtelnet-$(VERSION)
|
||||
tar -cf libtelnet-$(VERSION).tar libtelnet-$(VERSION)
|
||||
gzip libtelnet-$(VERSION).tar
|
||||
rm -fr libtelnet-$(VERSION)
|
||||
|
||||
.PHONY: all clean dist
|
||||
|
|
2
README
2
README
|
@ -1,5 +1,5 @@
|
|||
=====================================================================
|
||||
libtelnet - TELNET protocol handling library
|
||||
libtelnet 0.9 - TELNET protocol handling library
|
||||
=====================================================================
|
||||
|
||||
http://github.com/elanthis/libtelnet
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
/*
|
||||
* libtelnet 0.9
|
||||
*
|
||||
* Sean Middleditch
|
||||
* sean@sourcemud.org
|
||||
*
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
/*
|
||||
* libtelnet 0.9
|
||||
*
|
||||
* Sean Middleditch
|
||||
* sean@sourcemud.org
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue