summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authordean <dean@NetBSD.org>1994-11-14 23:48:22 +0000
committerdean <dean@NetBSD.org>1994-11-14 23:48:22 +0000
commit6ffb5ee2995cec6264fcd14019904b8cbb222453 (patch)
treef9bb2652665583fbe259427572fea0f393f7248b /lib/libc/string
parent6cd6f202d5aaee400689590527333b8d9b36d81a (diff)
Include files for pmax
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/Makefile.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc
index 5dfd1b681fa..dba8893fa82 100644
--- a/lib/libc/string/Makefile.inc
+++ b/lib/libc/string/Makefile.inc
@@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 5.6 (Berkeley) 3/5/91
-# $Id: Makefile.inc,v 1.30 1994/09/03 05:07:49 jtc Exp $
+# $Id: Makefile.inc,v 1.31 1994/11/14 23:48:22 dean Exp $
# string sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/string ${.CURDIR}/string
@@ -43,6 +43,11 @@ 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
+.elif (${MACHINE_ARCH} == "mips")
+SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.c memset.c \
+ rindex.S strcat.c strcmp.S strcpy.c strcspn.c strlen.S \
+ strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \
+ strspn.c strstr.c swab.c
.endif
# if no machine specific memmove(3), build one out of bcopy(3).