Makefile revision 77943
1# $FreeBSD: head/sys/boot/Makefile 77943 2001-06-09 16:49:51Z dfr $
2
3# Build the add-in FORTH interpreter
4.if ${MACHINE_ARCH} != "ia64"
5SUBDIR+=		ficl
6.endif
7
8# Build OpenFirmware library on PowerPC
9.if ${MACHINE_ARCH} == "powerpc"
10SUBDIR+=		ofw
11.endif
12
13# Pick the machine-dependant subdir based on the target architecture.
14# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.
15.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
16SUBDIR+=		${MACHINE}
17.else
18SUBDIR+=		${MACHINE_ARCH}
19.endif
20
21# Build ARC / AlphaBIOS executable on the Alpha
22# (this is a WIP (work in progress))
23#.if ${MACHINE_ARCH} == "alpha"
24#SUBDIR+=		arc
25#.endif
26
27# Build EFI executable on ia64
28.if ${MACHINE_ARCH} == "ia64"
29SUBDIR+=		efi
30.endif
31
32.include <bsd.subdir.mk>
33