Makefile revision 293353
1# $FreeBSD: stable/10/sys/boot/Makefile 293353 2016-01-07 20:34:06Z emaste $
2
3.include <bsd.own.mk>
4
5.if ${MK_FORTH} != "no"
6# Build the add-in FORTH interpreter.
7SUBDIR+=		ficl
8SUBDIR+=		forth
9.endif
10
11.include <bsd.arch.inc.mk>
12
13# Pick the machine-dependent subdir based on the target architecture.
14ADIR=			${MACHINE:S/powerpc64/powerpc/}
15.if exists(${.CURDIR}/${ADIR}/.)
16SUBDIR+=		${ADIR}
17.endif
18
19.include <bsd.subdir.mk>
20