Makefile revision 74928
1#	From: @(#)Makefile	8.2 (Berkeley) 12/15/93
2# $FreeBSD: head/lib/libtelnet/Makefile 74928 2001-03-28 12:08:22Z ru $
3
4LIB=	telnet
5
6INTERNALLIB=yes
7INTERNALSTATICLIB=yes
8NOPIC=	yes
9
10SRCS=	genget.c getent.c misc.c
11CFLAGS+= -DHAS_CGETENT
12
13#
14# Remove obsolete shared libraries, if any.  We don't bother moving them
15# to/usr/lib/compat, since they were only used by telnet, telnetd and
16# tn3270.
17#
18beforeinstall:
19	rm -f ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
20
21.include <bsd.lib.mk>
22
23