diff options
Diffstat (limited to 'arch/sh/cpu/sh4/Makefile')
-rw-r--r-- | arch/sh/cpu/sh4/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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)) |