Makefile revision 74798
153152Smarcel# $FreeBSD: head/sys/boot/Makefile 74798 2001-03-25 23:07:44Z obrien $
253152Smarcel
340843Smsmith# Build the add-in FORTH interpreter
440843SmsmithSUBDIR+=		ficl
538465Smsmith
668546Sbenno# Build OpenFirmware library on PowerPC
768546Sbenno.if ${MACHINE_ARCH} == "powerpc"
868546SbennoSUBDIR+=		ofw
968546Sbenno.endif
1068546Sbenno
1140843Smsmith# Pick the machine-dependant subdir based on the target architecture.
1253181Smarcel# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.
1353181Smarcel.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
1453181SmarcelSUBDIR+=		${MACHINE}
1553181Smarcel.else
1653152SmarcelSUBDIR+=		${MACHINE_ARCH}
1753181Smarcel.endif
1840843Smsmith
1949192Sse# Build ARC / AlphaBIOS executable on the Alpha
2074798Sobrien# (this is a WIP (work in progress))
2174798Sobrien#.if ${MACHINE_ARCH} == "alpha"
2274798Sobrien#SUBDIR+=		arc
2374798Sobrien#.endif
2449192Sse
2538465Smsmith.include <bsd.subdir.mk>
26