4ef84196c9
will depend on ficl having been built, and are set via bsd.arch.inc.mk we need to place this after ficl. As Makefile.amd64 is now late enough we can add the i386 directory to this.
19 lines
344 B
Makefile
19 lines
344 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
.endif
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
# Pick the machine-dependent subdir based on the target architecture.
|
|
ADIR= ${MACHINE:S/powerpc64/powerpc/}
|
|
.if exists(${.CURDIR}/${ADIR}/.)
|
|
SUBDIR+= ${ADIR}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|