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

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

Revision 1.5, Sun Sep 3 18:41:18 2000 UTC (23 years, 8 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.4: +2 -2 lines

Boring...  Add :L modifier to all tweakable variables tests.

Closes PR 1246

#	$OpenBSD: Makefile,v 1.5 2000/09/03 18:41:18 espie Exp $

PROG=	rsh
SRCS=	rsh.c
BINOWN=	root
BINMODE=4555

.include <bsd.own.mk>	# For KERBEROS

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

.include <bsd.prog.mk>