blob: 8664d7c31c16cb917d67f18a6e8019ca750ea96d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.4 1997/04/19 21:26:29 millert Exp $
PROG= rsh
SRCS= rsh.c
BINOWN= root
BINMODE=4555
.include <bsd.own.mk> # For KERBEROS
.if (${KERBEROS} == "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>
|