1994-02-25 05:52:45 +03:00
|
|
|
# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
|
2000-06-23 10:01:10 +04:00
|
|
|
# $NetBSD: Makefile,v 1.12 2000/06/23 06:01:13 thorpej Exp $
|
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
LIB= telnet
|
2000-06-22 10:47:42 +04:00
|
|
|
SRCS= auth.c encrypt.c genget.c getent.c misc.c
|
|
|
|
|
2000-06-23 10:01:10 +04:00
|
|
|
CPPFLAGS+= -DHAS_CGETENT
|
|
|
|
CPPFLAGS+= -I${.CURDIR}
|
|
|
|
|
|
|
|
.if (${MKKERBEROS} != "no")
|
2000-06-22 10:47:42 +04:00
|
|
|
SRCS+= enc_des.c kerberos.c
|
|
|
|
SRCS+= kerberos5.c
|
1994-02-25 05:52:45 +03:00
|
|
|
|
2000-06-22 10:47:42 +04:00
|
|
|
CPPFLAGS+= -DENCRYPTION -DAUTHENTICATION
|
|
|
|
CPPFLAGS+= -DKRB4 -DDES_ENCRYPTION
|
|
|
|
CPPFLAGS+= -DKRB5
|
2000-06-20 10:00:24 +04:00
|
|
|
CPPFLAGS+= -I${DESTDIR}/usr/include/krb5
|
2000-06-22 10:47:42 +04:00
|
|
|
CPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV
|
2000-06-23 10:01:10 +04:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|