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