diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-27 11:55:21 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-27 11:55:21 +0200 |
commit | d38936cdae46bfd2623ff83f6ce9b616d36ab0f9 (patch) | |
tree | b6a0389979f926376402627d80c07071be7051fd /cpu/at32ap/at32ap7000/Makefile | |
parent | 4653f91c13ed51c21cc4c3855745d69a3fb1817f (diff) | |
download | u-boot-imx-d38936cdae46bfd2623ff83f6ce9b616d36ab0f9.zip u-boot-imx-d38936cdae46bfd2623ff83f6ce9b616d36ab0f9.tar.gz u-boot-imx-d38936cdae46bfd2623ff83f6ce9b616d36ab0f9.tar.bz2 |
Fix "ar" flags in some Makefiles to allow for silent "make -s"
Diffstat (limited to 'cpu/at32ap/at32ap7000/Makefile')
-rw-r--r-- | cpu/at32ap/at32ap7000/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/at32ap/at32ap7000/Makefile b/cpu/at32ap/at32ap7000/Makefile index 1cd9444..2ed74d2 100644 --- a/cpu/at32ap/at32ap7000/Makefile +++ b/cpu/at32ap/at32ap7000/Makefile @@ -31,7 +31,7 @@ OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) all: $(obj).depend $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $^ + $(AR) $(ARFLAGS) $@ $^ ######################################################################### |