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 15SOBJS = 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 22$(LIB): $(OBJS) $(SOBJS) 23 $(call cmd_link_o_target, $(OBJS) $(SOBJS)) 24 25######################################################################### 26 27# defines $(obj).depend target 28include $(SRCTREE)/rules.mk 29 30sinclude $(obj).depend 31 32######################################################################### 33