1998-01-31 02:37:40 +03:00
|
|
|
# from: @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
|
1999-02-24 18:05:20 +03:00
|
|
|
# $NetBSD: Makefile.inc,v 1.48 1999/02/24 15:05:21 drochner Exp $
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
# string sources
|
1999-02-24 18:05:20 +03:00
|
|
|
.PATH: ${ARCHDIR}/string ${.CURDIR}/string
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-09-24 13:14:18 +04:00
|
|
|
SRCS+= bm.c strcasecmp.c strcoll.c strdup.c strerror.c \
|
1997-04-23 05:17:59 +04:00
|
|
|
strmode.c strsignal.c strtok.c strtok_r.c strxfrm.c \
|
1994-09-03 09:07:49 +04:00
|
|
|
__strerror.c __strsignal.c
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-03-20 17:45:27 +03:00
|
|
|
# machine-dependent net sources
|
|
|
|
# m-d Makefile.inc must include sources for:
|
|
|
|
# bcmp() bcopy() bzero() ffs() index() memchr() memcmp() memset()
|
|
|
|
# rindex() strcat() strcmp() strcpy() strcspn() strlen()
|
|
|
|
# strncat() strncmp() strncpy() strpbrk() strsep()
|
|
|
|
# strspn() strstr() swav()
|
1995-03-20 17:47:39 +03:00
|
|
|
# m-d Makefile.inc may include sources for:
|
1995-03-20 17:45:27 +03:00
|
|
|
# memcpy() memmove() strchr() strrchr()
|
|
|
|
|
1999-02-24 18:05:20 +03:00
|
|
|
.include "${ARCHDIR}/string/Makefile.inc"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-08-04 08:48:16 +04:00
|
|
|
# if no m-d versions of memccpy(), memcpy(), memmove(), strchr(), or strrchr()
|
|
|
|
# then use the machine independent versions.
|
|
|
|
#
|
1996-09-24 13:14:18 +04:00
|
|
|
.if empty(SRCS:Mmemccpy.S)
|
|
|
|
SRCS+= memccpy.c
|
|
|
|
.endif
|
1993-12-04 05:33:35 +03:00
|
|
|
.if empty(SRCS:Mmemcpy.S)
|
1998-08-04 08:48:16 +04:00
|
|
|
SRCS+= memcpy.c
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
1998-08-04 08:48:16 +04:00
|
|
|
.if empty(SRCS:Mmemmove.S)
|
|
|
|
SRCS+= memmove.c
|
1993-06-16 22:38:38 +04:00
|
|
|
.endif
|
1993-12-04 05:33:35 +03:00
|
|
|
.if empty(SRCS:Mstrchr.S)
|
1998-08-04 08:48:16 +04:00
|
|
|
SRCS+= strchr.c
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
1993-12-04 05:33:35 +03:00
|
|
|
.if empty(SRCS:Mstrrchr.S)
|
1998-08-04 08:48:16 +04:00
|
|
|
SRCS+= strrchr.c
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
1994-12-22 12:57:51 +03:00
|
|
|
MAN+= bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \
|
|
|
|
memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \
|
1997-04-23 05:17:59 +04:00
|
|
|
strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strerror.3 \
|
1994-12-22 12:57:51 +03:00
|
|
|
string.3 strlen.3 strmode.3 strdup.3 strpbrk.3 strrchr.3 strsep.3 \
|
|
|
|
strsignal.3 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-06-22 04:15:22 +04:00
|
|
|
MLINKS+=bm.3 bm_comp.3 bm.3 bm_exec.3 bm.3 bm_free.3
|
1993-03-21 12:45:37 +03:00
|
|
|
MLINKS+=strcasecmp.3 strncasecmp.3
|
|
|
|
MLINKS+=strcat.3 strncat.3
|
|
|
|
MLINKS+=strcmp.3 strncmp.3
|
|
|
|
MLINKS+=strcpy.3 strncpy.3
|
1998-09-15 01:34:43 +04:00
|
|
|
MLINKS+=strtok.3 strtok_r.3
|