Deleted Added
full compact
Makefile (68546) Makefile (74798)
1# $FreeBSD: head/sys/boot/Makefile 68546 2000-11-10 06:29:42Z benno $
1# $FreeBSD: head/sys/boot/Makefile 74798 2001-03-25 23:07:44Z obrien $
2
3# Build the add-in FORTH interpreter
4SUBDIR+= ficl
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.
13.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
14SUBDIR+= ${MACHINE}
15.else
16SUBDIR+= ${MACHINE_ARCH}
17.endif
18
19# Build ARC / AlphaBIOS executable on the Alpha
2
3# Build the add-in FORTH interpreter
4SUBDIR+= ficl
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.
13.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
14SUBDIR+= ${MACHINE}
15.else
16SUBDIR+= ${MACHINE_ARCH}
17.endif
18
19# Build ARC / AlphaBIOS executable on the Alpha
20.if ${MACHINE_ARCH} == "alpha"
21SUBDIR+= arc
22.endif
20# (this is a WIP (work in progress))
21#.if ${MACHINE_ARCH} == "alpha"
22#SUBDIR+= arc
23#.endif
23
24.include <bsd.subdir.mk>
24
25.include <bsd.subdir.mk>