]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/common/Makefile
powerpc/85xx: Enable eSPI support on corenet ds boards
[people/ms/u-boot.git] / board / freescale / common / Makefile
CommitLineData
7608d75f
KP
1#
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
25
26ifneq ($(OBJTREE),$(SRCTREE))
566d49a3 27$(shell mkdir -p $(obj)board/freescale/common)
7608d75f
KP
28endif
29
566d49a3 30LIB = $(obj)libfreescale.o
7608d75f 31
6ece2550
KG
32COBJS-$(CONFIG_FSL_CADMUS) += cadmus.o
33COBJS-$(CONFIG_FSL_VIA) += cds_via.o
6ece2550
KG
34COBJS-$(CONFIG_FSL_PIXIS) += pixis.o
35COBJS-$(CONFIG_FSL_NGPIXIS) += ngpixis.o
36COBJS-$(CONFIG_PQ_MDS_PIB) += pq-mds-pib.o
37COBJS-$(CONFIG_ID_EEPROM) += sys_eeprom.o
38COBJS-$(CONFIG_FSL_SGMII_RISER) += sgmii_riser.o
1ac63e40 39COBJS-$(CONFIG_ENV_IS_IN_MMC) += sdhc_boot.o
25eedb2c 40
6ece2550
KG
41COBJS-$(CONFIG_MPC8541CDS) += cds_pci_ft.o
42COBJS-$(CONFIG_MPC8548CDS) += cds_pci_ft.o
43COBJS-$(CONFIG_MPC8555CDS) += cds_pci_ft.o
25eedb2c 44
c7e1a43d 45COBJS-$(CONFIG_MPC8536DS) += ics307_clk.o
509c4c4c 46COBJS-$(CONFIG_MPC8572DS) += ics307_clk.o
c59e1b4d 47COBJS-$(CONFIG_P1022DS) += ics307_clk.o
ebf9d526 48COBJS-$(CONFIG_P2020DS) += ics307_clk.o
e02aea61 49COBJS-$(CONFIG_P3041DS) += ics307_clk.o
d1712369 50COBJS-$(CONFIG_P4080DS) += ics307_clk.o
e02aea61 51COBJS-$(CONFIG_P5020DS) += ics307_clk.o
ad8f8687
JL
52
53SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
54OBJS := $(addprefix $(obj),$(COBJS-y))
7608d75f
KP
55SOBJS := $(addprefix $(obj),$(SOBJS))
56
57$(LIB): $(obj).depend $(OBJS)
6d8962e8 58 $(call cmd_link_o_target, $(OBJS))
7608d75f
KP
59
60clean:
61 rm -f $(SOBJS) $(OBJS)
62
63distclean: clean
c8a3b109 64 rm -f $(LIB) core *.bak $(obj).depend
7608d75f
KP
65
66#########################################################################
67
68# defines $(obj).depend target
69include $(SRCTREE)/rules.mk
70
71sinclude $(obj).depend
72
73#########################################################################