xref: /NextBSD/sbin/init/Makefile (revision 84d351007654069f9643c8e4b4802a7f5f08ee42)
1#	@(#)Makefile	8.1 (Berkeley) 7/19/93
2# $FreeBSD$
3
4PROG=	init
5SRCS=	init.c getmntopts.c
6MAN=	init.8
7PRECIOUSPROG=
8INSTALLFLAGS=-b -B.bak
9CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
10LIBADD=	util crypt
11
12# Needed for getmntopts.c
13MOUNT=	${.CURDIR}/../../sbin/mount
14CFLAGS+=-I${MOUNT}
15.PATH:	${MOUNT}
16
17NO_SHARED?=	YES
18
19.include <bsd.prog.mk>
20