c368d11dd2
- Get rid of inverse logic (NOKERBEROS and NOEBONES) in src/makefile, and replace with MAKE_KERBEROS and MAKE_EBONES. (Far fewer contortions, and both default to off.) IF YOU WANT KERBEROS, YOU HAVE TO EXPLICITLY DEFINE ONE OF THESE. - Make Makefiles kerberos-aware.
23 lines
433 B
Makefile
23 lines
433 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $Id: Makefile,v 1.3 1994/09/24 02:56:53 davidg Exp $
|
|
|
|
PROG= rcp
|
|
SRCS= rcp.c util.c
|
|
|
|
|
|
.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \
|
|
|| defined(MAKE_EBONES))
|
|
SRCS+= kcmd.c krcmd.c
|
|
CFLAGS+=-DKERBEROS -DCRYPT
|
|
DPADD= ${LIBKRB} ${LIBDES}
|
|
LDADD= -lkrb -ldes
|
|
.endif
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/rlogin
|
|
|
|
.include <bsd.prog.mk>
|