blob: 6a717e2ae2bf39bb389d36d41efe379909ebba87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.5 2000/09/03 18:41:18 espie Exp $
PROG= rsh
SRCS= rsh.c
BINOWN= root
BINMODE=4555
.include <bsd.own.mk> # For KERBEROS
.if (${KERBEROS:L} == "yes")
SRCS+= des_rw.c
.PATH: ${.CURDIR}/../rlogin
CFLAGS+=-DKERBEROS
SRCS+= krcmd.c kcmd.c
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif
.include <bsd.prog.mk>
|