11.9Smatt# $NetBSD: Makefile.inc,v 1.9 2013/08/21 03:05:35 matt Exp $ 21.1Sbjh21 31.9SmattSRCS.string+= memcmp.S memcpy.S memmove.S memset.S 41.9SmattSRCS.string+= ffs.S 51.9SmattSRCS.string+= bcopy.S bzero.S 61.9SmattSRCS.string+= strcat.S 71.9SmattSRCS.string+= strcpy.S strlcpy.S strncpy.S 81.9Smatt.if empty(LIBC_MACHINE_ARCH:M*v7*) 91.9SmattSRCS.string+= strcmp.S strncmp.S 101.9SmattSRCS.string+= strlen.S strnlen.S 111.9SmattSRCS.string+= strchr.S strrchr.S 121.9Smatt.endif 131.1Sbjh21 141.9Smatt.for f in ${SRCS.string} 151.9SmattCPUFLAGS.${f}+= -marm 161.9Smatt.for s in o po pico ln d 171.9Smatt${f:.S=.${s}}: ${ARCHDIR}/string/Makefile.inc 181.9Smatt.endfor 191.9Smatt.endfor 201.9Smatt 211.9Smatt.if !empty(LIBC_MACHINE_ARCH:M*v7*) 221.9SmattSRCS.string+= strcmp.S strncmp.S 231.9SmattSRCS.string+= strlen.S strnlen.S 241.9SmattSRCS.string+= strchr.S strrchr.S 251.9Smatt.endif 261.9Smatt 271.9SmattSRCS.string+= strlcat.S 281.9Smatt 291.9SmattSRCS+= ${SRCS.string} 30