1994-05-27 14:33:43 +02:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
1999-08-28 03:08:13 +02:00
|
|
|
# $FreeBSD$
|
1994-05-27 14:33:43 +02:00
|
|
|
|
|
|
|
PROG= rsh
|
1994-08-05 22:40:56 +02:00
|
|
|
SRCS= rsh.c
|
1997-09-28 10:57:24 +02:00
|
|
|
CFLAGS+=-Wall
|
1994-09-29 14:06:54 +01:00
|
|
|
|
1998-08-06 23:41:13 +02:00
|
|
|
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
|
1997-09-28 10:57:24 +02:00
|
|
|
SRCS+= krcmd.c kcmd.c rcmd_util.c encrypt.c
|
|
|
|
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
|
|
|
|
-I${.CURDIR}/../rlogin -I${.CURDIR} -I- \
|
|
|
|
-I${.CURDIR}/../../kerberosIV/include \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/include \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
1999-09-06 22:22:47 +02:00
|
|
|
DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES} ${LIBCRYPT} ${LIBCOM_ERR}
|
|
|
|
LDADD= -lutil -lkrb -ldes -lcrypt -lcom_err
|
1994-11-21 00:23:28 +01:00
|
|
|
DISTRIBUTION= krb
|
1997-09-28 10:57:24 +02:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
1994-09-29 14:06:54 +01:00
|
|
|
.endif
|
|
|
|
|
1994-05-27 14:33:43 +02:00
|
|
|
BINMODE=4555
|
|
|
|
INSTALLFLAGS=-fschg
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|