aboutsummaryrefslogtreecommitdiff
path: root/arch/mips/cpu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/cpu/Makefile')
-rw-r--r--arch/mips/cpu/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/cpu/Makefile b/arch/mips/cpu/Makefile
index 28a1cbb10..06df8d17a 100644
--- a/arch/mips/cpu/Makefile
+++ b/arch/mips/cpu/Makefile
@@ -23,7 +23,7 @@
include $(TOPDIR)/config.mk
-LIB = $(obj)lib$(CPU).a
+LIB = $(obj)lib$(CPU).o
START = start.o
SOBJS-y = cache.o
@@ -41,7 +41,7 @@ START := $(addprefix $(obj),$(START))
all: $(obj).depend $(START) $(LIB)
$(LIB): $(OBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
#########################################################################