blob: e51df86b61789c5930659a1495433d90cfb9caad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $Id: Makefile,v 1.4.6.2 1998/02/18 11:52:17 markm Exp $
PROG= rshd
SRCS= rshd.c
MAN8= rshd.8
.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4)
CFLAGS+=-DKERBEROS -DCRYPT
DPADD= ${LIBKRB} ${LIBDES}
LDADD= -lkrb -ldes
DISTRIBUTION= krb
.endif
# For login_cap handling
CFLAGS+=-DLOGIN_CAP -Wall
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.include <bsd.prog.mk>
|