NetBSD/lib/libc/string/Makefile.inc

130 lines
3.7 KiB
PHP
Raw Normal View History

1993-08-01 09:37:30 +04:00
# from: @(#)Makefile.inc 5.6 (Berkeley) 3/5/91
# $NetBSD: Makefile.inc,v 1.41 1997/10/22 23:14:27 lukem Exp $
1993-03-21 12:45:37 +03:00
# string sources
1993-12-04 05:33:35 +03:00
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/string ${.CURDIR}/string
1993-03-21 12:45:37 +03: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 \
__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()
.include "${.CURDIR}/arch/${MACHINE_ARCH}/string/Makefile.inc"
1993-03-21 12:45:37 +03:00
# if no machine specific memccpy(3), use the machine independent version.
.if empty(SRCS:Mmemccpy.S)
SRCS+= memccpy.c
.endif
1993-03-21 12:45:37 +03:00
# if no machine specific memmove(3), build one out of bcopy(3).
1993-12-04 05:33:35 +03:00
.if empty(SRCS:Mmemmove.S)
1993-03-21 12:45:37 +03:00
OBJS+= memmove.o
memmove.o: bcopy.c
${COMPILE.c} -DMEMMOVE ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
memmove.po: bcopy.c
${COMPILE.c} -DMEMMOVE -p ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
memmove.so: bcopy.c
${COMPILE.c} ${PICFLAG} -DPIC -DMEMMOVE ${.ALLSRC} -o ${.TARGET}
LOBJS+= memmove.ln
memmove.ln: bcopy.c
${LINT} -DMEMMOVE ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i -o ${.TARGET} \
${.ALLSRC}
1993-03-21 12:45:37 +03:00
.endif
# if no machine specific memcpy(3), build one out of bcopy(3).
# if there is a machine specific memmove(3), we'll assume it aliases
# memcpy(3).
1993-12-04 05:33:35 +03:00
.if empty(SRCS:Mmemcpy.S)
.if empty(SRCS:Mmemmove.S)
1993-03-21 12:45:37 +03:00
OBJS+= memcpy.o
memcpy.o: bcopy.c
${COMPILE.c} -DMEMCOPY ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
memcpy.po: bcopy.c
${COMPILE.c} -DMEMCOPY -p ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
memcpy.so: bcopy.c
${COMPILE.c} ${PICFLAG} -DPIC -DMEMCOPY ${.ALLSRC} -o ${.TARGET}
LOBJS+= memcpy.ln
memcpy.ln: bcopy.c
${LINT} -DMEMCOPY ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i -o ${.TARGET} \
${.ALLSRC}
1993-03-21 12:45:37 +03:00
.endif
.endif
1993-03-21 12:45:37 +03:00
# if no machine specific strchr(3), build one out of index(3).
1993-12-04 05:33:35 +03:00
.if empty(SRCS:Mstrchr.S)
1993-03-21 12:45:37 +03:00
OBJS+= strchr.o
strchr.o: index.c
${COMPILE.c} -DSTRCHR ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
strchr.po: index.c
${COMPILE.c} -DSTRCHR -p ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
strchr.so: index.c
${COMPILE.c} ${PICFLAG} -DPIC -DSTRCHR ${.ALLSRC} -o ${.TARGET}
LOBJS+= strchr.ln
strchr.ln: index.c
${LINT} -DSTRCHR ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i -o ${.TARGET} \
${.ALLSRC}
1993-03-21 12:45:37 +03:00
.endif
# if no machine specific strrchr(3), build one out of rindex(3).
1993-12-04 05:33:35 +03:00
.if empty(SRCS:Mstrrchr.S)
1993-03-21 12:45:37 +03:00
OBJS+= strrchr.o
strrchr.o: rindex.c
${COMPILE.c} -DSTRRCHR ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
strrchr.po: rindex.c
${COMPILE.c} -DSTRRCHR -p ${.ALLSRC} -o ${.TARGET}
1993-03-21 12:45:37 +03:00
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
strrchr.so: rindex.c
${COMPILE.c} ${PICFLAG} -DPIC -DSTRRCHR ${.ALLSRC} -o ${.TARGET}
LOBJS+= strrchr.ln
strrchr.ln: rindex.c
${LINT} -DSTRRCHR ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i -o ${.TARGET} \
${.ALLSRC}
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
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