Makefile.inc (a425c38dfd1a20b5cce36b5ffcbb3c7187b565cf) Makefile.inc (a41df9e30e3764662276ad301b99ecdda2ad60bc)
1# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
1# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
2# $Id: Makefile.inc,v 1.16 1999/05/18 04:48:57 peter Exp $
2# $Id: Makefile.inc,v 1.17 1999/05/19 06:32:00 bde Exp $
3
4.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/string ${.CURDIR}/../libc/string
5
6CFLAGS += -I${.CURDIR}/../libc/locale
7
8# machine-independent string sources
9MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \
10 memcpy.c memmove.c memset.c rindex.c strcasecmp.c strcat.c strchr.c \
3
4.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/string ${.CURDIR}/../libc/string
5
6CFLAGS += -I${.CURDIR}/../libc/locale
7
8# machine-independent string sources
9MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \
10 memcpy.c memmove.c memset.c rindex.c strcasecmp.c strcat.c strchr.c \
11 strcmp.c strcoll.c strcpy.c strcspn.c strdup.c strerror.c strlen.c \
12 strmode.c strncat.c strncmp.c strncpy.c strpbrk.c strrchr.c strsep.c \
13 strsignal.c strspn.c strstr.c strtok.c strxfrm.c swab.c
11 strcmp.c strcoll.c strcpy.c strcspn.c strdup.c strerror.c \
12 strlcat.c strlcpy.c strlen.c strmode.c strncat.c strncmp.c strncpy.c \
13 strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \
14 strxfrm.c swab.c
14
15# machine-dependent string sources
16.include "${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc"
17
18.if ${LIB} == "c"
19MAN3+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
20 memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \
21 strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \
15
16# machine-dependent string sources
17.include "${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc"
18
19.if ${LIB} == "c"
20MAN3+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
21 memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \
22 strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \
22 string.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 strspn.3 \
23 strstr.3 strtok.3 strxfrm.3 swab.3
23 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 \
24 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3
24
25MLINKS+=strcasecmp.3 strncasecmp.3
26MLINKS+=strcat.3 strncat.3
27MLINKS+=strcmp.3 strncmp.3
28MLINKS+=strcpy.3 strncpy.3
29MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3
25
26MLINKS+=strcasecmp.3 strncasecmp.3
27MLINKS+=strcat.3 strncat.3
28MLINKS+=strcmp.3 strncmp.3
29MLINKS+=strcpy.3 strncpy.3
30MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3
31MLINKS+=strlcpy.3 strlcat.3
30MLINKS+=strtok.3 strtok_r.3
31.endif
32MLINKS+=strtok.3 strtok_r.3
33.endif