1994-05-27 05:00:24 +00:00
|
|
|
# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1998-02-20 08:23:55 +00:00
|
|
|
.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/string ${.CURDIR}/../libc/string
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1997-05-03 03:50:06 +00:00
|
|
|
CFLAGS += -I${.CURDIR}/../libc/locale
|
1997-10-16 13:46:50 +00:00
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
# machine-independent string sources
|
1997-10-16 13:46:50 +00:00
|
|
|
MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \
|
|
|
|
memcpy.c memmove.c memset.c rindex.c strcasecmp.c strcat.c strchr.c \
|
1999-08-10 05:21:31 +00:00
|
|
|
strcmp.c strcoll.c strcpy.c strcspn.c strdup.c strerror.c \
|
|
|
|
strlcat.c strlcpy.c strlen.c strmode.c strncat.c strncmp.c strncpy.c \
|
|
|
|
strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \
|
|
|
|
strxfrm.c swab.c
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
# machine-dependent string sources
|
1998-02-20 08:23:55 +00:00
|
|
|
.include "${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc"
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1997-05-03 03:50:06 +00:00
|
|
|
.if ${LIB} == "c"
|
2001-03-27 17:27:19 +00:00
|
|
|
MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
|
1997-10-15 16:16:41 +00:00
|
|
|
memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \
|
1997-10-21 08:41:15 +00:00
|
|
|
strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \
|
1999-08-10 05:21:31 +00:00
|
|
|
string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 \
|
|
|
|
strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3
|
1997-10-21 08:41:15 +00:00
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
MLINKS+=strcasecmp.3 strncasecmp.3
|
|
|
|
MLINKS+=strcat.3 strncat.3
|
|
|
|
MLINKS+=strcmp.3 strncmp.3
|
|
|
|
MLINKS+=strcpy.3 strncpy.3
|
1996-02-12 04:57:03 +00:00
|
|
|
MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3
|
1999-08-10 05:21:31 +00:00
|
|
|
MLINKS+=strlcpy.3 strlcat.3
|
1999-01-19 23:45:48 +00:00
|
|
|
MLINKS+=strtok.3 strtok_r.3
|
1997-05-03 03:50:06 +00:00
|
|
|
.endif
|