blob: f86e9a15f862fe473e6a648cc27a791977b8ebd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.5 2001/01/28 19:34:31 niklas Exp $
PROG= rlogind
SRCS= rlogind.c
MAN= rlogind.8
DPADD= ${LIBUTIL}
LDADD= -lutil
.include <bsd.own.mk> # For KERBEROS
.if (${KERBEROS:L} == "yes")
SRCS= rlogind.c des_rw.c
.PATH: ${.CURDIR}/../../usr.bin/rlogin
CFLAGS+=-DKERBEROS
DPADD+= ${LIBKRB} ${LIBKRB}
LDADD+= -lkrb -ldes
.endif
.include <bsd.prog.mk>
|