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