Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
diff --git a/lib_mips/Makefile b/lib_mips/Makefile
index e2ac999..3163f00 100644
--- a/lib_mips/Makefile
+++ b/lib_mips/Makefile
@@ -33,7 +33,7 @@
 OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS))
 
 $(LIB):	$(obj).depend $(OBJS)
-	$(AR) crv $@ $(OBJS)
+	$(AR) $(ARFLAGS) $@ $(OBJS)
 
 #########################################################################