diff options
author | Marian Balakowicz <m8@semihalf.com> | 2008-02-27 11:00:47 +0100 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2008-02-27 11:00:47 +0100 |
commit | 823afe7cefe00dafefc6696c1cc7aa828c394234 (patch) | |
tree | b54769a88dfa214ed819dc45ce14b99a30e6f3c8 /lib_avr32 | |
parent | 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91 (diff) |
[Makefile] Sort COBJS in lib_<arch> Makefiles
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_avr32')
-rw-r--r-- | lib_avr32/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib_avr32/Makefile b/lib_avr32/Makefile index ebe237b1574..37b80514f3f 100644 --- a/lib_avr32/Makefile +++ b/lib_avr32/Makefile @@ -27,12 +27,14 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(ARCH).a -SOBJS = memset.o +SOBJS-y += memset.o -COBJS = board.o interrupts.o bootm.o +COBJS-y += board.o +COBJS-y += bootm.o +COBJS-y += interrupts.o -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) +SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) +OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) $(LIB): $(obj).depend $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) |