[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / rlogin

File: [local] / src / usr.bin / rlogin / Attic / Makefile (download)

Revision 1.4, Sat Apr 19 21:26:28 1997 UTC (27 years, 1 month ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.3: +2 -2 lines

Changed ``defined(KERBEROS)'' to ``(${KERBEROS} == "yes")''
Same change doen for SKEY, YP, and KERBEROS5.  This allows
people to override those setting in /etc/mk.conf.

#	$OpenBSD: Makefile,v 1.4 1997/04/19 21:26:28 millert Exp $
#	$NetBSD: Makefile,v 1.5 1995/03/21 07:58:28 cgd Exp $

PROG=	rlogin
SRCS=	rlogin.c
BINOWN=	root
BINMODE=4555
#INSTALLFLAGS=-fschg

.include <bsd.own.mk>

.if (${KERBEROS} == "yes")
CFLAGS+=-DKERBEROS
SRCS+=	krcmd.c kcmd.c des_rw.c
LDADD+=	-lkrb -ldes
DPADD+=	${LIBKRB} ${LIBDES}
.endif

.include <bsd.prog.mk>