[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / rsh

Annotation of src/usr.bin/rsh/Makefile, Revision 1.5

1.5     ! espie       1: #      $OpenBSD: Makefile,v 1.4 1997/04/19 21:26:29 millert Exp $
1.1       deraadt     2:
                      3: PROG=  rsh
                      4: SRCS=  rsh.c
                      5: BINOWN=        root
                      6: BINMODE=4555
1.2       tholo       7:
                      8: .include <bsd.own.mk>  # For KERBEROS
                      9:
1.5     ! espie      10: .if (${KERBEROS:L} == "yes")
1.2       tholo      11: SRCS+= des_rw.c
1.1       deraadt    12: .PATH: ${.CURDIR}/../rlogin
1.2       tholo      13: CFLAGS+=-DKERBEROS
                     14: SRCS+= krcmd.c kcmd.c
                     15: LDADD+=        -lkrb -ldes
                     16: DPADD+=        ${LIBKRB} ${LIBDES}
                     17: .endif
1.1       deraadt    18:
                     19: .include <bsd.prog.mk>