1994-05-27 12:33:43 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
PROG= rlogin
|
1994-08-05 20:39:34 +00:00
|
|
|
SRCS= rlogin.c
|
1994-09-29 13:06:54 +00:00
|
|
|
|
2001-09-13 06:48:18 +00:00
|
|
|
BINOWN= root
|
1998-03-26 19:43:06 +00:00
|
|
|
BINMODE=4555
|
|
|
|
INSTALLFLAGS=-fschg
|
1997-09-28 08:57:24 +00:00
|
|
|
|
2002-04-18 07:01:35 +00:00
|
|
|
.if defined(MAKE_KERBEROS4) && !defined(NO_OPENSSL) && !defined(NOCRYPT)
|
1999-09-19 22:11:15 +00:00
|
|
|
SRCS+= krcmd.c kcmd.c rcmd_util.c
|
2000-02-24 21:06:22 +00:00
|
|
|
DPADD= ${LIBUTIL} ${LIBKRB} ${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR}
|
1997-09-28 08:57:24 +00:00
|
|
|
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
|
|
|
|
-I${.CURDIR}/../../kerberosIV/include \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/include \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
2000-02-24 21:06:22 +00:00
|
|
|
LDADD= -lutil -lkrb -lcrypto -lcrypt -lcom_err
|
1999-09-19 22:26:02 +00:00
|
|
|
DISTRIBUTION= krb4
|
1997-09-28 08:57:24 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
1994-09-29 13:06:54 +00:00
|
|
|
.endif
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
.include <bsd.prog.mk>
|