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

Annotation of src/usr.bin/rlogin/Makefile, Revision 1.4

1.4     ! millert     1: #      $OpenBSD: Makefile,v 1.3 1996/06/26 05:38:30 deraadt Exp $
1.1       deraadt     2: #      $NetBSD: Makefile,v 1.5 1995/03/21 07:58:28 cgd Exp $
                      3:
                      4: PROG=  rlogin
                      5: SRCS=  rlogin.c
                      6: BINOWN=        root
                      7: BINMODE=4555
                      8: #INSTALLFLAGS=-fschg
1.2       tholo       9:
                     10: .include <bsd.own.mk>
                     11:
1.4     ! millert    12: .if (${KERBEROS} == "yes")
1.2       tholo      13: CFLAGS+=-DKERBEROS
                     14: SRCS+= krcmd.c kcmd.c des_rw.c
                     15: LDADD+=        -lkrb -ldes
                     16: DPADD+=        ${LIBKRB} ${LIBDES}
                     17: .endif
1.1       deraadt    18:
                     19: .include <bsd.prog.mk>