ef5c98dd45
were a workaround for limitations in bsd.man.mk that were fixed about 2 years ago.
97 lines
2.7 KiB
Makefile
97 lines
2.7 KiB
Makefile
# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
|
|
# $Id: Makefile.inc,v 1.10 1997/05/03 03:50:05 jb Exp $
|
|
|
|
.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}/../libc/${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}
|
|
@mv -f a.out ${.TARGET}
|
|
|
|
bzero.po: memset.c
|
|
${CC} -DBZERO ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
@${LD} -X -r ${.TARGET}
|
|
@mv -f a.out ${.TARGET}
|
|
.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}
|
|
@mv -f a.out ${.TARGET}
|
|
|
|
memmove.po: bcopy.c
|
|
${CC} -DMEMMOVE ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
@${LD} -X -r ${.TARGET}
|
|
@mv -f a.out ${.TARGET}
|
|
.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}
|
|
@mv -f a.out ${.TARGET}
|
|
|
|
memcpy.po: bcopy.c
|
|
${CC} -DMEMCOPY ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
@${LD} -X -r ${.TARGET}
|
|
@mv -f a.out ${.TARGET}
|
|
.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}
|
|
@mv -f a.out ${.TARGET}
|
|
|
|
strchr.po: index.c
|
|
${CC} -DSTRCHR ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
@${LD} -X -r ${.TARGET}
|
|
@mv -f a.out ${.TARGET}
|
|
.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}
|
|
@mv -f a.out ${.TARGET}
|
|
|
|
strrchr.po: rindex.c
|
|
${CC} -DSTRRCHR ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
|
|
@${LD} -X -r ${.TARGET}
|
|
@mv -f a.out ${.TARGET}
|
|
.endif
|
|
#
|
|
.if ${LIB} == "c"
|
|
MAN3+= 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 \
|
|
strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 string.3 strlen.3 \
|
|
strmode.3 strdup.3 strerror.3 strpbrk.3 strrchr.3 strsep.3 strspn.3 \
|
|
strstr.3 strtok.3 strxfrm.3 swab.3
|
|
#
|
|
MLINKS+=strcasecmp.3 strncasecmp.3
|
|
MLINKS+=strcat.3 strncat.3
|
|
MLINKS+=strcmp.3 strncmp.3
|
|
MLINKS+=strcpy.3 strncpy.3
|
|
MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3
|
|
.endif
|