1# 2# (C) Copyright 2000-2006 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# (C) Copyright 2007 6# Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7# 8# SPDX-License-Identifier: GPL-2.0+ 9# 10 11include $(TOPDIR)/config.mk 12 13LIB = $(obj)lib$(CPU).o 14 15START = start.o 16COBJS = cpu.o interrupts.o watchdog.o cache.o 17 18SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) 19OBJS := $(addprefix $(obj),$(COBJS)) 20SOBJS := $(addprefix $(obj),$(SOBJS)) 21 22all: $(START) $(LIB) 23 24$(LIB): $(OBJS) $(SOBJS) 25 $(call cmd_link_o_target, $(OBJS) $(SOBJS)) 26 27######################################################################### 28 29# defines $(obj).depend target 30include $(SRCTREE)/rules.mk 31 32sinclude $(obj).depend 33 34######################################################################### 35