Home | History | Annotate | Line # | Download | only in rcp
Makefile revision 1.18
      1  1.18  thorpej #	$NetBSD: Makefile,v 1.18 2000/06/23 06:01:12 thorpej Exp $
      2   1.5      cgd #	@(#)Makefile	8.1 (Berkeley) 7/19/93
      3   1.1      cgd 
      4  1.18  thorpej .include <bsd.own.mk>
      5  1.18  thorpej 
      6   1.1      cgd PROG=	rcp
      7   1.5      cgd SRCS=	rcp.c util.c
      8  1.15  thorpej 
      9  1.17  thorpej # XXX Kerberos support broken right now.
     10  1.18  thorpej MKKERBEROS=no
     11  1.18  thorpej 
     12  1.18  thorpej .if (${MKKERBEROS} != "no")
     13  1.17  thorpej 
     14  1.18  thorpej RLOGIN= ${.CURDIR}/../../usr.bin/rlogin
     15  1.18  thorpej SRCS+=	krcmd.c kcmd.c
     16  1.18  thorpej CPPFLAGS+= -DKERBEROS -DCRYPT -I${RLOGIN}
     17  1.17  thorpej 
     18  1.18  thorpej LDADD+= -lkrb -ldes
     19  1.18  thorpej DPADD+= ${LIBKRB} ${LIBDES}
     20  1.17  thorpej 
     21  1.18  thorpej .PATH:	${RLOGIN}
     22  1.18  thorpej .endif
     23   1.1      cgd 
     24   1.1      cgd .include <bsd.prog.mk>
     25