]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/init/Makefile
bhyvectl(8): Normalize the man page date
[FreeBSD/FreeBSD.git] / sbin / init / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 7/19/93
2 # $FreeBSD$
3
4 CONFGROUPS=     CONFTTYS
5 PACKAGE=runtime
6 PROG=   init
7 SRCS=   init.c getmntopts.c
8 MAN=    init.8
9 PRECIOUSPROG=
10 INSTALLFLAGS=-b -B.bak
11 CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
12 LIBADD= util crypt
13
14 CONFTTYSNAME=   ttys
15 .if exists(${.CURDIR}/ttys.${MACHINE})
16 CONFTTYS+=      ttys.${MACHINE}
17 .elif exists(${.CURDIR}/ttys.${MACHINE_ARCH})
18 CONFTTYS+=      ttys.${MACHINE_ARCH}
19 .elif exists(${.CURDIR}/ttys.${MACHINE_CPUARCH})
20 CONFTTYS+=      ttys.${MACHINE_CPUARCH}
21 .else
22 .error MACHINE.ttys missing
23 .endif
24
25 # Needed for getmntopts.c
26 MOUNT=  ${SRCTOP}/sbin/mount
27 CFLAGS+=-I${MOUNT}
28 .PATH:  ${MOUNT}
29
30 NO_SHARED?=     YES
31
32 .include <bsd.prog.mk>