summaryrefslogtreecommitdiff
path: root/libc/string/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-16 18:17:02 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-16 18:17:02 +0000
commit2d872f2ee8729b78db98cb40a4f6f2337f5b6101 (patch)
tree59fe4a5acd0d38d5b8d64e407b11d955c1231086 /libc/string/Makefile
parentaf1112c8d97830aa66715239e8d4f94811398ac6 (diff)
Stupid makefile bug,
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r--libc/string/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/string/Makefile b/libc/string/Makefile
index decaa2459..5e6c241cb 100644
--- a/libc/string/Makefile
+++ b/libc/string/Makefile
@@ -25,8 +25,8 @@ include $(TOPDIR)Rules.mak
LIBC=$(TOPDIR)libc.a
MSRC=string.c
-MOBJ=strlen.o strcat.o strcpy.o strcmp.o strncat.o strncpy.o strncmp.o \
- strrchr.o strdup.o memcpy.o memccpy.o memset.o \
+MOBJ=strlen.o strcat.o strcpy.o strchr.o strcmp.o strncat.o strncpy.o \
+ strncmp.o strrchr.o strdup.o memcpy.o memccpy.o memset.o \
memmove.o memcmp.o memchr.o
MSRC1=index.c
@@ -34,7 +34,7 @@ MOBJ1=index.o rindex.o
CSRC=strpbrk.c strsep.c strstr.c strtok.c strcspn.c config.c \
strspn.c strcasecmp.c strncasecmp.c strerror.c sys_siglist.c \
- bcopy.c bzero.c bcmp.c strchr.c
+ bcopy.c bzero.c bcmp.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
OBJS=$(MOBJ) $(MOBJ1) $(COBJS)