563df95270
Kerberos5 has _a_ telnet (which is not currently K5 enabled). Incorporate BDE's static linking fixes.
31 lines
641 B
Makefile
31 lines
641 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= telnet
|
|
|
|
INTERNALLIB= yes
|
|
INTERNALSTATICLIB=yes
|
|
NOPIC= yes
|
|
|
|
SRCS= genget.c getent.c misc.c encrypt.c auth.c \
|
|
enc_des.c sra.c pk.c
|
|
SRCS+= kerberos.c
|
|
|
|
CFLAGS= -DHAS_CGETENT -DENCRYPTION -DDES_ENCRYPTION -DAUTHENTICATION \
|
|
-DSRA -I${TELNETDIR}
|
|
CFLAGS+= -DKRB4 -I${KRB4DIR}/lib/krb
|
|
|
|
INCS= ${TELNETDIR}/arpa/telnet.h
|
|
INCDIR= /usr/include/arpa
|
|
|
|
#
|
|
# Remove obsolete shared libraries, if any. We don't bother moving them
|
|
# to /usr/lib/compat, since they were only used by telnet, telnetd and
|
|
# tn3270.
|
|
#
|
|
beforeinstall:
|
|
rm -f ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.PATH: ${TELNETDIR}/libtelnet
|