blob: eef5922da769e03473a7965450773b40cebfc1bf [file] [log] [blame]
Allen Martine60ab6e2012-08-31 08:30:09 +00001#
2# (C) Copyright 2010,2011 Nvidia Corporation.
3#
4# (C) Copyright 2000-2008
5# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007# SPDX-License-Identifier: GPL-2.0+
Allen Martine60ab6e2012-08-31 08:30:09 +00008#
9
10include $(TOPDIR)/config.mk
11
12LIB = $(obj)lib$(SOC).o
13
14COBJS-y += cpu.o
Allen Martine60ab6e2012-08-31 08:30:09 +000015
16SRCS := $(COBJS-y:.o=.c)
17OBJS := $(addprefix $(obj),$(COBJS-y))
18
19all: $(obj).depend $(LIB)
20
21$(LIB): $(OBJS)
22 $(call cmd_link_o_target, $(OBJS))
23
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31#########################################################################