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

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

1.1       deraadt     1: #      from: @(#)Makefile      5.6 (Berkeley) 9/27/90
1.2     ! tholo       2: #      $Id: Makefile,v 1.1.1.1 1995/10/18 08:46:03 deraadt Exp $
1.1       deraadt     3:
                      4: PROG=  rsh
                      5: SRCS=  rsh.c
                      6: BINOWN=        root
                      7: BINMODE=4555
1.2     ! tholo       8:
        !             9: .include <bsd.own.mk>  # For KERBEROS
        !            10:
        !            11: .if defined(KERBEROS)
        !            12: SRCS+= des_rw.c
1.1       deraadt    13: .PATH: ${.CURDIR}/../rlogin
1.2     ! tholo      14: CFLAGS+=-DKERBEROS
        !            15: SRCS+= krcmd.c kcmd.c
        !            16: LDADD+=        -lkrb -ldes
        !            17: DPADD+=        ${LIBKRB} ${LIBDES}
        !            18: .endif
1.1       deraadt    19:
                     20: .include <bsd.prog.mk>