summaryrefslogtreecommitdiff
path: root/libc/string/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-05 05:10:27 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-05 05:10:27 +0000
commit8187b0ccda766ff2000e954f01ba918faefc05d2 (patch)
tree7dfa36055a9689a672c14185d37a7396e5746b4b /libc/string/Makefile
parent6ba17041381afeb8c1274cce4c6ffebda0253328 (diff)
Major update to string handling. strcmp and friends were horribly
broken. They now test out as working properly. -Erik
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r--libc/string/Makefile10
1 files changed, 6 insertions, 4 deletions
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)