Makefile.inc (25faff346c8453b8248f99c7cff71708262faa37) | Makefile.inc (2c0959ae6be382e3d2eea4999f537294b9eb3da9) |
---|---|
1# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 3 | 1# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 3 |
4.PATH: ${.CURDIR}/${MACHINE_CPUARCH}/string ${.CURDIR}/string | 4.PATH: ${.CURDIR}/${LIBC_ARCH}/string ${.CURDIR}/string |
5 6CFLAGS+= -I${.CURDIR}/locale 7 8# machine-independent string sources 9MISRCS+=bcmp.c bcopy.c bzero.c ffs.c ffsl.c ffsll.c fls.c flsl.c flsll.c \ 10 index.c memccpy.c memchr.c memrchr.c memcmp.c \ 11 memcpy.c memmem.c memmove.c memset.c rindex.c \ 12 stpcpy.c stpncpy.c strcasecmp.c \ --- 8 unchanged lines hidden (view full) --- 21 wcsrchr.c wcsspn.c wcsstr.c wcstok.c wcswidth.c wcsxfrm.c wmemchr.c \ 22 wmemcmp.c \ 23 wmemcpy.c wmemmove.c wmemset.c 24 25SYM_MAPS+= ${.CURDIR}/string/Symbol.map 26 27 28# machine-dependent string sources | 5 6CFLAGS+= -I${.CURDIR}/locale 7 8# machine-independent string sources 9MISRCS+=bcmp.c bcopy.c bzero.c ffs.c ffsl.c ffsll.c fls.c flsl.c flsll.c \ 10 index.c memccpy.c memchr.c memrchr.c memcmp.c \ 11 memcpy.c memmem.c memmove.c memset.c rindex.c \ 12 stpcpy.c stpncpy.c strcasecmp.c \ --- 8 unchanged lines hidden (view full) --- 21 wcsrchr.c wcsspn.c wcsstr.c wcstok.c wcswidth.c wcsxfrm.c wmemchr.c \ 22 wmemcmp.c \ 23 wmemcpy.c wmemmove.c wmemset.c 24 25SYM_MAPS+= ${.CURDIR}/string/Symbol.map 26 27 28# machine-dependent string sources |
29.if exists(${.CURDIR}/${MACHINE_CPUARCH}/string/Makefile.inc) 30.include "${.CURDIR}/${MACHINE_CPUARCH}/string/Makefile.inc" 31.endif | 29.sinclude "${.CURDIR}/${LIBC_ARCH}/string/Makefile.inc" |
32 33MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ 34 memcmp.3 memcpy.3 memmem.3 memmove.3 memset.3 strcasecmp.3 strcat.3 \ 35 strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \ 36 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strsep.3 \ 37 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 wcscoll.3 wcstok.3 \ 38 wcswidth.3 wcsxfrm.3 wmemchr.3 39 --- 49 unchanged lines hidden --- | 30 31MAN+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ 32 memcmp.3 memcpy.3 memmem.3 memmove.3 memset.3 strcasecmp.3 strcat.3 \ 33 strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \ 34 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strsep.3 \ 35 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 wcscoll.3 wcstok.3 \ 36 wcswidth.3 wcsxfrm.3 wmemchr.3 37 --- 49 unchanged lines hidden --- |