From 8187b0ccda766ff2000e954f01ba918faefc05d2 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 5 Oct 2000 05:10:27 +0000 Subject: Major update to string handling. strcmp and friends were horribly broken. They now test out as working properly. -Erik --- libc/string/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'libc/string/Makefile') diff --git a/libc/string/Makefile b/libc/string/Makefile index 3af022365..01d1ee433 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -26,11 +26,13 @@ LIBC=$(TOPDIR)libc.a MSRC=string.c MOBJ=strlen.o strcat.o strcpy.o strcmp.o strncat.o strncpy.o strncmp.o \ - strchr.o strrchr.o strdup.o memcpy.o memccpy.o memchr.o memset.o \ - memcmp.o memmove.o movedata.o + strchr.o strrchr.o strdup.o memcpy.o memccpy.o memset.o \ + memmove.o + CSRC=strpbrk.c strsep.c strstr.c strtok.c strcspn.c \ - strspn.c strcasecmp.c strncasecmp.c config.c -COBJS=$(patsubst %.c,%.o, $(CFILES)) + config.c memcmp.c memchr.c strspn.c strcasecmp.c \ + strncasecmp.c +COBJS=$(patsubst %.c,%.o, $(CSRC)) all: $(MOBJ) $(COBJS) $(LIBC) -- cgit v1.2.3