93c4369096
Move some needed binaries/libs from FreeBSD-utilities to FreeBSD_runtime. This is everything needed to boot to multiuser with FreeBSD-rc installed. MFC after: 2 weeks Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D33435
18 lines
285 B
Makefile
18 lines
285 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
PROG= id
|
|
LINKS= ${BINDIR}/id ${BINDIR}/groups
|
|
LINKS+= ${BINDIR}/id ${BINDIR}/whoami
|
|
MAN= id.1 groups.1 whoami.1
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|