blob: 0df4c7d7c3b5f16b467939ebe8b14bd2e4f578eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.8 2003/05/14 07:35:31 mho 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>
|