diff options
Diffstat (limited to 'libexec/rshd/Makefile')
-rw-r--r-- | libexec/rshd/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index 39a3eb2e302..07db1e49e19 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,7 +1,18 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id: Makefile,v 1.1 1995/10/18 08:43:22 deraadt Exp $ +# $Id: Makefile,v 1.2 1995/12/16 22:20:22 tholo Exp $ PROG= rshd +SRCS= rshd.c MAN= rshd.8 +.include <bsd.own.mk> + +.if defined(KERBEROS) +SRCS+= des_rw.c +.PATH: ${.CURDIR}/../../usr.bin/rlogin +CFLAGS+=-DKERBEROS +DPADD+= ${LIBKRB} ${LIBDES} +LDADD+= -lkrb -ldes +.endif + .include <bsd.prog.mk> |