Makefile revision 281843
10SN/A# $FreeBSD: stable/10/sys/boot/Makefile 281843 2015-04-22 01:08:40Z dteske $
20SN/A
30SN/A.include <bsd.own.mk>
40SN/A.include <bsd.arch.inc.mk>
50SN/A
62362SN/A.if ${MK_FORTH} != "no"
70SN/A# Build the add-in FORTH interpreter.
82362SN/ASUBDIR+=		ficl
90SN/ASUBDIR+=		forth
100SN/A.endif
110SN/A
120SN/A# Pick the machine-dependent subdir based on the target architecture.
130SN/AADIR=			${MACHINE:S/powerpc64/powerpc/}
140SN/A.if exists(${.CURDIR}/${ADIR}/.)
150SN/ASUBDIR+=		${ADIR}
160SN/A.endif
170SN/A.if ${MACHINE} == "amd64"
180SN/ASUBDIR+=		i386
190SN/A.endif
202362SN/A
212362SN/A.include <bsd.subdir.mk>
222362SN/A