diff options
Diffstat (limited to 'libc/string/arm/Makefile')
-rw-r--r-- | libc/string/arm/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/libc/string/arm/Makefile b/libc/string/arm/Makefile index a874eb96d..fecc8fc1c 100644 --- a/libc/string/arm/Makefile +++ b/libc/string/arm/Makefile @@ -19,21 +19,22 @@ TOPDIR=../../../ include $(TOPDIR)Rules.mak -SSRC= _memcpy.S bcopy.S bzero.S memcmp.S memcpy.S memmove.S memset.S \ +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) +SOBJ := $(patsubst %.S,%.o, $(SSRC)) -OBJ_LIST=../../obj.string.$(TARGET_ARCH) +OBJS := $(SOBJ) + +OBJ_LIST := ../../obj.string.$(TARGET_ARCH) all: $(OBJ_LIST) $(OBJ_LIST): $(OBJS) - echo $(patsubst %, string/$(TARGET_ARCH)/%, $(OBJS)) > $(OBJ_LIST) + $(STRIPTOOL) -x -R .note -R .comment $^ + echo $(patsubst %, string/$(TARGET_ARCH)/%, $^) > $@ -$(SOBJS): %.o : %.S +$(SOBJ): %.o : %.S $(CC) $(ASFLAGS) -c $< -o $@ - $(STRIPTOOL) -x -R .note -R .comment $*.o clean: - $(RM) *.[oa] *~ core + $(RM) *.o *~ core |