]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/boot/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / boot / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .if ${MK_FORTH} != "no"
6 # Build the add-in FORTH interpreter.
7 SUBDIR+=                ficl
8 .endif
9
10 # Build EFI library.
11 .if ${MACHINE_ARCH} == "amd64" || ${MACHINE} == "i386" || ${MACHINE_ARCH} == "ia64"
12 SUBDIR+=                efi
13 .endif
14
15 # Build Open Firmware library.
16 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
17 SUBDIR+=                ofw
18 .endif
19
20 # Pick the machine-dependent subdir based on the target architecture.
21 SUBDIR+=                ${MACHINE:S/amd64/i386/:S/sun4v/sparc64/}
22
23 .include <bsd.subdir.mk>