features.mk revision 1.1
11.1Smatt# $NetBSD: features.mk,v 1.1 2014/02/27 09:37:02 matt Exp $ 21.1Smatt 31.1Smatt.ifnmake obj 41.1SmattTESTFILE=${NETBSDSRCDIR}/common/lib/libc/arch/arm/features.c 51.1SmattFEAT_EABI!=if ${COMPILE.c} -fsyntax-only -DEABI_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 61.1SmattFEAT_LDREX!=if ${COMPILE.c} -fsyntax-only -DLDREX_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 71.1SmattFEAT_LDRD!=if ${COMPILE.c} -fsyntax-only -DLDRD_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 81.1SmattFEAT_THUMB2!=if ${COMPILE.c} -fsyntax-only -DTHUMB2_TEST ${TESTFILE} >/dev/null 2>/dev/null; then echo yes; else echo no; fi 91.1Smatt.endif 10