xref: /freebsd/packages/bootloader/Makefile (revision bb75b0d581f74e22a68d7868ad1f5da1146a8de0)
1.include <src.opts.mk>
2
3WORLDPACKAGE=	bootloader
4SUBPACKAGES=
5
6# bootloader-dbg is only built if we're building userboot, which is specific
7# to amd64.
8.if ${MACHINE_CPUARCH} == "amd64"
9SUBPACKAGES+=	dbg
10.endif
11
12# The bootloader "dev" package only contains manpages.
13.if ${MK_MAN} != "no"
14. if ${MK_MANSPLITPKG} != "no"
15SUBPACKAGES+=	man
16. else
17SUBPACKAGES+=	dev
18. endif
19.endif
20
21# The bootloader isn't normally used in a jail.
22PKG_SETS=	minimal
23
24.include <bsd.pkg.mk>
25