Check the rlogin source for headers ifdef KERBEROS

This commit is contained in:
scottr 1999-02-17 06:47:51 +00:00
parent cf184145f7
commit 78bcd3e136
1 changed files with 4 additions and 3 deletions

View File

@ -1,13 +1,14 @@
# $NetBSD: Makefile,v 1.12 1997/10/10 19:56:54 christos Exp $
# $NetBSD: Makefile,v 1.13 1999/02/17 06:47:51 scottr Exp $
# @(#)Makefile 8.1 (Berkeley) 7/19/93
PROG= rcp
SRCS= rcp.c util.c
.if defined(KERBEROS)
.PATH: ${.CURDIR}/../../usr.bin/rlogin
RLOGIN= ${.CURDIR}/../../usr.bin/rlogin
.PATH: ${RLOGIN}
SRCS+= krcmd.c kcmd.c
CPPFLAGS+=-DKERBEROS -DCRYPT
CPPFLAGS+=-DKERBEROS -DCRYPT -I ${RLOGIN}
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif