blob: 2050b17d81d4dce86b53b2263e63c5bb33844e76 [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
Marian Balakowiczf9328632006-09-01 19:49:50 +020026LIB = $(obj)lib$(CPU).a
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
36COBJS += 44x_spd_ddr.o
37COBJS += 44x_spd_ddr2.o
Adam Grahamf6b6c452008-09-03 12:26:59 -070038ifdef CONFIG_PPC4xx_DDR_AUTOCALIBRATION
39COBJS += 4xx_ibm_ddr2_autocalib.o
40endif
Stefan Roese9b94ac62007-10-31 17:55:58 +010041COBJS += 4xx_pci.o
42COBJS += 4xx_pcie.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010043COBJS += bedbug_405.o
Stefan Roese87c0b722009-07-20 06:57:27 +020044ifdef CONFIG_CMD_CHIP_CONFIG
45COBJS += cmd_chip_config.o
46endif
Stefan Roese9b94ac62007-10-31 17:55:58 +010047COBJS += commproc.o
48COBJS += 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 Roese9b94ac62007-10-31 17:55:58 +010053COBJS += fdt.o
Stefan Roese9b94ac62007-10-31 17:55:58 +010054COBJS += i2c.o
55COBJS += interrupts.o
56COBJS += iop480_uart.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
63COBJS += usbdev.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
69else
70COBJS += xilinx_irq.o
71endif
wdenkba56f622004-02-06 23:19:44 +000072
Marian Balakowiczf9328632006-09-01 19:49:50 +020073SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
74OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
75START := $(addprefix $(obj),$(START))
wdenk3cae4c92002-07-07 16:05:51 +000076
Marian Balakowiczf9328632006-09-01 19:49:50 +020077all: $(obj).depend $(START) $(LIB)
wdenk3cae4c92002-07-07 16:05:51 +000078
79$(LIB): $(OBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020080 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenk3cae4c92002-07-07 16:05:51 +000081
82#########################################################################
83
Marian Balakowiczf9328632006-09-01 19:49:50 +020084# defines $(obj).depend target
85include $(SRCTREE)/rules.mk
wdenk3cae4c92002-07-07 16:05:51 +000086
Marian Balakowiczf9328632006-09-01 19:49:50 +020087sinclude $(obj).depend
wdenk3cae4c92002-07-07 16:05:51 +000088
89#########################################################################