blob: 34ceca9eb5000011d731ff738e686d5d0d049acc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $Id: Makefile,v 1.5 2000/09/03 18:41:15 espie 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/rlogin
CFLAGS+=-DKERBEROS
DPADD+= ${LIBKRB} ${LIBDES}
LDADD+= -lkrb -ldes
.endif
.include <bsd.prog.mk>
|