1993-08-01 09:37:30 +04:00
|
|
|
# from: @(#)Makefile.inc 5.6 (Berkeley) 3/5/91
|
1993-12-08 16:31:01 +03:00
|
|
|
# $Id: Makefile.inc,v 1.23 1993/12/08 13:31:19 pk 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
|
|
|
|
1993-10-07 22:27:50 +03:00
|
|
|
SRCS+= memccpy.c strcasecmp.c strcoll.c strdup.c strerror.c \
|
1993-10-05 21:30:18 +03:00
|
|
|
strftime.c strmode.c strtok.c strxfrm.c
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-12-05 18:45:52 +03:00
|
|
|
.if (${MACHINE_ARCH} == "m68k")
|
1993-12-07 02:22:15 +03:00
|
|
|
SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.S memset.S \
|
1993-12-04 05:33:35 +03:00
|
|
|
rindex.S strcat.c strcmp.S strcpy.S strcspn.c strlen.S \
|
|
|
|
strncat.c strncmp.S strncpy.S strpbrk.c strsep.c \
|
1993-12-07 02:22:15 +03:00
|
|
|
strspn.c strstr.c swab.S
|
1993-12-07 04:00:06 +03:00
|
|
|
SRCS+= memcpy.S memmove.S
|
1993-12-04 05:33:35 +03:00
|
|
|
.elif (${MACHINE_ARCH} == "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-12-05 05:20:58 +03:00
|
|
|
.elif (${MACHINE_ARCH} == "ns32k")
|
1993-09-17 23:22:50 +04:00
|
|
|
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 \
|
1993-10-05 21:30:18 +03:00
|
|
|
strspn.c strstr.c swab.c
|
1993-09-17 23:22:50 +04:00
|
|
|
SRCS+= memmove.c strchr.c strrchr.c
|
1993-12-04 05:33:35 +03:00
|
|
|
.elif (${MACHINE_ARCH} == "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 \
|
1993-10-05 21:30:18 +03:00
|
|
|
strspn.c strstr.c swab.c
|
1993-12-04 05:33:35 +03:00
|
|
|
SRCS+= memmove.S
|
|
|
|
.elif (${MACHINE_ARCH} == "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
|
|
|
|
SRCS+= memmove.S strchr.S strrchr.S
|
1993-12-08 16:31:01 +03:00
|
|
|
.elif (${MACHINE_ARCH} == "sparc")
|
|
|
|
SRCS+= bcmp.c bcopy.c bzero.S ffs.S index.c memchr.c memcmp.c memset.c \
|
|
|
|
rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.S \
|
|
|
|
strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
|
|
|
|
strspn.c strstr.c swab.c
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# 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
|
|
|
|
${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}
|
1993-12-06 06:10:35 +03:00
|
|
|
|
|
|
|
memmove.so: bcopy.c
|
1993-12-07 03:54:09 +03:00
|
|
|
${CC} ${PICFLAG} -DPIC -DMEMMOVE ${CFLAGS} -c ${.ALLSRC} \
|
1993-12-06 06:10:35 +03:00
|
|
|
-o ${.TARGET}
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# if no machine specific memcpy(3), build one out of bcopy(3).
|
1993-06-16 22:38:38 +04:00
|
|
|
# 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
|
|
|
|
${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}
|
1993-12-06 06:10:35 +03:00
|
|
|
|
|
|
|
memcpy.so: bcopy.c
|
1993-12-07 03:54:09 +03:00
|
|
|
${CC} ${PICFLAG} -DPIC -DMEMCOPY ${CFLAGS} -c ${.ALLSRC} \
|
1993-12-06 06:10:35 +03:00
|
|
|
-o ${.TARGET}
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
1993-06-16 22:38:38 +04:00
|
|
|
.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
|
|
|
|
${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}
|
1993-12-06 06:10:35 +03:00
|
|
|
|
|
|
|
strchr.so: index.c
|
1993-12-07 03:54:09 +03:00
|
|
|
${CC} ${PICFLAG} -DPIC -DSTRCHR ${CFLAGS} -c ${.ALLSRC} \
|
1993-12-06 06:10:35 +03:00
|
|
|
-o ${.TARGET}
|
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
|
|
|
|
${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}
|
1993-12-06 06:10:35 +03:00
|
|
|
|
|
|
|
strrchr.so: rindex.c
|
1993-12-07 03:54:09 +03:00
|
|
|
${CC} ${PICFLAG} -DPIC -DSTRRCHR ${CFLAGS} -c ${.ALLSRC} \
|
1993-12-06 06:10:35 +03:00
|
|
|
-o ${.TARGET}
|
1993-03-21 12:45:37 +03:00
|
|
|
.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 \
|
1993-10-18 23:24:34 +03:00
|
|
|
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 \
|
1993-10-18 23:24:34 +03:00
|
|
|
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
|