aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/cpu/arm920t/ep93xx/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/cpu/arm920t/ep93xx/Makefile')
-rw-r--r--arch/arm/cpu/arm920t/ep93xx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/arm920t/ep93xx/Makefile b/arch/arm/cpu/arm920t/ep93xx/Makefile
index 01a2f5555..1d6a538fd 100644
--- a/arch/arm/cpu/arm920t/ep93xx/Makefile
+++ b/arch/arm/cpu/arm920t/ep93xx/Makefile
@@ -32,7 +32,7 @@
#
include $(TOPDIR)/config.mk
-LIB = $(obj)lib$(SOC).a
+LIB = $(obj)lib$(SOC).o
COBJS = cpu.o led.o speed.o timer.o
SOBJS = lowlevel_init.o
@@ -43,7 +43,7 @@ OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
all: $(obj).depend $(LIB)
$(LIB): $(OBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
#########################################################################