xref: /freebsd/stand/Makefile (revision 07c17b2b00d8c1c8a2d58d4d8f99e64ec1182476)
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
13SUBDIR+=		lua
14.endif
15
16SUBDIR+=		man
17
18.include <bsd.arch.inc.mk>
19
20.if exists(${.CURDIR}/${MACHINE}/.)
21SUBDIR+=		${MACHINE}
22.endif
23
24.include <bsd.subdir.mk>
25