Makefile revision 156813
1# $FreeBSD: head/sys/boot/Makefile 156813 2006-03-17 18:54:44Z ru $
2
3.include <bsd.own.mk>
4
5.if ${MK_FORTH} != "no"
6# Build the add-in FORTH interpreter.
7SUBDIR+=		ficl
8.endif
9
10# Build EFI library.
11.if ${MACHINE_ARCH} == "ia64"
12SUBDIR+=		efi
13.endif
14
15# Build Open Firmware library.
16.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
17SUBDIR+=		ofw
18.endif
19
20# Pick the machine-dependent subdir based on the target architecture.
21SUBDIR+=		${MACHINE:S/amd64/i386/}
22
23# Build ARC / AlphaBIOS executable on the Alpha
24# (this is a WIP (work in progress)).
25#.if ${MACHINE_ARCH} == "alpha"
26#SUBDIR+=		arc
27#.endif
28
29.include <bsd.subdir.mk>
30