fbeb31a26b
ZFS but keep the boot-loaders when using ZoL port. MFC after: 1 week Reviewed by: rgrimes Differential Revision: https://reviews.freebsd.org/D18739
26 lines
477 B
Makefile
26 lines
477 B
Makefile
# $FreeBSD$
|
|
|
|
NO_OBJ=t
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
SUBDIR.yes= mbr pmbr boot0 boot0sio btx boot2 cdboot gptboot \
|
|
isoboot libi386
|
|
|
|
SUBDIR.${MK_LOADER_FIREWIRE}+= libfirewire
|
|
|
|
SUBDIR.${MK_FORTH}+= loader_4th
|
|
SUBDIR.${MK_LOADER_LUA}+= loader_lua
|
|
SUBDIR.yes+= loader_simp
|
|
|
|
# special boot programs, 'self-extracting boot2+loader'
|
|
SUBDIR.yes+= pxeldr
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR.yes+= kgzldr
|
|
.endif
|
|
|
|
SUBDIR.${MK_LOADER_ZFS}+= zfsboot gptzfsboot
|
|
|
|
.include <bsd.subdir.mk>
|