OSDN Git Service

Hah. It turned out that index and rindex were _already_
authorEric Andersen <andersen@codepoet.org>
Thu, 15 Mar 2001 19:53:59 +0000 (19:53 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 15 Mar 2001 19:53:59 +0000 (19:53 -0000)
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

index e7342e8..4421dee 100644 (file)
@@ -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