]> git.saurik.com Git - apple/libc.git/blame - string/Makefile.inc
Libc-262.tar.gz
[apple/libc.git] / string / Makefile.inc
CommitLineData
5b2abdfb
A
1# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
2# $FreeBSD: src/lib/libc/string/Makefile.inc,v 1.25 2001/10/10 02:17:35 ache Exp $
3
4.PATH: ${.CURDIR}/${MACHINE_ARCH}/string ${.CURDIR}/string
5
6CFLAGS+= -I${.CURDIR}/locale
7
8# machine-independent string sources
9MISRCS+=index.c rindex.c strcspn.c strpbrk.c strxfrm.c \
10 memccpy.c rindix.c strdup.c strsep.c swab.c \
11 memchr.c strcasecmp.c strerror.c strspn.c \
12 memcmp.c strchr.c strftime.c strstr.c \
13 memset.c strcoll.c strmode.c strtok.c \
14 strlcat.c strlcpy.c
15
16# machine-dependent string sources
17.if exists(${.CURDIR}/${MACHINE_ARCH}/string/Makefile.inc)
18.include "${.CURDIR}/${MACHINE_ARCH}/string/Makefile.inc"
19.endif
20
21.if ${LIB} == "c"
22MAN3+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
23 memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \
24 strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \
25 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 \
26 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 wmemchr.3
27
28MLINKS+=strcasecmp.3 strncasecmp.3
29MLINKS+=strcat.3 strncat.3
30MLINKS+=strcmp.3 strncmp.3
31MLINKS+=strcpy.3 strncpy.3
32MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3
33MLINKS+=strlcpy.3 strlcat.3
34MLINKS+=strtok.3 strtok_r.3
35MLINKS+=strstr.3 strcasestr.3
36MLINKS+=strstr.3 strnstr.3
37MLINKS+=wmemchr.3 wmemcmp.3 wmemchr.3 wmemcpy.3 \
38 wmemchr.3 wmemmove.3 wmemchr.3 wmemset.3 \
39 wmemchr.3 wcscat.3 wmemchr.3 wcschr.3 \
40 wmemchr.3 wcscmp.3 wmemchr.3 wcscpy.3 \
41 wmemchr.3 wcscspn.3 wmemchr.3 wcslcat.3 \
42 wmemchr.3 wcslcpy.3 wmemchr.3 wcslen.3 \
43 wmemchr.3 wcsncat.3 wmemchr.3 wcsncmp.3 \
44 wmemchr.3 wcsncpy.3 wmemchr.3 wcspbrk.3 \
45 wmemchr.3 wcsrchr.3 wmemchr.3 wcsspn.3 \
46 wmemchr.3 wcsstr.3
47.endif