freebsd-dev/libexec/rshd/Makefile
Mark Murray 0934db4674 Changes for the new KTH Kerberos4.
Also make -Wall a bit quieter
1997-09-28 08:38:04 +00:00

21 lines
412 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $Id: Makefile,v 1.7 1997/04/23 03:06:47 davidn 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>