diff options
author | Jon Loeliger <jdl@freescale.com> | 2006-10-10 17:21:42 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-10-10 17:21:42 -0500 |
commit | daaba9859b0b94571dc3e45ad0c26e136426b351 (patch) | |
tree | 688c9068794d45f78f9347cb47b7fba55a4b10be /cpu/arm920t | |
parent | 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e (diff) | |
parent | a3bb7bfc06a9ccb7e2f91ccc54a90ae69177214f (diff) | |
download | u-boot-imx-daaba9859b0b94571dc3e45ad0c26e136426b351.zip u-boot-imx-daaba9859b0b94571dc3e45ad0c26e136426b351.tar.gz u-boot-imx-daaba9859b0b94571dc3e45ad0c26e136426b351.tar.bz2 |
Merge branch 'master' of http://www.denx.de/git/u-boot
Diffstat (limited to 'cpu/arm920t')
-rw-r--r-- | cpu/arm920t/Makefile | 2 | ||||
-rw-r--r-- | cpu/arm920t/at91rm9200/Makefile | 2 | ||||
-rw-r--r-- | cpu/arm920t/imx/Makefile | 2 | ||||
-rw-r--r-- | cpu/arm920t/ks8695/Makefile | 2 | ||||
-rw-r--r-- | cpu/arm920t/s3c24x0/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/cpu/arm920t/Makefile b/cpu/arm920t/Makefile index 199fe0c..e02bc6a 100644 --- a/cpu/arm920t/Makefile +++ b/cpu/arm920t/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/arm920t/at91rm9200/Makefile b/cpu/arm920t/at91rm9200/Makefile index 26b0b94..8d4e478 100644 --- a/cpu/arm920t/at91rm9200/Makefile +++ b/cpu/arm920t/at91rm9200/Makefile @@ -35,7 +35,7 @@ OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) all: $(obj).depend $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### diff --git a/cpu/arm920t/imx/Makefile b/cpu/arm920t/imx/Makefile index e238fc0..9207ec1 100644 --- a/cpu/arm920t/imx/Makefile +++ b/cpu/arm920t/imx/Makefile @@ -33,7 +33,7 @@ OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) all: $(obj).depend $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### diff --git a/cpu/arm920t/ks8695/Makefile b/cpu/arm920t/ks8695/Makefile index 6342435..7db9473 100644 --- a/cpu/arm920t/ks8695/Makefile +++ b/cpu/arm920t/ks8695/Makefile @@ -34,7 +34,7 @@ OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) all: $(obj).depend $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### diff --git a/cpu/arm920t/s3c24x0/Makefile b/cpu/arm920t/s3c24x0/Makefile index 557298e..3a7c4b3 100644 --- a/cpu/arm920t/s3c24x0/Makefile +++ b/cpu/arm920t/s3c24x0/Makefile @@ -34,7 +34,7 @@ OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) all: $(obj).depend $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### |