1# 2# (C) Copyright 2000-2006 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# SPDX-License-Identifier: GPL-2.0+ 6 7include $(TOPDIR)/config.mk 8 9LIB = $(obj)lib$(SOC).o 10 11COBJS = generic.o reset.o timer.o 12 13SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) 14OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) 15 16all: $(obj).depend $(LIB) 17 18$(LIB): $(OBJS) 19 $(call cmd_link_o_target, $(OBJS)) 20 21######################################################################### 22 23# defines $(obj).depend target 24include $(SRCTREE)/rules.mk 25 26sinclude $(obj).depend 27 28######################################################################### 29