Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
diff --git a/disk/Makefile b/disk/Makefile
index 3bdb018..1a929ce 100644
--- a/disk/Makefile
+++ b/disk/Makefile
@@ -35,7 +35,7 @@
 all:	$(LIB)
 
 $(LIB):	$(obj).depend $(OBJS)
-	$(AR) crv $@ $(OBJS)
+	$(AR) $(ARFLAGS) $@ $(OBJS)
 
 #########################################################################