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

Annotation of src/usr.bin/su/Makefile, Revision 1.6

1.6     ! millert     1: #      $OpenBSD: Makefile,v 1.5 1997/03/26 00:35:37 deraadt Exp $
1.1       deraadt     2:
                      3: PROG=  su
                      4: BINOWN=        root
                      5: BINMODE=4555
1.2       tholo       6:
                      7: .include <bsd.own.mk>
                      8:
1.6     ! millert     9: .if (${SKEY} == "yes")
1.1       deraadt    10: CFLAGS+=-DSKEY
1.2       tholo      11: LDADD+= -lskey
                     12: DPADD+= ${LIBSKEY}
                     13: .endif
                     14:
1.6     ! millert    15: .if (${KERBEROS} == "yes")
1.2       tholo      16: CFLAGS+=-DKERBEROS
                     17: LDADD+=        -lkrb -ldes
                     18: DPADD+=        ${LIBKRB} ${LIBDES}
                     19: .endif
1.1       deraadt    20:
                     21: .include <bsd.prog.mk>