Makefile.inc revision 1.12
1#	$NetBSD: Makefile.inc,v 1.12 2009/08/11 17:30:43 dsl 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.so: bcopy.c
13memcpy.o: memcpy.c
14memcpy.po: memcpy.c
15memcpy.so: memcpy.c
16memcmp.o: memcmp.c
17memcmp.po: memcmp.c
18memcmp.so: memcmp.c
19memmove.o: memmove.c
20memmove.po: memmove.c
21memmove.so: memmove.c
22.else
23SRCS+=	memcmp.S bcopy.S memcpy.S memmove.S
24.endif
25