diff options
| author | Wolfgang Denk <[email protected]> | 2008-07-02 23:00:14 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2008-07-02 23:00:14 +0200 |
| commit | 461fa68d20861811487944d22291db5a13410e20 (patch) | |
| tree | 54d2bd61d37a375667cef5e91ccc3bfb11407ea9 /cpu | |
| parent | 5981ebd32017e062b08aa6747cf591276f2db779 (diff) | |
Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
Signed-off-by: Wolfgang Denk <[email protected]>
Diffstat (limited to 'cpu')
| -rw-r--r-- | cpu/sh3/Makefile | 2 | ||||
| -rw-r--r-- | cpu/sh4/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpu/sh3/Makefile b/cpu/sh3/Makefile index 7679248bfee..1fdeb3cf340 100644 --- a/cpu/sh3/Makefile +++ b/cpu/sh3/Makefile @@ -37,7 +37,7 @@ OBJS = cpu.o interrupts.o watchdog.o time.o cache.o all: .depend $(START) $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### diff --git a/cpu/sh4/Makefile b/cpu/sh4/Makefile index 1bb8bd7729e..aaaaf1fb4ce 100644 --- a/cpu/sh4/Makefile +++ b/cpu/sh4/Makefile @@ -34,7 +34,7 @@ OBJS = cpu.o interrupts.o watchdog.o time.o cache.o all: .depend $(START) $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### |
