158f0484fSRodney W. Grimes# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 2a41df9e3SWarner Losh# $Id: Makefile.inc,v 1.17 1999/05/19 06:32:00 bde Exp $ 358f0484fSRodney W. Grimes 40107877eSJohn Birrell.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/string ${.CURDIR}/../libc/string 558f0484fSRodney W. Grimes 687003932SJohn BirrellCFLAGS += -I${.CURDIR}/../libc/locale 7ae80efa5SBruce Evans 858f0484fSRodney W. Grimes# machine-independent string sources 9ae80efa5SBruce EvansMISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \ 10ae80efa5SBruce Evans memcpy.c memmove.c memset.c rindex.c strcasecmp.c strcat.c strchr.c \ 11a41df9e3SWarner Losh strcmp.c strcoll.c strcpy.c strcspn.c strdup.c strerror.c \ 12a41df9e3SWarner Losh strlcat.c strlcpy.c strlen.c strmode.c strncat.c strncmp.c strncpy.c \ 13a41df9e3SWarner Losh strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \ 14a41df9e3SWarner Losh strxfrm.c swab.c 1558f0484fSRodney W. Grimes 1658f0484fSRodney W. Grimes# machine-dependent string sources 170107877eSJohn Birrell.include "${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc" 1858f0484fSRodney W. Grimes 1987003932SJohn Birrell.if ${LIB} == "c" 202bc3b4d7SBruce EvansMAN3+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ 212bc3b4d7SBruce Evans memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \ 22b966cc23SBruce Evans strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \ 23a41df9e3SWarner Losh string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 \ 24a41df9e3SWarner Losh strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 25b966cc23SBruce Evans 2658f0484fSRodney W. GrimesMLINKS+=strcasecmp.3 strncasecmp.3 2758f0484fSRodney W. GrimesMLINKS+=strcat.3 strncat.3 2858f0484fSRodney W. GrimesMLINKS+=strcmp.3 strncmp.3 2958f0484fSRodney W. GrimesMLINKS+=strcpy.3 strncpy.3 30bcff8e2aSMike PritchardMLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3 31a41df9e3SWarner LoshMLINKS+=strlcpy.3 strlcat.3 3283068b62SJohn PolstraMLINKS+=strtok.3 strtok_r.3 3387003932SJohn Birrell.endif 34