Home | History | Annotate | Line # | Download | only in su
Makefile revision 1.7
      1  1.4   mycroft #	from: @(#)Makefile	5.5 (Berkeley) 5/11/90
      2  1.7  christos #	$Id: Makefile,v 1.7 1996/10/12 23:54:38 christos Exp $
      3  1.1       cgd 
      4  1.1       cgd PROG=	su
      5  1.1       cgd BINOWN=	root
      6  1.1       cgd BINMODE=4555
      7  1.7  christos 
      8  1.7  christos .include <bsd.prog.mk>
      9  1.7  christos 
     10  1.7  christos .ifdef SKEY
     11  1.6   deraadt CFLAGS+=-DSKEY
     12  1.6   deraadt LDADD+= -lcrypt -lskey
     13  1.6   deraadt DPADD+= ${LIBCRYPT} ${LIBSKEY}
     14  1.7  christos .endif
     15  1.1       cgd 
     16  1.7  christos .ifdef KERBEROS
     17  1.7  christos CFLAGS+=-DKERBEROS
     18  1.7  christos LDADD+= -lkrb -ldes
     19  1.7  christos DPADD+= ${LIBKRB} ${LIBDES}
     20  1.7  christos .endif
     21