1 1.43 perry # from: @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 2 1.47 kleink # $NetBSD: Makefile.inc,v 1.47 1998/09/14 21:34:43 kleink Exp $ 3 1.1 cgd 4 1.1 cgd # string sources 5 1.15 cgd .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/string ${.CURDIR}/string 6 1.1 cgd 7 1.36 matthias SRCS+= bm.c strcasecmp.c strcoll.c strdup.c strerror.c \ 8 1.39 mrg strmode.c strsignal.c strtok.c strtok_r.c strxfrm.c \ 9 1.30 jtc __strerror.c __strsignal.c 10 1.1 cgd 11 1.34 mycroft # machine-dependent net sources 12 1.34 mycroft # m-d Makefile.inc must include sources for: 13 1.34 mycroft # bcmp() bcopy() bzero() ffs() index() memchr() memcmp() memset() 14 1.34 mycroft # rindex() strcat() strcmp() strcpy() strcspn() strlen() 15 1.34 mycroft # strncat() strncmp() strncpy() strpbrk() strsep() 16 1.34 mycroft # strspn() strstr() swav() 17 1.35 mycroft # m-d Makefile.inc may include sources for: 18 1.34 mycroft # memcpy() memmove() strchr() strrchr() 19 1.34 mycroft 20 1.34 mycroft .include "${.CURDIR}/arch/${MACHINE_ARCH}/string/Makefile.inc" 21 1.36 matthias 22 1.45 perry # if no m-d versions of memccpy(), memcpy(), memmove(), strchr(), or strrchr() 23 1.45 perry # then use the machine independent versions. 24 1.45 perry # 25 1.36 matthias .if empty(SRCS:Mmemccpy.S) 26 1.36 matthias SRCS+= memccpy.c 27 1.36 matthias .endif 28 1.45 perry .if empty(SRCS:Mmemcpy.S) 29 1.45 perry SRCS+= memcpy.c 30 1.1 cgd .endif 31 1.15 cgd .if empty(SRCS:Mmemmove.S) 32 1.45 perry SRCS+= memmove.c 33 1.1 cgd .endif 34 1.15 cgd .if empty(SRCS:Mstrchr.S) 35 1.45 perry SRCS+= strchr.c 36 1.1 cgd .endif 37 1.15 cgd .if empty(SRCS:Mstrrchr.S) 38 1.45 perry SRCS+= strrchr.c 39 1.1 cgd .endif 40 1.1 cgd 41 1.32 cgd MAN+= bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ 42 1.32 cgd memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \ 43 1.39 mrg strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strerror.3 \ 44 1.32 cgd string.3 strlen.3 strmode.3 strdup.3 strpbrk.3 strrchr.3 strsep.3 \ 45 1.32 cgd strsignal.3 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 46 1.1 cgd 47 1.27 cgd MLINKS+=bm.3 bm_comp.3 bm.3 bm_exec.3 bm.3 bm_free.3 48 1.1 cgd MLINKS+=strcasecmp.3 strncasecmp.3 49 1.1 cgd MLINKS+=strcat.3 strncat.3 50 1.1 cgd MLINKS+=strcmp.3 strncmp.3 51 1.1 cgd MLINKS+=strcpy.3 strncpy.3 52 1.47 kleink MLINKS+=strtok.3 strtok_r.3 53