11.3Schristos#	$NetBSD: netbsd32.mk,v 1.3 2021/04/25 22:27:08 christos 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.2Spgoyette    || ${MACHINE_CPU} == "aarch64" \
91.1Smrg    || ${MACHINE_ARCH} == "sparc64" \
101.3Schristos    || (${MACHINE_MIPS64} && !defined(BSD_MK_COMPAT_FILE))
111.1SmrgCOMPAT_USE_NETBSD32?=yes
121.1Smrg.else
131.1SmrgCOMPAT_USE_NETBSD32?=no
141.1Smrg.endif
15