diff options
author | Wolfgang Denk | 2006-10-09 01:02:05 +0200 |
---|---|---|
committer | Wolfgang Denk | 2006-10-09 01:02:05 +0200 |
commit | 2b208f5308ae0c72a6840180e59ed1ab4f9b69fc (patch) | |
tree | 2ea530330347bf03dd7fca1dd19ef76b7c072c28 /cpu/ixp | |
parent | 7ce343e49993341f2cdd559e0c44ad7507f71eb7 (diff) |
Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
Diffstat (limited to 'cpu/ixp')
-rw-r--r-- | cpu/ixp/Makefile | 2 | ||||
-rw-r--r-- | cpu/ixp/npe/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpu/ixp/Makefile b/cpu/ixp/Makefile index 28672705c6d..e1fb327bb4b 100644 --- a/cpu/ixp/Makefile +++ b/cpu/ixp/Makefile @@ -35,7 +35,7 @@ START := $(addprefix $(obj),$(START)) all: $(obj).depend $(START) $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### diff --git a/cpu/ixp/npe/Makefile b/cpu/ixp/npe/Makefile index 412b418b81f..4de34fd5b9e 100644 --- a/cpu/ixp/npe/Makefile +++ b/cpu/ixp/npe/Makefile @@ -88,7 +88,7 @@ START := $(addprefix $(obj),$(START)) all: $(LIB) $(LIB): $(obj).depend $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### |