17 lines
352 B
Makefile
17 lines
352 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $Id: Makefile,v 1.3 1994/09/29 13:06:37 csgr Exp $
|
|
|
|
PROG= rshd
|
|
SRCS= rshd.c
|
|
MAN8= rshd.8
|
|
|
|
.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \
|
|
|| defined(MAKE_EBONES))
|
|
CFLAGS+=-DKERBEROS -DCRYPT
|
|
DPADD= ${LIBKRB} ${LIBDES}
|
|
LDADD= -lkrb -ldes
|
|
DISTRIBUTION= krb
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|