Deleted Added
full compact
Makefile (133862) Makefile (138001)
1# $FreeBSD: head/sys/boot/Makefile 133862 2004-08-16 15:45:27Z marius $
1# $FreeBSD: head/sys/boot/Makefile 138001 2004-11-23 05:52:00Z marcel $
2
3.if !defined(NOFORTH)
4# Build the add-in FORTH interpreter.
5SUBDIR+= ficl
6.endif
7
2
3.if !defined(NOFORTH)
4# Build the add-in FORTH interpreter.
5SUBDIR+= ficl
6.endif
7
8# Build EFI library.
9.if ${MACHINE_ARCH} == "ia64"
10SUBDIR+= efi
11.endif
12
8# Build Open Firmware library.
9.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
10SUBDIR+= ofw
11.endif
12
13# Pick the machine-dependent subdir based on the target architecture.
14SUBDIR+= ${MACHINE:S/amd64/i386/}
15
16# Build ARC / AlphaBIOS executable on the Alpha
17# (this is a WIP (work in progress)).
18#.if ${MACHINE_ARCH} == "alpha"
19#SUBDIR+= arc
20#.endif
21
13# Build Open Firmware library.
14.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
15SUBDIR+= ofw
16.endif
17
18# Pick the machine-dependent subdir based on the target architecture.
19SUBDIR+= ${MACHINE:S/amd64/i386/}
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
22# Build EFI executable on ia64.
23.if ${MACHINE_ARCH} == "ia64"
24SUBDIR+= efi
25.endif
26
27.include <bsd.subdir.mk>
27.include <bsd.subdir.mk>