libficl is only ever used in a loader (never a boot) program. Move it
to loader.mk. Sponsored by: Netflix
This commit is contained in:
parent
25c2f4cb95
commit
76a8f5b0be
@ -24,15 +24,6 @@ BOOTOBJ= ${OBJTOP}/stand
|
||||
# BINDIR is where we install
|
||||
BINDIR?= /boot
|
||||
|
||||
# NB: The makefiles depend on these being empty when we don't build forth.
|
||||
.if ${MK_FORTH} != "no"
|
||||
LIBFICL= ${BOOTOBJ}/ficl/libficl.a
|
||||
.if ${MACHINE} == "i386"
|
||||
LIBFICL32= ${LIBFICL}
|
||||
.else
|
||||
LIBFICL32= ${BOOTOBJ}/ficl32/libficl.a
|
||||
.endif
|
||||
.endif
|
||||
LIBSA= ${BOOTOBJ}/libsa/libsa.a
|
||||
.if ${MACHINE} == "i386"
|
||||
LIBSA32= ${LIBSA}
|
||||
|
@ -129,6 +129,16 @@ LIBZFSBOOT= ${BOOTOBJ}/zfs/libzfsboot.a
|
||||
.endif
|
||||
.endif
|
||||
|
||||
# NB: The makefiles depend on these being empty when we don't build forth.
|
||||
.if ${MK_FORTH} != "no"
|
||||
LIBFICL= ${BOOTOBJ}/ficl/libficl.a
|
||||
.if ${MACHINE} == "i386"
|
||||
LIBFICL32= ${LIBFICL}
|
||||
.else
|
||||
LIBFICL32= ${BOOTOBJ}/ficl32/libficl.a
|
||||
.endif
|
||||
.endif
|
||||
|
||||
CLEANFILES+= vers.c
|
||||
VERSION_FILE?= ${.CURDIR}/version
|
||||
.if ${MK_REPRODUCIBLE_BUILD} != no
|
||||
|
Loading…
Reference in New Issue
Block a user