[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.2, Sat Dec 16 22:20:30 1995 UTC (28 years, 6 months ago) by tholo
Branch: MAIN
Changes since 1.1: +9 -4 lines

Make it possible to build without SKEY support
Add support for building with kerberosIV

#	$NetBSD: Makefile,v 1.5 1995/03/21 07:58:28 cgd Exp $
#	@(#)Makefile	8.1 (Berkeley) 7/19/93

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

.include <bsd.own.mk>

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

.include <bsd.prog.mk>