blob: 8da2f86e593c9dc01dcc549bcde4f561e3165cd9 [file] [log] [blame]
wdenk3cae4c92002-07-07 16:05:51 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk3cae4c92002-07-07 16:05:51 +00003# 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
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010026LIB = $(obj)lib$(CPU).o
wdenk3cae4c92002-07-07 16:05:51 +000027
Stefan Roese9b94ac62007-10-31 17:55:58 +010028START := resetvec.o
29START += start.o
30
31SOBJS := cache.o
32SOBJS += dcr.o
33SOBJS += kgdb.o
34
35COBJS := 40x_spd_sdram.o
Niklaus Giger78d2a642009-10-04 20:04:21 +020036
Wolfgang Denka7186b82010-11-21 00:03:32 +010037ifndef CONFIG_NAND_SPL
38ifndef CONFIG_NAND_U_BOOT
Stefan Roese9b94ac62007-10-31 17:55:58 +010039COBJS += 44x_spd_ddr.o
Adam Grahamf6b6c452008-09-03 12:26:59 -070040endif
Wolfgang Denka7186b82010-11-21 00:03:32 +010041endif
42COBJS-$(CONFIG_SDRAM_PPC4xx_IBM_DDR2) += 44x_spd_ddr2.o
43COBJS-$(CONFIG_PPC4xx_DDR_AUTOCALIBRATION) += 4xx_ibm_ddr2_autocalib.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010044COBJS += 4xx_pci.o
45COBJS += 4xx_pcie.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010046COBJS += bedbug_405.o
Wolfgang Denka7186b82010-11-21 00:03:32 +010047COBJS-$(CONFIG_CMD_CHIP_CONFIG) += cmd_chip_config.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010048COBJS += cpu.o
49COBJS += cpu_init.o
Larry Johnson8eb52d52007-12-22 15:16:11 -050050COBJS += denali_data_eye.o
51COBJS += denali_spd_ddr2.o
Grant Ericksonc821b5f2008-05-22 14:44:14 -070052COBJS += ecc.o
Wolfgang Denka7186b82010-11-21 00:03:32 +010053COBJS-$(CONFIG_CMD_ECCTEST) += cmd_ecctest.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010054COBJS += fdt.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010055COBJS += interrupts.o
Wolfgang Denka7186b82010-11-21 00:03:32 +010056COBJS-$(CONFIG_CMD_REGINFO) += reginfo.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010057COBJS += sdram.o
58COBJS += speed.o
59COBJS += tlb.o
60COBJS += traps.o
61COBJS += usb.o
62COBJS += usb_ohci.o
Wolfgang Denka7186b82010-11-21 00:03:32 +010063COBJS-$(CONFIG_XILINX_440) += xilinx_irq.o
Ricardo Ribalda Delgadod865fd02008-07-17 11:44:12 +020064ifndef CONFIG_XILINX_440
Ricardo Ribalda Delgadod865fd02008-07-17 11:44:12 +020065COBJS += 4xx_uart.o
66COBJS += gpio.o
67COBJS += miiphy.o
68COBJS += uic.o
Ricardo Ribalda Delgadod865fd02008-07-17 11:44:12 +020069endif
wdenkba56f622004-02-06 23:19:44 +000070
Marian Balakowiczf9328632006-09-01 19:49:50 +020071SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
Wolfgang Denka7186b82010-11-21 00:03:32 +010072OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS) $(COBJS-y))
Marian Balakowiczf9328632006-09-01 19:49:50 +020073START := $(addprefix $(obj),$(START))
wdenk3cae4c92002-07-07 16:05:51 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075all: $(obj).depend $(START) $(LIB)
wdenk3cae4c92002-07-07 16:05:51 +000076
77$(LIB): $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010078 $(call cmd_link_o_target, $(OBJS))
wdenk3cae4c92002-07-07 16:05:51 +000079
80#########################################################################
81
Marian Balakowiczf9328632006-09-01 19:49:50 +020082# defines $(obj).depend target
83include $(SRCTREE)/rules.mk
wdenk3cae4c92002-07-07 16:05:51 +000084
Marian Balakowiczf9328632006-09-01 19:49:50 +020085sinclude $(obj).depend
wdenk3cae4c92002-07-07 16:05:51 +000086
87#########################################################################