Home | History | Annotate | Line # | Download | only in string
Makefile.inc revision 1.56
      1  1.43     perry #	from: @(#)Makefile.inc	8.1 (Berkeley) 6/4/93
      2  1.56     perry #	$NetBSD: Makefile.inc,v 1.56 2005/03/14 03:13:53 perry Exp $
      3   1.1       cgd 
      4   1.1       cgd # string sources
      5  1.48  drochner .PATH: ${ARCHDIR}/string ${.CURDIR}/string
      6   1.1       cgd 
      7  1.54  junyoung SRCS+=	bm.c strcasecmp.c strcasestr.c strcoll.c strdup.c strerror.c \
      8  1.54  junyoung 	strlcat.c strlcpy.c strmode.c strsignal.c strtok.c strtok_r.c \
      9  1.54  junyoung 	strxfrm.c __strerror.c __strsignal.c
     10  1.51    itojun 
     11  1.51    itojun # wide char
     12  1.51    itojun SRCS+=	wcscat.c wcschr.c wcscmp.c wcscpy.c wcscspn.c wcslcat.c wcslcpy.c \
     13  1.50    itojun 	wcslen.c wcsncat.c \
     14  1.53  tshiozak 	wcsncmp.c wcsncpy.c wcspbrk.c wcsrchr.c wcsspn.c wcsstr.c wcstok.c \
     15  1.53  tshiozak 	wcswcs.c wcswidth.c \
     16  1.53  tshiozak 	wmemchr.c wmemcmp.c wmemcpy.c wmemmove.c wmemset.c
     17  1.52    kleink 
     18  1.52    kleink # namespace protection wrappers
     19  1.52    kleink SRCS+=	_strlcat.c _strlcpy.c
     20   1.1       cgd 
     21  1.34   mycroft # machine-dependent net sources
     22  1.34   mycroft # m-d Makefile.inc must include sources for:
     23  1.34   mycroft #	bcmp() bcopy() bzero() ffs() index() memchr() memcmp() memset()
     24  1.34   mycroft #	rindex() strcat() strcmp() strcpy() strcspn() strlen()
     25  1.34   mycroft #	strncat() strncmp() strncpy() strpbrk() strsep()
     26  1.34   mycroft #	strspn() strstr() swav()
     27  1.35   mycroft # m-d Makefile.inc may include sources for:
     28  1.55     perry #	memcpy() memmem() memmove() strchr() strrchr()
     29  1.34   mycroft 
     30  1.48  drochner .include "${ARCHDIR}/string/Makefile.inc"
     31  1.36  matthias 
     32  1.45     perry # if no m-d versions of memccpy(), memcpy(), memmove(), strchr(), or strrchr()
     33  1.45     perry # then use the machine independent versions.
     34  1.45     perry #
     35  1.36  matthias .if empty(SRCS:Mmemccpy.S)
     36  1.36  matthias SRCS+=	memccpy.c
     37  1.36  matthias .endif
     38  1.45     perry .if empty(SRCS:Mmemcpy.S)
     39  1.45     perry SRCS+=	memcpy.c
     40   1.1       cgd .endif
     41  1.55     perry .if empty(SRCS:Mmemmem.S)
     42  1.56     perry SRCS+=	memmem.c
     43  1.55     perry .endif
     44  1.15       cgd .if empty(SRCS:Mmemmove.S)
     45  1.45     perry SRCS+=	memmove.c
     46   1.1       cgd .endif
     47  1.15       cgd .if empty(SRCS:Mstrchr.S)
     48  1.45     perry SRCS+=	strchr.c
     49   1.1       cgd .endif
     50  1.15       cgd .if empty(SRCS:Mstrrchr.S)
     51  1.45     perry SRCS+=	strrchr.c
     52   1.1       cgd .endif
     53   1.1       cgd 
     54  1.55     perry MAN+=	bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 \
     55  1.55     perry 	memccpy.3 memchr.3 memcmp.3 memcpy.3 memmem.3 memmove.3	memset.3 \
     56  1.55     perry 	rindex.3 strcasecmp.3 strcat.3 strchr.3 strcmp.3 strcoll.3 \
     57  1.55     perry 	strcpy.3 strcspn.3 strdup.3 strerror.3 string.3 strlcpy.3 \
     58  1.55     perry 	strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 \
     59  1.55     perry 	strsignal.3 strspn.3 strstr.3 strtok.3 strxfrm.3 \
     60  1.55     perry 	swab.3 wcstok.3 wmemchr.3
     61   1.1       cgd 
     62  1.27       cgd MLINKS+=bm.3 bm_comp.3 bm.3 bm_exec.3 bm.3 bm_free.3
     63   1.1       cgd MLINKS+=strcasecmp.3 strncasecmp.3
     64   1.1       cgd MLINKS+=strcat.3 strncat.3
     65   1.1       cgd MLINKS+=strcmp.3 strncmp.3
     66   1.1       cgd MLINKS+=strcpy.3 strncpy.3
     67  1.49     lukem MLINKS+=strlcpy.3 strlcat.3
     68  1.54  junyoung MLINKS+=strstr.3 strcasestr.3
     69  1.47    kleink MLINKS+=strtok.3 strtok_r.3
     70  1.50    itojun MLINKS+=wmemchr.3 wmemcmp.3 wmemchr.3 wmemcpy.3 \
     71  1.50    itojun 	wmemchr.3 wmemmove.3 wmemchr.3 wmemset.3 \
     72  1.50    itojun 	wmemchr.3 wcscat.3 wmemchr.3 wcschr.3 \
     73  1.50    itojun 	wmemchr.3 wcscmp.3 wmemchr.3 wcscpy.3 \
     74  1.50    itojun 	wmemchr.3 wcscspn.3 wmemchr.3 wcslcat.3 \
     75  1.50    itojun 	wmemchr.3 wcslcpy.3 wmemchr.3 wcslen.3 \
     76  1.50    itojun 	wmemchr.3 wcsncat.3 wmemchr.3 wcsncmp.3 \
     77  1.50    itojun 	wmemchr.3 wcsncpy.3 wmemchr.3 wcspbrk.3 \
     78  1.50    itojun 	wmemchr.3 wcsrchr.3 wmemchr.3 wcsspn.3 \
     79  1.50    itojun 	wmemchr.3 wcsstr.3
     80