blob: b91cfcd4ff610812809d04a4123263f4d4a75238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.9 2010/10/13 08:14:22 jsg 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}
#LDADD+= -lkrb
#.endif
.include <bsd.prog.mk>
|