summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1995-02-10 17:46:48 +0000
committercgd <cgd@NetBSD.org>1995-02-10 17:46:48 +0000
commitb42e80ba75c629c054e81ffcafa3379708858425 (patch)
tree267ee7e67dff694b36826a5d18d9368cbf5f7b7d /lib/libc/string
parent819bb2cd8c2f367a0f1086ac65ffc24c96274700 (diff)
list the files needed on the alpha.
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 340f370a5bf..eca30b546ce 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.32 1994/12/22 10:15:00 cgd Exp $
+# $Id: Makefile.inc,v 1.33 1995/02/10 17:46:55 cgd Exp $
# string sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/string ${.CURDIR}/string
@@ -48,6 +48,11 @@ 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
+.elif (${MACHINE_ARCH} == "alpha")
+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
.endif
# if no machine specific memmove(3), build one out of bcopy(3).