xref: /NextBSD/sys/boot/Makefile (revision 287e3b14e9552995def1802ec9c5034f4adf28ec)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5.if ${MK_FORTH} != "no"
6# Build the add-in FORTH interpreter.
7SUBDIR+=		ficl
8SUBDIR+=		forth
9.endif
10
11SUBDIR+=		common
12
13.include <bsd.arch.inc.mk>
14
15# Pick the machine-dependent subdir based on the target architecture.
16ADIR=			${MACHINE:S/powerpc64/powerpc/}
17.if exists(${.CURDIR}/${ADIR}/.)
18SUBDIR+=		${ADIR}
19.endif
20
21.include <bsd.subdir.mk>
22