summaryrefslogtreecommitdiff
path: root/bin/rcp/Makefile
blob: d2656069e7fb3e5271a97fa5faf2a9cc099c44ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#	$NetBSD: Makefile,v 1.22 2003/07/23 08:01:24 itojun Exp $
#	@(#)Makefile	8.1 (Berkeley) 7/19/93

.include <bsd.own.mk>

PROG=		rcp
SRCS=		rcp.c util.c

# XXX Kerberos support broken right now.
USE_KERBEROS4=	no

.if (${USE_KERBEROS4} != "no")
RLOGIN= 	${NETBSDSRCDIR}/usr.bin/rlogin
.PATH:		${RLOGIN}

SRCS+=		krcmd.c kcmd.c
CPPFLAGS+=	-DKERBEROS -DCRYPT -I${RLOGIN}
LDADD+= 	-lkrb -ldes
DPADD+= 	${LIBKRB} ${LIBDES}
.endif

.include <bsd.prog.mk>