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_nios2 | |
parent | 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91 (diff) |
[Makefile] Sort COBJS in lib_<arch> Makefiles
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_nios2')
-rw-r--r-- | lib_nios2/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib_nios2/Makefile b/lib_nios2/Makefile index 5f996d3bf54..717aa9bfbe4 100644 --- a/lib_nios2/Makefile +++ b/lib_nios2/Makefile @@ -25,12 +25,16 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(ARCH).a -SOBJS = cache.o +SOBJS-y += cache.o -COBJS = board.o divmod.o bootm.o mult.o time.o +COBJS-y += board.o +COBJS-y += bootm.o +COBJS-y += divmod.o +COBJS-y += mult.o +COBJS-y += time.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) |