]> git.sur5r.net Git - u-boot/blobdiff - cpu/arm_intcm/Makefile
PCIe, USB: Replace 'end point' references with 'endpoint'
[u-boot] / cpu / arm_intcm / Makefile
index 5d2c7eb49701c5a890b40e07944f067eaf5204ac..7701b03bbeb736a530a9ad970be5cbe01904f599 100644 (file)
@@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib$(CPU).a
 
 START  = start.o
-COBJS  = interrupts.o cpu.o
+COBJS  = cpu.o
 
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(COBJS) $(SOBJS))
@@ -35,7 +35,7 @@ START := $(addprefix $(obj),$(START))
 all:   $(obj).depend $(START) $(LIB)
 
 $(LIB):        $(OBJS)
-       $(AR) crv $@ $(OBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS)
 
 #########################################################################