1994-05-26 06:18:55 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
1999-08-27 23:15:48 +00:00
|
|
|
# $FreeBSD$
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
PROG= rcp
|
1994-09-29 13:06:54 +00:00
|
|
|
SRCS= rcp.c util.c
|
1999-09-19 22:11:15 +00:00
|
|
|
CFLAGS+=-DBINDIR=${BINDIR}
|
1994-09-29 13:06:54 +00:00
|
|
|
|
1998-08-06 21:41:13 +00:00
|
|
|
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
|
1999-09-19 22:11:15 +00:00
|
|
|
SRCS+= krcmd.c kcmd.c rcmd_util.c
|
2000-02-24 21:21:15 +00:00
|
|
|
DPADD= ${LIBUTIL} ${LIBKRB} ${LIBCRYPTO}
|
1997-09-28 08:32:59 +00:00
|
|
|
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
|
|
|
|
-I${.CURDIR}/../../kerberosIV/include \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/include \
|
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
|
1999-09-19 22:11:15 +00:00
|
|
|
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd \
|
|
|
|
-I${.CURDIR}
|
2000-02-24 21:21:15 +00:00
|
|
|
LDADD= -lutil -lkrb -lcrypto
|
1999-09-19 22:11:15 +00:00
|
|
|
DISTRIBUTION= krb4
|
1997-09-28 08:32:59 +00:00
|
|
|
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
1994-09-29 13:06:54 +00:00
|
|
|
.endif
|
|
|
|
|
1998-03-26 19:41:18 +00:00
|
|
|
BINOWN= root
|
|
|
|
BINMODE=4555
|
|
|
|
INSTALLFLAGS=-fschg
|
1994-09-29 13:06:54 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
.include <bsd.prog.mk>
|