Home | History | Annotate | Line # | Download | only in newgrp
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2007/06/21 14:09:23 ginsbach Exp $
      2 #
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	newgrp
      7 BINOWN=	root
      8 BINMODE=4555
      9 
     10 CPPFLAGS+=-DLOGIN_CAP
     11 
     12 DPADD+=	${LIBCRYPT} ${LIBUTIL}
     13 LDADD+= -lcrypt -lutil
     14 
     15 .if (${USE_KERBEROS} != "no")
     16 CPPFLAGS+=-DKERBEROS
     17 .endif
     18 
     19 .include <bsd.prog.mk>
     20