From 76809c3a05c20d69c65b7dc126e14f23d8907529 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 15 Mar 2001 19:53:59 +0000 Subject: Hah. It turned out that index and rindex were _already_ there and already implemented as wrapper funcs. And so just the header files were wrong. Anyway, axe the old index and rindex. -Erik --- libc/string/Makefile | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'libc/string') diff --git a/libc/string/Makefile b/libc/string/Makefile index e7342e804..4421dee1c 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -30,17 +30,14 @@ MOBJ=strlen.o strcat.o strcpy.o strchr.o strcmp.o strncat.o strncpy.o \ memmove.o memcmp.o memchr.o ffs.o strnlen.o index.o rindex.o \ strxfrm.o strcoll.o -MSRC1=index.c -MOBJ1=index.o rindex.o - -MSRC2=strsignal.c -MOBJ2=strsignal.o psignal.o +MSRC1=strsignal.c +MOBJ1=strsignal.o psignal.o CSRC=strpbrk.c strsep.c strstr.c strtok.c strtok_r.c strcspn.c config.c \ strspn.c strcasecmp.c strncasecmp.c strerror.c bcopy.c bzero.c \ bcmp.c sys_errlist.c COBJS=$(patsubst %.c,%.o, $(CSRC)) -OBJS=$(MOBJ) $(MOBJ1) $(MOBJ2) $(COBJS) +OBJS=$(MOBJ) $(MOBJ1) $(COBJS) all: $(OBJS) $(LIBC) @@ -57,10 +54,6 @@ $(MOBJ1): $(MSRC1) $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o $(STRIPTOOL) -x -R .note -R .comment $*.o -$(MOBJ2): $(MSRC2) - $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o - $(STRIPTOOL) -x -R .note -R .comment $*.o - $(COBJS): %.o : %.c $(CC) $(CFLAGS) -c $< -o $@ $(STRIPTOOL) -x -R .note -R .comment $*.o -- cgit v1.2.3