diff options
Diffstat (limited to 'libc/string/mips')
-rw-r--r-- | libc/string/mips/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/string/mips/Makefile b/libc/string/mips/Makefile index 805024929..a6d7d4a4b 100644 --- a/libc/string/mips/Makefile +++ b/libc/string/mips/Makefile @@ -21,13 +21,14 @@ include $(TOPDIR)Rules.mak SSRC= memcpy.S memset.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 $@ @@ -35,4 +36,3 @@ $(SOBJS): %.o : %.S clean: $(RM) *.[oa] *~ core - |