NetBSD/lib/libc/string/Makefile.inc

111 lines
3.5 KiB
PHP
Raw Normal View History

1993-08-01 09:37:30 +04:00
# from: @(#)Makefile.inc 5.6 (Berkeley) 3/5/91
# $Id: Makefile.inc,v 1.14 1993/10/18 20:24:41 cgd Exp $
1993-03-21 12:45:37 +03:00
# string sources
.PATH: ${.CURDIR}/arch/${MACHINE}/string ${.CURDIR}/string
1993-03-21 12:45:37 +03:00
SRCS+= memccpy.c strcasecmp.c strcoll.c strdup.c strerror.c \
strftime.c strmode.c strtok.c strxfrm.c
1993-03-21 12:45:37 +03:00
.if (${MACHINE} == "hp300")
SRCS+= bcmp.s bcopy.s bzero.s ffs.s index.s memchr.c memcmp.c memset.c \
rindex.s strcat.c strcmp.s strcpy.s strcspn.c strlen.s \
strncat.c strncmp.s strncpy.s strpbrk.c strsep.c \
strspn.c strstr.c swab.c
1993-03-21 12:45:37 +03:00
.elif (${MACHINE} == "i386")
SRCS+= bcmp.s bcopy.s bzero.s ffs.s index.s memchr.s memcmp.s memset.s \
rindex.s strcat.s strcmp.s strcpy.s strcspn.c strlen.s \
strncat.c strncmp.s strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.s
SRCS+= memmove.s strchr.s strrchr.s
1993-09-17 23:22:50 +04:00
.elif (${MACHINE} == "pc532")
SRCS+= bcmp.c bcopy.c bzero.c ffs.c index.c memchr.c memcmp.c memset.c \
rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.c \
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
strspn.c strstr.c swab.c
1993-09-17 23:22:50 +04:00
SRCS+= memmove.c strchr.c strrchr.c
1993-03-21 12:45:37 +03:00
.elif (${MACHINE} == "tahoe")
SRCS+= bcmp.s bcopy.s bzero.s ffs.s index.c memchr.c memcmp.s memset.c \
rindex.c strcat.s strcmp.s strcpy.s strcspn.c strlen.s \
strncat.s strncmp.s strncpy.s strpbrk.c strsep.c \
strspn.c strstr.c swab.c
1993-03-21 12:45:37 +03:00
SRCS+= memmove.s
.elif (${MACHINE} == "vax")
SRCS+= bcmp.s bcopy.s bzero.s ffs.s index.c memchr.s memcmp.s memset.s \
rindex.s strcat.s strcmp.s strcpy.s strcspn.s strlen.s \
strncat.s strncmp.s strncpy.s strpbrk.s strsep.s \
strspn.s strstr.s swab.c
1993-03-21 12:45:37 +03:00
SRCS+= memmove.s strchr.s strrchr.s
.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 a.out ${.TARGET}
memmove.po: bcopy.c
${CC} -DMEMMOVE ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
.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-03-21 12:45:37 +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
${CC} -DMEMCOPY ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
memcpy.po: bcopy.c
${CC} -DMEMCOPY ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
.endif
.endif
1993-03-21 12:45:37 +03:00
# 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 a.out ${.TARGET}
strchr.po: index.c
${CC} -DSTRCHR ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
@${LD} -X -r ${.TARGET}
@mv 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 a.out ${.TARGET}
strrchr.po: rindex.c
${CC} -DSTRRCHR ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET}
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
.endif
MAN3+= bcmp.0 bcopy.0 bstring.0 bzero.0 ffs.0 index.0 memccpy.0 memchr.0 \
memcmp.0 memcpy.0 memmove.0 memset.0 rindex.0 strcasecmp.0 strcat.0 \
strchr.0 strcmp.0 strcoll.0 strcpy.0 strcspn.0 strerror.0 strftime.0 string.0 \
1993-03-21 12:45:37 +03:00
strlen.0 strmode.0 strdup.0 strpbrk.0 strrchr.0 strsep.0 strspn.0 \
strstr.0 strtok.0 strxfrm.0 swab.0
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