diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-27 05:00:24 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-27 05:00:24 +0000 |
commit | 58f0484fa251c266ede97b591b499fe3dd4f578e (patch) | |
tree | 41932a7161f4cd72005330a9c69747e7bab2ee5b /lib/libc/string/Makefile.inc | |
parent | fb49e767ba942f74b1cee8814e085e5f2615ac53 (diff) |
BSD 4.4 Lite Lib Sources
Notes
Notes:
svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1573
Diffstat (limited to 'lib/libc/string/Makefile.inc')
-rw-r--r-- | lib/libc/string/Makefile.inc | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc new file mode 100644 index 000000000000..55db696b1d3c --- /dev/null +++ b/lib/libc/string/Makefile.inc @@ -0,0 +1,92 @@ +# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 + +.PATH: ${.CURDIR}/${MACHINE}/string ${.CURDIR}/string + +# machine-independent string sources +SRCS+= memccpy.c strcasecmp.c strcoll.c strdup.c strerror.c \ + strftime.c strmode.c strtok.c strxfrm.c swab.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} + @mv a.out ${.TARGET} + +bzero.po: memset.c + ${CC} -DBZERO ${CFLAGS} -c -p ${.ALLSRC} -o ${.TARGET} + @${LD} -X -r ${.TARGET} + @mv 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 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 empty(SRCS:Mmemcpy.s) +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 + +# 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 strftime.0 string.0 \ + strlen.0 strmode.0 strdup.0 strerror.0 strpbrk.0 strrchr.0 strsep.0 \ + strspn.0 strstr.0 strtok.0 strxfrm.0 swab.0 + +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 |