Makefile revision 329145
1# $FreeBSD: stable/11/stand/i386/Makefile 329140 2018-02-11 20:58:00Z kevans $
2
3.include <bsd.init.mk>
4
5SUBDIR=		mbr pmbr boot0 boot0sio btx boot2 cdboot gptboot \
6		libi386
7
8.if ${MK_LOADER_FIREWIRE} == "yes"
9SUBDIR+=	libfirewire
10.endif
11
12SUBDIR+=	loader
13
14# special boot programs, 'self-extracting boot2+loader'
15SUBDIR+=	pxeldr
16
17.if ${MACHINE_CPUARCH} == "i386"
18SUBDIR+=	kgzldr
19.endif
20
21.if ${MK_ZFS} != "no"
22SUBDIR+=	zfsboot gptzfsboot zfsloader
23.endif
24
25.include <bsd.subdir.mk>
26