mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 08:33:20 +00:00
8a7ad3adf7
Also make -Wall a bit quieter.
26 lines
672 B
Makefile
26 lines
672 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $Id: Makefile,v 1.7 1997/02/22 14:05:18 peter Exp $
|
|
|
|
PROG= rcp
|
|
SRCS= rcp.c util.c
|
|
CFLAGS+=-Wall
|
|
|
|
.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4)
|
|
SRCS+= krcmd.c kcmd.c rcmd_util.c encrypt.c
|
|
DPADD= ${LIBKRB} ${LIBDES}
|
|
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
|
|
-I${.CURDIR}/../../kerberosIV/include \
|
|
-I${.CURDIR}/../../crypto/kerberosIV/include \
|
|
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
|
|
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
|
LDADD= -lkrb -ldes
|
|
DISTRIBUTION= krb
|
|
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
|
.endif
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.include <bsd.prog.mk>
|