Makefile.inc revision 1.7
11.7Sgarbled# $NetBSD: Makefile.inc,v 1.7 2008/04/18 05:34:04 garbled Exp $ 21.1Sthorpej 31.7Sgarbled# disable the asm versions of these because they break the explora. 41.7Sgarbled# the special rules here are to override the suffix rules which seem 51.7Sgarbled* to prefer .S files over .c 61.7Sgarbled.if ${MACHINE} == "evbppc" 71.7SgarbledSRCS+= bzero.S ffs.S strlen.S memcmp.c bcopy.c 81.7Sgarbledbcopy.o: bcopy.c 91.7Sgarbledbcopy.po: bcopy.c 101.7Sgarbledbcopy.so: bcopy.c 111.7Sgarbledmemcpy.o: memcpy.c 121.7Sgarbledmemcpy.po: memcpy.c 131.7Sgarbledmemcpy.so: memcpy.c 141.7Sgarbledmemcmp.o: memcmp.c 151.7Sgarbledmemcmp.po: memcmp.c 161.7Sgarbledmemcmp.so: memcmp.c 171.7Sgarbledmemmove.o: memmove.c 181.7Sgarbledmemmove.po: memmove.c 191.7Sgarbledmemmove.so: memmove.c 201.7Sgarbled.else 211.6SgarbledSRCS+= bzero.S ffs.S strlen.S memcmp.S bcopy.S memcpy.S memmove.S 221.7Sgarbled.endif 231.2Smjl 241.6SgarbledSRCS+= bcmp.c index.c memchr.c \ 251.3Smjl rindex.c strcat.c strcmp.c strcpy.c strcspn.c \ 261.1Sthorpej strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \ 271.1Sthorpej strspn.c strstr.c swab.c 28