Fix "ar" flags in some Makefiles to allow for silent "make -s"

This commit is contained in:
Wolfgang Denk
2006-10-27 11:55:21 +02:00
parent 4653f91c13
commit d38936cdae
6 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
$(LIB): $(obj).depend $(OBJS)
$(AR) crv $@ $(OBJS)
$(AR) $(ARFLAGS) $@ $(OBJS)
#########################################################################