blob: bcf73c3ebfe1a33d40ecc6c71432c75149bf23a2 [file] [log] [blame]
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denk511d0c72006-10-09 00:42:01 +02004#
Marian Balakowicze6f2e902005-10-11 19:09:42 +02005# Copyright 2004 Freescale Semiconductor, Inc.
6#
7# See file CREDITS for list of people who contributed to this
8# project.
9#
10# This program is free software; you can redistribute it and/or
11# modify it under the terms of the GNU General Public License as
12# published by the Free Software Foundation; either version 2 of
13# the License, or (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23# MA 02111-1307 USA
24#
25
26include $(TOPDIR)/config.mk
27
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010028LIB = $(obj)lib$(BOARD).o
Marian Balakowicze6f2e902005-10-11 19:09:42 +020029
Kim Phillips9993e192009-07-18 18:42:13 -050030COBJS-y += $(BOARD).o
31COBJS-$(CONFIG_PCI) += pci.o
Marian Balakowicze6f2e902005-10-11 19:09:42 +020032
Kim Phillips9993e192009-07-18 18:42:13 -050033COBJS := $(COBJS-y)
Marian Balakowiczf9328632006-09-01 19:49:50 +020034SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
35OBJS := $(addprefix $(obj),$(COBJS))
36SOBJS := $(addprefix $(obj),$(SOBJS))
37
38$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010039 $(call cmd_link_o_target, $(OBJS))
Marian Balakowicze6f2e902005-10-11 19:09:42 +020040
Marian Balakowicze6f2e902005-10-11 19:09:42 +020041#########################################################################
42
Marian Balakowiczf9328632006-09-01 19:49:50 +020043# defines $(obj).depend target
44include $(SRCTREE)/rules.mk
Marian Balakowicze6f2e902005-10-11 19:09:42 +020045
Marian Balakowiczf9328632006-09-01 19:49:50 +020046sinclude $(obj).depend
Marian Balakowicze6f2e902005-10-11 19:09:42 +020047
48#########################################################################