mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 22:11:09 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
22 lines
370 B
Makefile
22 lines
370 B
Makefile
CONFGROUPS= CONFTTYS
|
|
PACKAGE=runtime
|
|
PROG= init
|
|
SRCS= init.c getmntopts.c
|
|
MAN= init.8
|
|
PRECIOUSPROG=
|
|
INSTALLFLAGS=-b -B.bak
|
|
CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
|
|
LIBADD= util crypt
|
|
|
|
CONFTTYSNAME= ttys
|
|
CONFTTYS+= ttys
|
|
|
|
# Needed for getmntopts.c
|
|
MOUNT= ${SRCTOP}/sbin/mount
|
|
CFLAGS+=-I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
NO_SHARED?= YES
|
|
|
|
.include <bsd.prog.mk>
|