diff options
Diffstat (limited to 'libc/string/arm/Makefile')
-rw-r--r-- | libc/string/arm/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/string/arm/Makefile b/libc/string/arm/Makefile index 7a4e18454..a874eb96d 100644 --- a/libc/string/arm/Makefile +++ b/libc/string/arm/Makefile @@ -22,13 +22,14 @@ include $(TOPDIR)Rules.mak SSRC= _memcpy.S bcopy.S bzero.S memcmp.S memcpy.S memmove.S memset.S \ strcmp.S strlen.S strncmp.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) +OBJS=$(SOBJS) -all: $(SOBJS) $(LIBC) +OBJ_LIST=../../obj.string.$(TARGET_ARCH) -$(LIBC): ar-target +all: $(OBJ_LIST) -ar-target: $(SOBJS) - $(AR) $(ARFLAGS) $(LIBC) $(SOBJS) +$(OBJ_LIST): $(OBJS) + echo $(patsubst %, string/$(TARGET_ARCH)/%, $(OBJS)) > $(OBJ_LIST) $(SOBJS): %.o : %.S $(CC) $(ASFLAGS) -c $< -o $@ @@ -36,4 +37,3 @@ $(SOBJS): %.o : %.S clean: $(RM) *.[oa] *~ core - |