blob: 129a61e939ecc5ef636b890333cd8dfef5491cc7 [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
Stefan Roese9b94ac62007-10-31 17:55:58 +010037COBJS += 44x_spd_ddr.o
38COBJS += 44x_spd_ddr2.o
Adam Grahamf6b6c452008-09-03 12:26:59 -070039ifdef CONFIG_PPC4xx_DDR_AUTOCALIBRATION
40COBJS += 4xx_ibm_ddr2_autocalib.o
41endif
Stefan Roese9b94ac62007-10-31 17:55:58 +010042COBJS += 4xx_pci.o
43COBJS += 4xx_pcie.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010044COBJS += bedbug_405.o
Stefan Roese87c0b722009-07-20 06:57:27 +020045ifdef CONFIG_CMD_CHIP_CONFIG
46COBJS += cmd_chip_config.o
47endif
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
Stefan Roese58eb8692010-07-21 19:06:10 +020053ifdef CONFIG_CMD_ECCTEST
54COBJS += cmd_ecctest.o
55endif
Stefan Roese9b94ac62007-10-31 17:55:58 +010056COBJS += fdt.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010057COBJS += interrupts.o
58COBJS += iop480_uart.o
Niklaus Giger78d2a642009-10-04 20:04:21 +020059ifdef CONFIG_CMD_REGINFO
60COBJS += reginfo.o
61endif
Stefan Roese9b94ac62007-10-31 17:55:58 +010062COBJS += sdram.o
63COBJS += speed.o
64COBJS += tlb.o
65COBJS += traps.o
66COBJS += usb.o
67COBJS += usb_ohci.o
68COBJS += usbdev.o
Ricardo Ribalda Delgadod865fd02008-07-17 11:44:12 +020069ifndef CONFIG_XILINX_440
Ricardo Ribalda Delgadod865fd02008-07-17 11:44:12 +020070COBJS += 4xx_uart.o
71COBJS += gpio.o
72COBJS += miiphy.o
73COBJS += uic.o
74else
75COBJS += xilinx_irq.o
76endif
wdenkba56f622004-02-06 23:19:44 +000077
Marian Balakowiczf9328632006-09-01 19:49:50 +020078SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
79OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
80START := $(addprefix $(obj),$(START))
wdenk3cae4c92002-07-07 16:05:51 +000081
Marian Balakowiczf9328632006-09-01 19:49:50 +020082all: $(obj).depend $(START) $(LIB)
wdenk3cae4c92002-07-07 16:05:51 +000083
84$(LIB): $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010085 $(call cmd_link_o_target, $(OBJS))
wdenk3cae4c92002-07-07 16:05:51 +000086
87#########################################################################
88
Marian Balakowiczf9328632006-09-01 19:49:50 +020089# defines $(obj).depend target
90include $(SRCTREE)/rules.mk
wdenk3cae4c92002-07-07 16:05:51 +000091
Marian Balakowiczf9328632006-09-01 19:49:50 +020092sinclude $(obj).depend
wdenk3cae4c92002-07-07 16:05:51 +000093
94#########################################################################