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)) 27$(shell mkdir -p $(obj)board/freescale/common) 28endif 29 30LIB = $(obj)libfreescale.o 31 32COBJS-$(CONFIG_FSL_CADMUS) += cadmus.o 33COBJS-$(CONFIG_FSL_VIA) += cds_via.o 34COBJS-$(CONFIG_FMAN_ENET) += fman.o 35COBJS-$(CONFIG_FSL_PIXIS) += pixis.o 36COBJS-$(CONFIG_FSL_NGPIXIS) += ngpixis.o 37COBJS-$(CONFIG_FSL_QIXIS) += qixis.o 38COBJS-$(CONFIG_PQ_MDS_PIB) += pq-mds-pib.o 39COBJS-$(CONFIG_ID_EEPROM) += sys_eeprom.o 40COBJS-$(CONFIG_FSL_SGMII_RISER) += sgmii_riser.o 41ifndef CONFIG_RAMBOOT_PBL 42COBJS-$(CONFIG_ENV_IS_IN_MMC) += sdhc_boot.o 43endif 44 45COBJS-$(CONFIG_MPC8541CDS) += cds_pci_ft.o 46COBJS-$(CONFIG_MPC8548CDS) += cds_pci_ft.o 47COBJS-$(CONFIG_MPC8555CDS) += cds_pci_ft.o 48 49COBJS-$(CONFIG_MPC8536DS) += ics307_clk.o 50COBJS-$(CONFIG_MPC8572DS) += ics307_clk.o 51COBJS-$(CONFIG_P1022DS) += ics307_clk.o 52COBJS-$(CONFIG_P2020DS) += ics307_clk.o 53COBJS-$(CONFIG_P3041DS) += ics307_clk.o 54COBJS-$(CONFIG_P3060QDS) += ics307_clk.o 55COBJS-$(CONFIG_P4080DS) += ics307_clk.o 56COBJS-$(CONFIG_P5020DS) += ics307_clk.o 57 58# deal with common files for P-series corenet based devices 59SUBLIB-$(CONFIG_P2041RDB) += p_corenet/libp_corenet.o 60SUBLIB-$(CONFIG_P3041DS) += p_corenet/libp_corenet.o 61SUBLIB-$(CONFIG_P3060QDS) += p_corenet/libp_corenet.o 62SUBLIB-$(CONFIG_P4080DS) += p_corenet/libp_corenet.o 63SUBLIB-$(CONFIG_P5020DS) += p_corenet/libp_corenet.o 64 65SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) 66OBJS := $(addprefix $(obj),$(COBJS-y)) 67SOBJS := $(addprefix $(obj),$(SOBJS)) 68SUBLIB := $(addprefix $(obj),$(SUBLIB-y)) 69 70$(LIB): $(obj).depend $(OBJS) $(SUBLIB) 71 $(call cmd_link_o_target, $(OBJS) $(SUBLIB)) 72 73$(SUBLIB): $(obj).depend 74 $(MAKE) -C $(dir $(subst $(obj),,$@)) 75 76######################################################################### 77 78# defines $(obj).depend target 79include $(SRCTREE)/rules.mk 80 81sinclude $(obj).depend 82 83######################################################################### 84