netbsd32.mk revision 1.1
11.1Smrg#	$NetBSD: netbsd32.mk,v 1.1 2019/02/04 21:57:47 mrg Exp $
21.1Smrg
31.1Smrg# makefile fragment that tells you if you should support netbsd32 or not.
41.1Smrg# include this and check ${COMPAT_USE_NETBSD32} != "no".
51.1Smrg
61.1Smrg.if ${MACHINE_ARCH} == "x86_64" \
71.1Smrg    || ${MACHINE_CPU} == "arm" \
81.1Smrg    || ${MACHINE_ARCH} == "sparc64" \
91.1Smrg    || (!empty(MACHINE_ARCH:Mmips64*) && !defined(BSD_MK_COMPAT_FILE))
101.1SmrgCOMPAT_USE_NETBSD32?=yes
111.1Smrg.else
121.1SmrgCOMPAT_USE_NETBSD32?=no
131.1Smrg.endif
14