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