1*25aecf51Schristos# $NetBSD: netbsd32.mk,v 1.3 2021/04/25 22:27:08 christos Exp $ 2c2961545Smrg 3c2961545Smrg# makefile fragment that tells you if you should support netbsd32 or not. 4c2961545Smrg# include this and check ${COMPAT_USE_NETBSD32} != "no". 5c2961545Smrg 6c2961545Smrg.if ${MACHINE_ARCH} == "x86_64" \ 7c2961545Smrg || ${MACHINE_CPU} == "arm" \ 8ae7f2fd3Spgoyette || ${MACHINE_CPU} == "aarch64" \ 9c2961545Smrg || ${MACHINE_ARCH} == "sparc64" \ 10*25aecf51Schristos || (${MACHINE_MIPS64} && !defined(BSD_MK_COMPAT_FILE)) 11c2961545SmrgCOMPAT_USE_NETBSD32?=yes 12c2961545Smrg.else 13c2961545SmrgCOMPAT_USE_NETBSD32?=no 14c2961545Smrg.endif 15