diff --git a/arch/sh/cpu/sh2/Makefile b/arch/sh/cpu/sh2/Makefile index 1cc00313e9d22bbc90f38c8c1365ea96519be79d..686bb7910aa35e044f7b9e2311bb2c3aa20224b9 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 e707de3f8986ca61eb451031f12430bcc495722d..26cb1ced5eb4734b374afe86d01b89dabbdc59b7 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 e7d8903814ff59fa704becf29eb6cc29caa1d2c6..5680d6115dd0684abd5ca0d1d74dd271a163567c 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))