netbsd32.mk revision 1.2
11.2Spgoyette# $NetBSD: netbsd32.mk,v 1.2 2020/03/06 04:54:08 pgoyette 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.1Smrg || (!empty(MACHINE_ARCH:Mmips64*) && !defined(BSD_MK_COMPAT_FILE)) 111.1SmrgCOMPAT_USE_NETBSD32?=yes 121.1Smrg.else 131.1SmrgCOMPAT_USE_NETBSD32?=no 141.1Smrg.endif 15