]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libtelnet/Makefile
cdn-patch: offer option to mount /etc/keys before attaching geli devices
[FreeBSD/FreeBSD.git] / lib / libtelnet / Makefile
1 #       From: @(#)Makefile      8.2 (Berkeley) 12/15/93
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 PACKAGE=lib${LIB}
7 TELNETDIR=      ${SRCTOP}/contrib/telnet
8 .PATH:          ${TELNETDIR}/libtelnet
9
10 LIB=            telnet
11
12 INTERNALLIB=
13
14 SRCS=           genget.c getent.c misc.c
15 CFLAGS+=        -I${TELNETDIR}
16
17 WARNS?=         2
18
19 .if ${MK_OPENSSL} != "no"
20 SRCS+=          encrypt.c auth.c enc_des.c sra.c pk.c
21 CFLAGS+=        -DENCRYPTION -DAUTHENTICATION -DSRA
22 .endif
23
24 .if ${MK_KERBEROS_SUPPORT} != "no"
25 SRCS+=          kerberos5.c
26 CFLAGS+=        -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
27 .endif
28
29 .include <bsd.lib.mk>