diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-11 23:54:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-11 23:54:37 +0000 |
commit | a99617fe8fdb56b3e877558bfd6572ce65ad39de (patch) | |
tree | 26c3182125188cb7681885830ea7e32e179c7565 /libc/string/Makefile | |
parent | d1c3ee2a075fc4e855e352e5a5cf10371f2e77aa (diff) |
Finish reorganizing things. At least I think I've finished.
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r-- | libc/string/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libc/string/Makefile b/libc/string/Makefile index 171970c9a..e4f332ba4 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -29,10 +29,14 @@ 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 memcmp.o memchr.o -CSRC=strpbrk.c strsep.c strstr.c strtok.c strcspn.c \ - config.c strspn.c strcasecmp.c strncasecmp.c +MSRC1=index.c +MOBJ1=index.o rindex.o + +CSRC=strpbrk.c strsep.c strstr.c strtok.c strcspn.c config.c \ + strspn.c strcasecmp.c strncasecmp.c strerror.c sys_siglist.c \ + bcopy.c bzero.c bcmp.c COBJS=$(patsubst %.c,%.o, $(CSRC)) -OBJS=$(MOBJ) $(COBJS) +OBJS=$(MOBJ) $(MOBJ1) $(COBJS) all: $(OBJS) $(LIBC) @@ -44,6 +48,9 @@ ar-target: $(OBJS) $(MOBJ): $(MSRC) $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o +$(MOBJ1): $(MSRC1) + $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o + $(OBJS): Makefile clean: |