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