Deleted Added
full compact
Makefile (176371) Makefile (180733)
1# $FreeBSD: head/sys/boot/Makefile 176371 2008-02-17 20:34:35Z marcel $
1# $FreeBSD: head/sys/boot/Makefile 180733 2008-07-23 07:23:33Z imp $
2
3.include <bsd.own.mk>
4
5.if ${MK_FORTH} != "no"
6# Build the add-in FORTH interpreter.
7SUBDIR+= ficl
8.endif
9

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

18.endif
19
20# Build U-Boot library.
21.if ${MACHINE_ARCH} == "powerpc"
22SUBDIR+= uboot
23.endif
24
25# Pick the machine-dependent subdir based on the target architecture.
2
3.include <bsd.own.mk>
4
5.if ${MK_FORTH} != "no"
6# Build the add-in FORTH interpreter.
7SUBDIR+= ficl
8.endif
9

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

18.endif
19
20# Build U-Boot library.
21.if ${MACHINE_ARCH} == "powerpc"
22SUBDIR+= uboot
23.endif
24
25# Pick the machine-dependent subdir based on the target architecture.
26SUBDIR+= ${MACHINE:S/amd64/i386/:S/sun4v/sparc64/}
26ADIR= ${MACHINE:S/amd64/i386/:S/sun4v/sparc64/}
27.if exists(${.CURDIR}/${ADIR}/.)
28SUBDIR+= ${ADIR}
29.endif
27
28.include <bsd.subdir.mk>
30
31.include <bsd.subdir.mk>