11.2Smatt# $NetBSD: features.mk,v 1.2 2015/06/07 15:05:34 matt Exp $ 21.1Smatt 31.1Smatt.ifnmake obj 41.1SmattTESTFILE=${NETBSDSRCDIR}/common/lib/libc/arch/arm/features.c 51.2SmattFEAT_EABI!=if ${COMPILE.c} ${COPTS} -fsyntax-only -DEABI_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 61.2SmattFEAT_LDREX!=if ${COMPILE.c} ${COPTS} -fsyntax-only -DLDREX_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 71.2SmattFEAT_LDRD!=if ${COMPILE.c} ${COPTS} -fsyntax-only -DLDRD_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 81.2SmattFEAT_THUMB2!=if ${COMPILE.c} ${COPTS} -fsyntax-only -DTHUMB2_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 91.1Smatt.endif 10