Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
diff --git a/examples/Makefile b/examples/Makefile
index d7cd843..8706ed4 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -138,7 +138,7 @@
 
 #########################################################################
 $(LIB):	$(obj).depend $(LIBOBJS)
-		$(AR) crv $@ $(LIBOBJS)
+		$(AR) $(ARFLAGS) $@ $(LIBOBJS)
 
 $(obj)%:	$(obj)%.o $(LIB)
 		$(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \