1# $FreeBSD$
2
3NO_OBJ=t
4
5.include <bsd.init.mk>
6
7# In-tree GCC does not support __attribute__((ms_abi)), but gcc newer
8# than 4.5 supports it.
9.if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40500
10
11SUBDIR.yes+=	libefi
12SUBDIR.${MK_FDT}+=	fdt
13SUBDIR.yes+=	.WAIT
14
15SUBDIR.yes+=	boot1 gptboot
16
17SUBDIR.${MK_FORTH}+= loader_4th
18SUBDIR.${MK_LOADER_LUA}+= loader_lua
19SUBDIR.yes+=	loader_simp
20
21.endif # ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40500
22
23.include <bsd.subdir.mk>
24