1994-09-29 13:06:54 +00:00
|
|
|
# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1998-09-05 00:32:27 +00:00
|
|
|
# $Id: Makefile,v 1.9 1998/08/06 21:36:25 markm Exp $
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
PROG= rshd
|
1994-09-29 13:06:54 +00:00
|
|
|
SRCS= rshd.c
|
1994-08-05 21:24:58 +00:00
|
|
|
MAN8= rshd.8
|
1994-09-29 13:06:54 +00:00
|
|
|
|
1998-08-06 21:41:13 +00:00
|
|
|
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
|
1994-09-29 13:06:54 +00:00
|
|
|
CFLAGS+=-DKERBEROS -DCRYPT
|
1998-09-05 00:32:27 +00:00
|
|
|
DPADD= ${LIBKRB} ${LIBDES} ${LIBCRYPT}
|
|
|
|
LDADD= -lkrb -ldes -lcrypt
|
1994-11-20 23:23:28 +00:00
|
|
|
DISTRIBUTION= krb
|
1994-09-29 13:06:54 +00:00
|
|
|
.endif
|
1994-05-27 12:39:25 +00:00
|
|
|
|
1997-04-23 03:06:47 +00:00
|
|
|
# For login_cap handling
|
1997-09-28 08:38:04 +00:00
|
|
|
CFLAGS+=-DLOGIN_CAP -Wall
|
1997-04-23 03:06:47 +00:00
|
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
LDADD+= -lutil
|
|
|
|
|
1994-05-27 12:39:25 +00:00
|
|
|
.include <bsd.prog.mk>
|