]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/boot/Makefile
* Add the readline(3) API to libedit. The libedit versions of
[FreeBSD/FreeBSD.git] / sys / boot / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4 .include <bsd.arch.inc.mk>
5
6 .if ${MK_FORTH} != "no"
7 # Build the add-in FORTH interpreter.
8 SUBDIR+=                ficl
9 .endif
10
11 .if ${MK_FDT} != "no"
12 SUBDIR+=                fdt
13 .endif
14
15 # Pick the machine-dependent subdir based on the target architecture.
16 ADIR=                   ${MACHINE:S/amd64/i386/:S/sun4v/sparc64/:S/powerpc64/powerpc/}
17 .if exists(${.CURDIR}/${ADIR}/.)
18 SUBDIR+=                ${ADIR}
19 .endif
20
21 .include <bsd.subdir.mk>