xref: /freebsd/stand/Makefile (revision 7cafeaa1fde93dbefa40971343bf9a3bb92f2ede)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR+=		libsa
6.if ${MK_FORTH} != "no"
7# Build the add-in FORTH interpreter.
8SUBDIR+=		ficl
9SUBDIR+=		forth
10.endif
11.if ${MK_LOADER_LUA} != "no"
12SUBDIR+=		liblua
13.endif
14
15SUBDIR+=		man
16
17.include <bsd.arch.inc.mk>
18
19.if exists(${.CURDIR}/${MACHINE}/.)
20SUBDIR+=		${MACHINE}
21.endif
22
23.include <bsd.subdir.mk>
24