1# $NetBSD: Makefile,v 1.23 2004/09/05 08:38:23 manu Exp $ 2# @(#)Makefile 8.1 (Berkeley) 7/19/93 3 4.include <bsd.own.mk> 5 6PROG= rcp 7SRCS= rcp.c util.c 8 9# XXX Kerberos support broken right now. 10# XXX Unsupported Kerberos options were removed from man page 11# XXX Don't forget to update the man page if you fix Kerberos 12USE_KERBEROS4= no 13 14.if (${USE_KERBEROS4} != "no") 15RLOGIN= ${NETBSDSRCDIR}/usr.bin/rlogin 16.PATH: ${RLOGIN} 17 18SRCS+= krcmd.c kcmd.c 19CPPFLAGS+= -DKERBEROS -DCRYPT -I${RLOGIN} 20LDADD+= -lkrb -ldes 21DPADD+= ${LIBKRB} ${LIBDES} 22.endif 23 24.include <bsd.prog.mk> 25