X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/34e8f8296870d0e8695f90e1a54240a589d41312..6990d062918770ee2431fb3310826c5aefbffccd:/i386/string/Makefile.inc?ds=inline diff --git a/i386/string/Makefile.inc b/i386/string/Makefile.inc index 54d64df..36d022d 100644 --- a/i386/string/Makefile.inc +++ b/i386/string/Makefile.inc @@ -5,11 +5,22 @@ # # .PATH: ${.CURDIR}/i386/string -MDSRCS += bcopy.s \ - bzero.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.s \ - memmove.s \ + memcpy.c \ + memmove.c \ strlcat.s \ strlcpy.s \ strlen.s \ @@ -21,3 +32,13 @@ MDSRCS += bcopy.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