X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/8e029c653e0567df7ce6933dde41f5830dbbbcda..1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58:/x86_64/string/Makefile.inc diff --git a/x86_64/string/Makefile.inc b/x86_64/string/Makefile.inc index 80c0b9d..a3c985a 100644 --- a/x86_64/string/Makefile.inc +++ b/x86_64/string/Makefile.inc @@ -6,15 +6,35 @@ # .PATH: ${.CURDIR}/x86_64/string -MDSRCS += bcopy.s \ - bzero.s \ - memcpy.s \ - memmove.s \ +MDSRCS += \ + bcopy.c \ + bcopy_sse3x.s \ + bcopy_sse42.s \ + bzero.c \ + bzero_sse2.s \ + bzero_sse42.s \ + __bzero.s \ + longcopy_sse3x.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 + memset.s \ + ffs.s + +SUPPRESSSRCS += bcmp.c + +DYLDSRCS += \ + __bzero.s \ + bcopy_sse3x.s \ + bzero_sse2.s \ + ffs.s \ + longcopy_sse3x.s \ + strcmp.s \ + strlen.s