freebsd-dev/usr.bin/newgrp/Makefile
Tim J. Robbins 29f48d6256 Add the newgrp(1) utility, which changes groups. This is required by
the POSIX.2 UPE.

PR:		36190
Reviewed by:	-standards, silence on -audit
2002-05-28 05:05:28 +00:00

13 lines
212 B
Makefile

# $FreeBSD$
PROG= newgrp
DPADD= ${LIBCRYPT} ${LIBUTIL}
LDADD= -lcrypt -lutil
.if defined(ENABLE_SUID_NEWGRP) && ${ENABLE_SUID_NEWGRP} == "true"
BINMODE= 4555
INSTALLFLAGS= -fschg
.endif
.include <bsd.prog.mk>