Makefile.inc revision 1.13
1# $NetBSD: Makefile.inc,v 1.13 2010/03/14 00:26:10 mrg Exp $ 2 3SRCS+= bzero.S ffs.S strlen.S 4NO_SRCS+= memset.S 5 6# disable the asm versions of these because they break the explora. 7# the special rules here are to override the suffix rules which seem 8# to prefer .S files over .c 9.if ${MACHINE} == "evbppc" 10bcopy.o: bcopy.c 11bcopy.po: bcopy.c 12bcopy.pico: bcopy.c 13memcpy.o: memcpy.c 14memcpy.po: memcpy.c 15memcpy.pico: memcpy.c 16memcmp.o: memcmp.c 17memcmp.po: memcmp.c 18memcmp.pico: memcmp.c 19memmove.o: memmove.c 20memmove.po: memmove.c 21memmove.pico: memmove.c 22.else 23SRCS+= memcmp.S bcopy.S memcpy.S memmove.S 24.endif 25