ppc/85xx: Introduce low level write_tlb function
[oweals/u-boot.git] / cpu / mcf52x2 / Makefile
index a05a803cb2707897efe6cf6f4e50b783fbf98a30..937cdd058412ab0c8462b3857e5b2b3abe4c45f2 100644 (file)
@@ -27,8 +27,8 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)lib$(CPU).a
 
-START  =
-COBJS  = serial.o interrupts.o cpu.o speed.o cpu_init.o fec.o
+START  = start.o
+COBJS  = interrupts.o cpu.o speed.o cpu_init.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS))
@@ -37,7 +37,7 @@ START := $(addprefix $(obj),$(START))
 all:   $(obj).depend $(START) $(LIB)
 
 $(LIB):        $(OBJS)
-       $(AR) crv $@ $(OBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
 
 #########################################################################