diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-07 23:37:03 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-07 23:37:03 +0000 |
commit | fbb4007ac88656122f9319dea4563a3a4fd40e82 (patch) | |
tree | ca4265ac43d139b3fd02ba32bfe6d5e12cadb65c /libc/string/Makefile | |
parent | b8f03a94957c913fa0d8588c41b0332b49310ff0 (diff) |
Update and simplification.
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r-- | libc/string/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libc/string/Makefile b/libc/string/Makefile index 3d2e3d2de..d8d65fa3d 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -27,11 +27,10 @@ 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 memset.o \ - memmove.o + memmove.o memcmp.o memchr.o CSRC=strpbrk.c strsep.c strstr.c strtok.c strcspn.c \ - config.c memcmp.c memchr.c strspn.c strcasecmp.c \ - strncasecmp.c + config.c strspn.c strcasecmp.c strncasecmp.c COBJS=$(patsubst %.c,%.o, $(CSRC)) all: $(MOBJ) $(COBJS) $(LIBC) @@ -42,8 +41,6 @@ $(LIBC): $(MOBJ) $(COBJS) $(MOBJ): $(MSRC) $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o -memcmp.o: memcopy.h - clean: rm -f *.[oa] *~ core |