diff options
Diffstat (limited to 'libc/string/powerpc/Makefile')
-rw-r--r-- | libc/string/powerpc/Makefile | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/libc/string/powerpc/Makefile b/libc/string/powerpc/Makefile index c1b0ba184..b6a758187 100644 --- a/libc/string/powerpc/Makefile +++ b/libc/string/powerpc/Makefile @@ -19,24 +19,21 @@ TOPDIR=../../../ include $(TOPDIR)Rules.mak -MSRC= string.c -MOBJ= memcpy.o memmove.o memset.o bzero.o -OBJS=$(MOBJ) +MSRC := string.c +MOBJ := memcpy.o memmove.o memset.o bzero.o -OBJ_LIST=../../obj.string.$(TARGET_ARCH) +OBJS := $(MOBJ) + +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)/%, $^) > $@ $(MOBJ): $(MSRC) $(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 clean: - $(RM) *.[oa] *~ core + $(RM) *.o *~ core |