]> git.sur5r.net Git - u-boot/blobdiff - cpu/mpc83xx/Makefile
mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
[u-boot] / cpu / mpc83xx / Makefile
index f3fa6fd93ab96d4d44c6d30ce75684f219dbec1b..1aa0005d4d0e43e0979ada5db60588cb21895fae 100644 (file)
@@ -1,7 +1,7 @@
 #
 # (C) Copyright 2006
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
-# 
+#
 # Copyright 2004 Freescale Semiconductor, Inc.
 #
 # See file CREDITS for list of people who contributed to this
@@ -27,7 +27,7 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(CPU).a
 
-START  = start.o resetvec.o
+START  = start.o
 COBJS  = traps.o cpu.o cpu_init.o speed.o interrupts.o \
          i2c.o spd_sdram.o
 
@@ -38,7 +38,7 @@ START := $(addprefix $(obj),$(START))
 all:   $(obj).depend $(START) $(LIB)
 
 $(LIB):        $(OBJS)
-       $(AR) crv $@ $(OBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
 
 #########################################################################