Makefile revision 99539
138061Smsmith# $FreeBSD: head/sys/boot/Makefile 99539 2002-07-07 18:10:38Z jake $
238061Smsmith
338061Smsmith# Build the add-in FORTH interpreter
438061SmsmithSUBDIR+=		ficl
538061Smsmith
638061Smsmith# Build OpenFirmware library
738061Smsmith.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
838061SmsmithSUBDIR+=		ofw
938061Smsmith.endif
1038061Smsmith
1138061Smsmith# Pick the machine-dependant subdir based on the target architecture.
1238061SmsmithSUBDIR+=		${MACHINE}
1338061Smsmith
1438061Smsmith# Build ARC / AlphaBIOS executable on the Alpha
1538061Smsmith# (this is a WIP (work in progress))
1638061Smsmith#.if ${MACHINE_ARCH} == "alpha"
1738061Smsmith#SUBDIR+=		arc
1838061Smsmith#.endif
1938061Smsmith
2038061Smsmith# Build EFI executable on ia64
2138061Smsmith.if ${MACHINE_ARCH} == "ia64"
2238061SmsmithSUBDIR+=		efi
2338061Smsmith.endif
2438061Smsmith
2538061Smsmith.include <bsd.subdir.mk>
2650477Speter