1#	@(#)Makefile	8.1 (Berkeley) 7/19/93
2# $FreeBSD: stable/11/sbin/init/Makefile 319185 2017-05-30 04:17:22Z ngie $
3
4PACKAGE=runtime
5PROG=	init
6SRCS=	init.c getmntopts.c
7MAN=	init.8
8PRECIOUSPROG=
9INSTALLFLAGS=-b -B.bak
10CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
11LIBADD=	util crypt
12
13# Needed for getmntopts.c
14MOUNT=	${SRCTOP}/sbin/mount
15CFLAGS+=-I${MOUNT}
16.PATH:	${MOUNT}
17
18NO_SHARED?=	YES
19
20.include <bsd.prog.mk>
21