c82c323deb
is a POSIX (IEEE Std 1003.1, 2004 / Open Group Base Specifications Issue 6) User Portability Utility.
20 lines
287 B
Makefile
20 lines
287 B
Makefile
# $NetBSD: Makefile,v 1.1 2007/06/21 14:09:23 ginsbach Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= newgrp
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
CPPFLAGS+=-DLOGIN_CAP
|
|
|
|
DPADD+= ${LIBCRYPT} ${LIBUTIL}
|
|
LDADD+= -lcrypt -lutil
|
|
|
|
.if (${USE_KERBEROS} != "no")
|
|
CPPFLAGS+=-DKERBEROS
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|