1 1.43 perry # from: @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 2 1.45 perry # $NetBSD: Makefile.inc,v 1.45 1998/08/04 04:48:16 perry 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.44 perry 7 1.44 perry # XXX Warning: the merge of this makefile to deal with the new 8 1.44 perry # memset/bzero stuff isn't finished yet. In particular, bzero is still 9 1.44 perry # being built on its own but *should* be built from memset.c 10 1.1 cgd 11 1.36 matthias SRCS+= bm.c strcasecmp.c strcoll.c strdup.c strerror.c \ 12 1.39 mrg strmode.c strsignal.c strtok.c strtok_r.c strxfrm.c \ 13 1.30 jtc __strerror.c __strsignal.c 14 1.1 cgd 15 1.34 mycroft # machine-dependent net sources 16 1.34 mycroft # m-d Makefile.inc must include sources for: 17 1.34 mycroft # bcmp() bcopy() bzero() ffs() index() memchr() memcmp() memset() 18 1.34 mycroft # rindex() strcat() strcmp() strcpy() strcspn() strlen() 19 1.34 mycroft # strncat() strncmp() strncpy() strpbrk() strsep() 20 1.34 mycroft # strspn() strstr() swav() 21 1.35 mycroft # m-d Makefile.inc may include sources for: 22 1.34 mycroft # memcpy() memmove() strchr() strrchr() 23 1.34 mycroft 24 1.34 mycroft .include "${.CURDIR}/arch/${MACHINE_ARCH}/string/Makefile.inc" 25 1.36 matthias 26 1.45 perry # if no m-d versions of memccpy(), memcpy(), memmove(), strchr(), or strrchr() 27 1.45 perry # then use the machine independent versions. 28 1.45 perry # 29 1.36 matthias .if empty(SRCS:Mmemccpy.S) 30 1.36 matthias SRCS+= memccpy.c 31 1.36 matthias .endif 32 1.45 perry .if empty(SRCS:Mmemcpy.S) 33 1.45 perry SRCS+= memcpy.c 34 1.1 cgd .endif 35 1.15 cgd .if empty(SRCS:Mmemmove.S) 36 1.45 perry SRCS+= memmove.c 37 1.1 cgd .endif 38 1.15 cgd .if empty(SRCS:Mstrchr.S) 39 1.45 perry SRCS+= strchr.c 40 1.1 cgd .endif 41 1.15 cgd .if empty(SRCS:Mstrrchr.S) 42 1.45 perry SRCS+= strrchr.c 43 1.1 cgd .endif 44 1.1 cgd 45 1.32 cgd MAN+= bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ 46 1.32 cgd memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \ 47 1.39 mrg strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strerror.3 \ 48 1.32 cgd string.3 strlen.3 strmode.3 strdup.3 strpbrk.3 strrchr.3 strsep.3 \ 49 1.32 cgd strsignal.3 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 50 1.1 cgd 51 1.27 cgd MLINKS+=bm.3 bm_comp.3 bm.3 bm_exec.3 bm.3 bm_free.3 52 1.1 cgd MLINKS+=strcasecmp.3 strncasecmp.3 53 1.1 cgd MLINKS+=strcat.3 strncat.3 54 1.1 cgd MLINKS+=strcmp.3 strncmp.3 55 1.1 cgd MLINKS+=strcpy.3 strncpy.3 56