X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/7c78c5292a74d7cc20fc03e02fbfc976e072f928..6990d062918770ee2431fb3310826c5aefbffccd:/i386/string/Makefile.inc diff --git a/i386/string/Makefile.inc b/i386/string/Makefile.inc index bfccaae..36d022d 100644 --- a/i386/string/Makefile.inc +++ b/i386/string/Makefile.inc @@ -5,15 +5,40 @@ # # .PATH: ${.CURDIR}/i386/string -MDSRCS += bcopy.s \ - bzero.s \ - memcpy.s \ - memmove.s \ +MDSRCS += \ + bcopy.c \ + bcopy_scalar.s \ + bcopy_sse2.s \ + bcopy_sse3x.s \ + bcopy_sse42.s \ + bzero.c \ + bzero_scalar.s \ + bzero_sse2.s \ + bzero_sse42.s \ + __bzero.s \ + longcopy_sse3x.s \ + memset_pattern_sse2.s \ + ffs.s \ + memcpy.c \ + memmove.c \ + strlcat.s \ + strlcpy.s \ strlen.s \ strcpy.s \ strcmp.s \ strncpy.s \ strncmp.s \ memcmp.s \ - bcmp.s \ memset.s + +SUPPRESSSRCS += bcmp.c + +DYLDSRCS += \ + __bzero.s \ + bcopy_scalar.s \ + bzero_scalar.s \ + ffs.s \ + memcmp.s \ + memset_pattern_sse2.s \ + strcmp.s \ + strlen.s