Makefile revision 259065
1285SN/A# $FreeBSD: releng/10.0/sys/boot/Makefile 223539 2011-06-25 16:01:45Z marius $
2462SN/A
3285SN/A.include <bsd.own.mk>
4285SN/A.include <bsd.arch.inc.mk>
5285SN/A
6285SN/A.if ${MK_FORTH} != "no"
7285SN/A# Build the add-in FORTH interpreter.
8285SN/ASUBDIR+=		ficl
9285SN/A.endif
10285SN/A
11285SN/A# Pick the machine-dependent subdir based on the target architecture.
12285SN/AADIR=			${MACHINE:S/amd64/i386/:S/powerpc64/powerpc/}
13285SN/A.if exists(${.CURDIR}/${ADIR}/.)
14285SN/ASUBDIR+=		${ADIR}
15285SN/A.endif
16285SN/A
17285SN/A.include <bsd.subdir.mk>
18285SN/A