Makefile revision 139112
1196550Sdelphij#	@(#)Makefile	8.2 (Berkeley) 4/22/94
2196550Sdelphij# $FreeBSD: head/usr.sbin/nologin/Makefile 139112 2004-12-21 09:59:45Z ru $
3196550Sdelphij
4196550SdelphijPROG=	nologin
5196550SdelphijMAN=	nologin.5 nologin.8
6196550Sdelphij
7196550SdelphijSYMLINKS=	${BINDIR}/nologin /sbin/nologin
8196550Sdelphij
9196550Sdelphij# It is important that nologin be statically linked for security
10196550Sdelphij# reasons.  A dynamic non-setuid binary can be linked against a trojan
11196550Sdelphij# libc by setting LD_LIBRARY_PATH appropriately.  Both sshd(8) and
12196550Sdelphij# login(1) make it possible to log in with an unsanitized environment,
13196550Sdelphij# rendering a dynamic nologin binary virtually useless.
14196550SdelphijNO_SHARED=	YES
15196550Sdelphij
16196550Sdelphij.include <bsd.prog.mk>
17196550Sdelphij