1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5.if ${MK_FORTH} != "no" 6# Build the add-in FORTH interpreter. 7SUBDIR+= ficl 8SUBDIR+= forth 9.endif 10 11SUBDIR+= common 12 13.include <bsd.arch.inc.mk> 14 15# Pick the machine-dependent subdir based on the target architecture. 16ADIR= ${MACHINE:S/powerpc64/powerpc/} 17.if exists(${.CURDIR}/${ADIR}/.) 18SUBDIR+= ${ADIR} 19.endif 20 21.include <bsd.subdir.mk> 22