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