blob: 3d7a5920080927467e733b46b0eafec0660e2617 [file] [log] [blame]
John Rigbybe72e0c2011-04-19 10:42:40 +00001#
2# (C) Copyright 2000-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
John Rigbybe72e0c2011-04-19 10:42:40 +00006#
7
8include $(TOPDIR)/config.mk
9
10LIB = $(obj)lib$(SOC).o
11
Mathieu J. Poirier9652de72012-07-31 08:59:25 +000012COBJS = timer.o clock.o prcmu.o cpu.o
John Rigbybe72e0c2011-04-19 10:42:40 +000013SOBJS = lowlevel.o
14
15SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
17
18all: $(obj).depend $(LIB)
19
20$(LIB): $(OBJS)
21 $(call cmd_link_o_target, $(OBJS))
22
23#########################################################################
24
25# defines $(obj).depend target
26include $(SRCTREE)/rules.mk
27
28sinclude $(obj).depend
29
30#########################################################################