Deleted Added
full compact
Makefile (163145) Makefile (164010)
1# $FreeBSD: head/sys/boot/Makefile 163145 2006-10-09 04:43:07Z kmacy $
1# $FreeBSD: head/sys/boot/Makefile 164010 2006-11-05 22:03:04Z marcel $
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.
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"
11.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || ${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/:S/sun4v/sparc64/}
22
23.include <bsd.subdir.mk>
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/:S/sun4v/sparc64/}
22
23.include <bsd.subdir.mk>