1994-08-12 18:03:01 -04:00
|
|
|
# From: @(#)Makefile 8.2 (Berkeley) 12/15/93
|
1996-03-11 01:22:50 -05:00
|
|
|
# $Id$
|
1994-08-12 18:03:01 -04:00
|
|
|
|
|
|
|
|
LIB= telnet
|
1996-03-09 08:36:34 -05:00
|
|
|
SRCS= encrypt.c genget.c getent.c misc.c
|
1994-08-12 18:03:01 -04:00
|
|
|
|
1996-03-11 11:17:58 -05:00
|
|
|
CFLAGS+= -DHAS_CGETENT -DENCRYPTION
|
1995-07-20 07:40:06 -04:00
|
|
|
|
1996-03-11 01:22:50 -05:00
|
|
|
.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_EBONES)
|
1996-03-11 11:17:58 -05:00
|
|
|
CFLAGS+= -DDES_ENCRYPTION -DAUTHENTICATION -DKRB4 -I/usr/include/kerberosIV
|
1996-03-09 08:36:34 -05:00
|
|
|
SRCS+= auth.c kerberos.c enc_des.c
|
1996-03-10 16:15:00 -05:00
|
|
|
LDADD+= -ldes -lkrb
|
1996-03-09 08:36:34 -05:00
|
|
|
DPADD+= ${LIBDES} ${LIBKRB}
|
1995-07-20 07:40:06 -04:00
|
|
|
.endif
|
|
|
|
|
|
1996-03-09 08:36:34 -05:00
|
|
|
# Not Yet
|
|
|
|
|
#SRCS += spx.c rsaencpwd.c read_password.c
|
1995-07-24 16:29:12 -04:00
|
|
|
|
1996-03-11 11:17:58 -05:00
|
|
|
# KRB4_ENCPWD not yet defined
|
1995-08-05 15:10:25 -04:00
|
|
|
# Used only in krb4encpwd.c and rsaencpwd.c, not yet active
|
|
|
|
|
#LDADD+= -ldescrypt
|
1995-07-24 18:55:59 -04:00
|
|
|
|
1994-08-12 18:03:01 -04:00
|
|
|
.include <bsd.lib.mk>
|