mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
a7b5a3d486
All of them are needed to be able to boot to single user and be able to repair a existing FreeBSD installation so put them directly into FreeBSD-runtime. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21503
17 lines
221 B
Makefile
17 lines
221 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= runtime
|
|
PROG= kldxref
|
|
MAN= kldxref.8
|
|
SRCS= kldxref.c ef.c ef_obj.c
|
|
|
|
WARNS?= 2
|
|
|
|
.if exists(ef_${MACHINE_CPUARCH}.c)
|
|
SRCS+= ef_${MACHINE_CPUARCH}.c
|
|
.else
|
|
SRCS+= ef_nop.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|