xref: /freebsd/stand/Makefile (revision 9e74797f30ffa3e29d54438933f74ad53ad37f99)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR+=		libsa
6.if ${MK_FORTH} != "no"
7# Build the add-in FORTH interpreter.
8SUBDIR+=		ficl
9SUBDIR+=		forth
10.endif
11.if ${MK_LOADER_LUA} != "no"
12SUBDIR+=		liblua
13SUBDIR+=		lua
14.endif
15
16SUBDIR+=		defaults
17SUBDIR+=		man
18
19.include <bsd.arch.inc.mk>
20
21.if ${MK_EFI} != "no" && ${MK_LOADER_EFI} != "no"
22SUBDIR+=		efi
23.endif
24
25.if exists(${.CURDIR}/${MACHINE}/.)
26SUBDIR+=		${MACHINE}
27.endif
28
29.include <bsd.subdir.mk>
30