mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
17 lines
356 B
Makefile
17 lines
356 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
.endif
|
|
|
|
# Pick the machine-dependent subdir based on the target architecture.
|
|
ADIR= ${MACHINE:S/amd64/i386/:S/powerpc64/powerpc/}
|
|
.if exists(${.CURDIR}/${ADIR}/.)
|
|
SUBDIR+= ${ADIR}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|