6c4b856dbe
keep cleaer that common is just for the MI files for /boot/loader programs. Sponsored by: Netflix
23 lines
391 B
Makefile
23 lines
391 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR+= libsa
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
SUBDIR+= forth
|
|
.endif
|
|
|
|
SUBDIR+= man
|
|
|
|
.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>
|