xref: /freebsd/lib/libtelnet/Makefile (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1#	From: @(#)Makefile	8.2 (Berkeley) 12/15/93
2# $FreeBSD$
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