diff options
author | Wolfgang Denk <wd@atlas.denx.de> | 2006-10-09 01:02:05 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@atlas.denx.de> | 2006-10-09 01:02:05 +0200 |
commit | 2b208f5308ae0c72a6840180e59ed1ab4f9b69fc (patch) | |
tree | 2ea530330347bf03dd7fca1dd19ef76b7c072c28 /board/dave | |
parent | 7ce343e49993341f2cdd559e0c44ad7507f71eb7 (diff) | |
download | u-boot-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.tar.gz u-boot-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.tar.xz u-boot-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.zip |
Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
Diffstat (limited to 'board/dave')
-rw-r--r-- | board/dave/B2/Makefile | 2 | ||||
-rw-r--r-- | board/dave/PPChameleonEVB/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/dave/B2/Makefile b/board/dave/B2/Makefile index 1762f6f084..56b286f85e 100644 --- a/board/dave/B2/Makefile +++ b/board/dave/B2/Makefile @@ -37,7 +37,7 @@ OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(obj).depend $(OBJS) $(SOBJS) - $(AR) crv $@ $(OBJS) $(SOBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) clean: rm -f $(SOBJS) $(OBJS) diff --git a/board/dave/PPChameleonEVB/Makefile b/board/dave/PPChameleonEVB/Makefile index e62981cf3f..cb7becb4db 100644 --- a/board/dave/PPChameleonEVB/Makefile +++ b/board/dave/PPChameleonEVB/Makefile @@ -32,7 +32,7 @@ OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) - $(AR) crv $@ $^ + $(AR) $(ARFLAGS) $@ $^ clean: rm -f $(SOBJS) $(OBJS) |