blob: f497dd94141d0275f937cb09877b4043dca7905b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.7 2002/05/06 22:23:53 deraadt Exp $
PROG= rshd
SRCS= rshd.c
MAN= rshd.8
CFLAGS+= -Wall -Wno-unused
.include <bsd.own.mk>
.if (${KERBEROS:L} == "yes")
SRCS+= des_rw.c
.PATH: ${.CURDIR}/../../usr.bin/rsh
CFLAGS+=-DKERBEROS
DPADD+= ${LIBKRB} ${LIBDES}
LDADD+= -lkrb -ldes
.endif
.include <bsd.prog.mk>
|