mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
21 lines
378 B
Makefile
21 lines
378 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
SUBDIR+= forth
|
|
.endif
|
|
|
|
SUBDIR+= common
|
|
|
|
.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>
|