mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Start fresh on master, only apply needed patches on top now. Upstream commit: 56279fdef34eb28a4655b489b992c651bd8379fc Taken from: FreeBSD
21 lines
406 B
Makefile
21 lines
406 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
SUBDIR+= forth
|
|
.endif
|
|
|
|
# Pick the machine-dependent subdir based on the target architecture.
|
|
ADIR= ${MACHINE:S/powerpc64/powerpc/}
|
|
.if exists(${.CURDIR}/${ADIR}/.)
|
|
SUBDIR+= ${ADIR}
|
|
.endif
|
|
.if ${MACHINE} == "amd64"
|
|
SUBDIR+= i386
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|