f54f0690ba
We really only need one loader.conf. The other loader.conf was created because the current one took forever to parse in FORTH. That will be fixed in the next commit.
26 lines
373 B
Makefile
26 lines
373 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR+= libsa
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
SUBDIR+= forth
|
|
.endif
|
|
.if ${MK_LOADER_LUA} != "no"
|
|
SUBDIR+= liblua
|
|
SUBDIR+= lua
|
|
.endif
|
|
|
|
SUBDIR+= defaults
|
|
SUBDIR+= man
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
.if exists(${.CURDIR}/${MACHINE}/.)
|
|
SUBDIR+= ${MACHINE}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|