blob: 6cf7fe9da931d448227aadf347ce796aa5a69526 [file] [log] [blame]
Tom Warrend034d1b2013-01-28 13:32:08 +00001#
2# Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
3#
4# (C) Copyright 2000-2008
5# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
7# This program is free software; you can redistribute it and/or modify it
8# under the terms and conditions of the GNU General Public License,
9# version 2, as published by the Free Software Foundation.
10#
11# This program is distributed in the hope it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14# more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18#
19
20include $(TOPDIR)/config.mk
21
22LIB = $(obj)lib$(SOC).o
23
24#COBJS-y += cpu.o t11x.o
25COBJS-y += cpu.o
26
27SRCS := $(COBJS-y:.o=.c)
28OBJS := $(addprefix $(obj),$(COBJS-y))
29
30all: $(obj).depend $(LIB)
31
32$(LIB): $(OBJS)
33 $(call cmd_link_o_target, $(OBJS))
34
35#########################################################################
36
37# defines $(obj).depend target
38include $(SRCTREE)/rules.mk
39
40sinclude $(obj).depend
41
42#########################################################################