1996-01-22 00:23:58 +00:00
|
|
|
# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
|
1997-01-14 07:20:47 +00:00
|
|
|
# $FreeBSD$
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../libc/${MACHINE}/string ${.CURDIR}/../libc/string
|
|
|
|
|
|
|
|
CFLAGS += -I${.CURDIR}/../libc/locale
|
|
|
|
# machine-independent string sources
|
|
|
|
SRCS+= memccpy.c strcasecmp.c strcoll.c strdup.c strerror.c \
|
|
|
|
strmode.c strtok.c strxfrm.c
|
|
|
|
|
|
|
|
# machine-dependent string sources
|
|
|
|
.include "${.CURDIR}/${MACHINE}/string/Makefile.inc"
|
|
|
|
|
|
|
|
# If no machine specific bzero(3), build one out of memset(3).
|
|
|
|
.if empty(SRCS:Mbzero.S)
|
|
|
|
OBJS+= bzero.o
|
|
|
|
bzero.o: memset.c
|
|
|
|
${CC} -DBZERO ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
bzero.po: memset.c
|
|
|
|
${CC} -DBZERO ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# If no machine specific memmove(3), build one out of bcopy(3).
|
|
|
|
.if empty(SRCS:Mmemmove.S)
|
|
|
|
OBJS+= memmove.o
|
|
|
|
memmove.o: bcopy.c
|
|
|
|
${CC} -DMEMMOVE ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
memmove.po: bcopy.c
|
|
|
|
${CC} -DMEMMOVE ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# If no machine specific memcpy(3), build one out of bcopy(3).
|
|
|
|
.if empty(SRCS:Mmemmove.S)
|
|
|
|
OBJS+= memcpy.o
|
|
|
|
memcpy.o: bcopy.c
|
|
|
|
${CC} -DMEMCOPY ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
memcpy.po: bcopy.c
|
|
|
|
${CC} -DMEMCOPY ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# If no machine specific strchr(3), build one out of index(3).
|
|
|
|
.if empty(SRCS:Mstrchr.S)
|
|
|
|
OBJS+= strchr.o
|
|
|
|
strchr.o: index.c
|
|
|
|
${CC} -DSTRCHR ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
strchr.po: index.c
|
|
|
|
${CC} -DSTRCHR ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# If no machine specific strrchr(3), build one out of rindex(3).
|
|
|
|
.if empty(SRCS:Mstrrchr.S)
|
|
|
|
OBJS+= strrchr.o
|
|
|
|
strrchr.o: rindex.c
|
|
|
|
${CC} -DSTRRCHR ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -x -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
strrchr.po: rindex.c
|
|
|
|
${CC} -DSTRRCHR ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
|
|
@${LD} -X -r ${.TARGET}
|
1996-05-07 23:19:49 +00:00
|
|
|
@mv -f a.out ${.TARGET}
|
1996-01-22 00:23:58 +00:00
|
|
|
.endif
|