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/cray/L1 | |
| parent | 7ce343e49993341f2cdd559e0c44ad7507f71eb7 (diff) | |
| download | olio-uboot-2014.01-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.tar.xz olio-uboot-2014.01-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/cray/L1')
| -rw-r--r-- | board/cray/L1/Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/cray/L1/Makefile b/board/cray/L1/Makefile index 44ef9c26a..cfdd60e05 100644 --- a/board/cray/L1/Makefile +++ b/board/cray/L1/Makefile @@ -36,7 +36,7 @@ SOBJS	:= $(addprefix $(obj),$(SOBJS))  # HACK: depend needs bootscript.c, which needs tools/mkimage, which is not  # built in the depend stage.  So... put bootscript.o here, not in OBJS  $(LIB):	$(OBJS) $(SOBJS) $(obj)bootscript.o -	$(AR) crv $@ $^ +	$(AR) $(ARFLAGS) $@ $^  clean:  	rm -f $(SOBJS) $(OBJS) $(obj)bootscript.c \ |