sh: Do not include start.o in lib$(CPU).o
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Mon, 21 Oct 2013 02:53:25 +0000 (11:53 +0900)
committerTom Rini <trini@ti.com>
Thu, 31 Oct 2013 17:26:45 +0000 (13:26 -0400)
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
arch/sh/cpu/sh2/Makefile
arch/sh/cpu/sh3/Makefile
arch/sh/cpu/sh4/Makefile

index 1cc0031..686bb79 100644 (file)
@@ -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))
 
index e707de3..26cb1ce 100644 (file)
@@ -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))
 
index e7d8903..5680d61 100644 (file)
@@ -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))