Deleted Added
full compact
Makefile (74798) Makefile (77943)
1# $FreeBSD: head/sys/boot/Makefile 74798 2001-03-25 23:07:44Z obrien $
1# $FreeBSD: head/sys/boot/Makefile 77943 2001-06-09 16:49:51Z dfr $
2
3# Build the add-in FORTH interpreter
2
3# Build the add-in FORTH interpreter
4.if ${MACHINE_ARCH} != "ia64"
4SUBDIR+= ficl
5SUBDIR+= ficl
6.endif
5
6# Build OpenFirmware library on PowerPC
7.if ${MACHINE_ARCH} == "powerpc"
8SUBDIR+= ofw
9.endif
10
11# Pick the machine-dependant subdir based on the target architecture.
12# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.

--- 4 unchanged lines hidden (view full) ---

17.endif
18
19# Build ARC / AlphaBIOS executable on the Alpha
20# (this is a WIP (work in progress))
21#.if ${MACHINE_ARCH} == "alpha"
22#SUBDIR+= arc
23#.endif
24
7
8# Build OpenFirmware library on PowerPC
9.if ${MACHINE_ARCH} == "powerpc"
10SUBDIR+= ofw
11.endif
12
13# Pick the machine-dependant subdir based on the target architecture.
14# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.

--- 4 unchanged lines hidden (view full) ---

19.endif
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
27# Build EFI executable on ia64
28.if ${MACHINE_ARCH} == "ia64"
29SUBDIR+= efi
30.endif
31
25.include <bsd.subdir.mk>
32.include <bsd.subdir.mk>