Makefile revision 122842
1#	@(#)Makefile	8.2 (Berkeley) 4/22/94
2# $FreeBSD: head/usr.sbin/nologin/Makefile 122842 2003-11-17 06:39:38Z das $
3
4PROG=	nologin
5MAN=	nologin.5 nologin.8
6
7# It is important that nologin be statically linked for security
8# reasons.  A dynamic non-setuid binary can be linked against a trojan
9# libc by setting LD_LIBRARY_PATH appropriately.  Both sshd(8) and
10# login(1) make it possible to log in with an unsanitized environment,
11# rendering a dynamic nologin binary virtually useless.
12NOSHARED=	YES
13
14.include <bsd.prog.mk>
15