NetBSD/bin/rcp/Makefile

23 lines
448 B
Makefile
Raw Normal View History

2001-12-12 03:07:45 +03:00
# $NetBSD: Makefile,v 1.19 2001/12/12 00:07:45 tv Exp $
# @(#)Makefile 8.1 (Berkeley) 7/19/93
1993-03-21 12:45:37 +03:00
# XXX Kerberos support broken right now.
2001-12-12 03:07:45 +03:00
NOKERBEROS= # defined
2001-12-12 03:07:45 +03:00
.include <bsd.own.mk>
2001-12-12 03:07:45 +03:00
PROG= rcp
SRCS= rcp.c util.c
2001-12-12 03:07:45 +03:00
.if (${MKKERBEROS} != "no")
RLOGIN= ${.CURDIR}/../../usr.bin/rlogin
.PATH: ${RLOGIN}
2001-12-12 03:07:45 +03:00
SRCS+= krcmd.c kcmd.c
CPPFLAGS+= -DKERBEROS -DCRYPT -I${RLOGIN}
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif
1999-07-13 02:04:09 +04:00
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>