]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
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 1cc00313e9d22bbc90f38c8c1365ea96519be79d..686bb7910aa35e044f7b9e2311bb2c3aa20224b9 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 e707de3f8986ca61eb451031f12430bcc495722d..26cb1ced5eb4734b374afe86d01b89dabbdc59b7 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 e7d8903814ff59fa704becf29eb6cc29caa1d2c6..5680d6115dd0684abd5ca0d1d74dd271a163567c 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))