summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-10-21 11:53:25 +0900
committerTom Rini <trini@ti.com>2013-10-31 13:26:45 -0400
commit61698478a38d25fe0de6e88518999d8bfcda6bc3 (patch)
treeaa312fd523199fba83a8c8a08da781e49ce54e80
parent9f414a3ab1537ed52b57a63723ff07661f6cbae1 (diff)
downloadblackbird-obmc-uboot-61698478a38d25fe0de6e88518999d8bfcda6bc3.tar.gz
blackbird-obmc-uboot-61698478a38d25fe0de6e88518999d8bfcda6bc3.zip
sh: Do not include start.o in lib$(CPU).o
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
-rw-r--r--arch/sh/cpu/sh2/Makefile4
-rw-r--r--arch/sh/cpu/sh3/Makefile4
-rw-r--r--arch/sh/cpu/sh4/Makefile4
3 files changed, 9 insertions, 3 deletions
diff --git a/arch/sh/cpu/sh2/Makefile b/arch/sh/cpu/sh2/Makefile
index 1cc00313e9..686bb7910a 100644
--- a/arch/sh/cpu/sh2/Makefile
+++ b/arch/sh/cpu/sh2/Makefile
@@ -12,13 +12,15 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(CPU).o
-SOBJS = start.o
+START = start.o
COBJS = cpu.o interrupts.o watchdog.o
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
+all: $(START) $(LIB)
+
$(LIB): $(OBJS) $(SOBJS)
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
diff --git a/arch/sh/cpu/sh3/Makefile b/arch/sh/cpu/sh3/Makefile
index e707de3f89..26cb1ced5e 100644
--- a/arch/sh/cpu/sh3/Makefile
+++ b/arch/sh/cpu/sh3/Makefile
@@ -15,13 +15,15 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(CPU).o
-SOBJS = start.o
+START = start.o
COBJS = cpu.o interrupts.o watchdog.o cache.o
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
+all: $(START) $(LIB)
+
$(LIB): $(OBJS) $(SOBJS)
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
diff --git a/arch/sh/cpu/sh4/Makefile b/arch/sh/cpu/sh4/Makefile
index e7d8903814..5680d6115d 100644
--- a/arch/sh/cpu/sh4/Makefile
+++ b/arch/sh/cpu/sh4/Makefile
@@ -12,13 +12,15 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(CPU).o
-SOBJS = start.o
+START = start.o
COBJS = cpu.o interrupts.o watchdog.o cache.o
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
+all: $(START) $(LIB)
+
$(LIB): $(OBJS) $(SOBJS)
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
OpenPOWER on IntegriCloud