NetBSD/usr.bin/newgrp/Makefile
ginsbach c82c323deb Add the newgrp(1) utility, which changes effective group ID. This
is a POSIX (IEEE Std 1003.1, 2004 / Open Group Base Specifications
Issue 6) User Portability Utility.
2007-06-21 14:09:23 +00:00

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>