]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/rcp/Makefile
This commit was generated by cvs2svn to compensate for changes in r71345,
[FreeBSD/FreeBSD.git] / bin / rcp / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 7/19/93
2 # $FreeBSD$
3
4 PROG=   rcp
5 SRCS=   rcp.c util.c
6 CFLAGS+=-DBINDIR=${BINDIR}
7
8 .if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
9 SRCS+=  krcmd.c kcmd.c rcmd_util.c
10 DPADD=  ${LIBUTIL} ${LIBKRB} ${LIBCRYPTO}
11 CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
12         -I${.CURDIR}/../../kerberosIV/include \
13         -I${.CURDIR}/../../crypto/kerberosIV/include \
14         -I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
15         -I${.CURDIR}/../../crypto/kerberosIV/appl/bsd \
16         -I${.CURDIR}
17 LDADD=  -lutil -lkrb -lcrypto
18 DISTRIBUTION=   krb4
19 .PATH:  ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
20 .endif
21
22 BINOWN= root
23 BINMODE=4555
24 INSTALLFLAGS=-fschg
25
26 .include <bsd.prog.mk>