Deleted Added
full compact
Makefile (53152) Makefile (53181)
1# $FreeBSD: head/sys/boot/Makefile 53152 1999-11-14 13:54:44Z marcel $
1# $FreeBSD: head/sys/boot/Makefile 53181 1999-11-15 08:31:14Z marcel $
2
3# Build the add-in FORTH interpreter
4SUBDIR+= ficl
5
6# Pick the machine-dependant subdir based on the target architecture.
2
3# Build the add-in FORTH interpreter
4SUBDIR+= ficl
5
6# Pick the machine-dependant subdir based on the target architecture.
7# XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.
8.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
9SUBDIR+= ${MACHINE}
10.else
7SUBDIR+= ${MACHINE_ARCH}
11SUBDIR+= ${MACHINE_ARCH}
12.endif
8
9# Build ARC / AlphaBIOS executable on the Alpha
10.if ${MACHINE_ARCH} == "alpha"
11SUBDIR+= arc
12.endif
13
14.include <bsd.subdir.mk>
13
14# Build ARC / AlphaBIOS executable on the Alpha
15.if ${MACHINE_ARCH} == "alpha"
16SUBDIR+= arc
17.endif
18
19.include <bsd.subdir.mk>