freebsd-dev/libexec/rshd/Makefile

21 lines
432 B
Makefile
Raw Normal View History

# 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
SRCS= rshd.c
MAN8= rshd.8
1998-08-06 21:41:13 +00:00
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
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
.endif
1994-05-27 12:39:25 +00:00
1997-04-23 03:06:47 +00:00
# For login_cap handling
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>