blob: 9155e9a98d1feaa381ac2c8e4ffeb449d19e4010 [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
38COBJS += 4xx_enet.o
39COBJS += 4xx_pci.o
40COBJS += 4xx_pcie.o
41COBJS += 4xx_uart.o
42COBJS += bedbug_405.o
43COBJS += commproc.o
44COBJS += cpu.o
45COBJS += cpu_init.o
46COBJS += fdt.o
47COBJS += gpio.o
48COBJS += i2c.o
49COBJS += interrupts.o
50COBJS += iop480_uart.o
51COBJS += miiphy.o
52COBJS += ndfc.o
53COBJS += sdram.o
54COBJS += speed.o
55COBJS += tlb.o
56COBJS += traps.o
57COBJS += usb.o
58COBJS += usb_ohci.o
59COBJS += usbdev.o
wdenkba56f622004-02-06 23:19:44 +000060
Marian Balakowiczf9328632006-09-01 19:49:50 +020061SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
62OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
63START := $(addprefix $(obj),$(START))
wdenk3cae4c92002-07-07 16:05:51 +000064
Marian Balakowiczf9328632006-09-01 19:49:50 +020065all: $(obj).depend $(START) $(LIB)
wdenk3cae4c92002-07-07 16:05:51 +000066
67$(LIB): $(OBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020068 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenk3cae4c92002-07-07 16:05:51 +000069
70#########################################################################
71
Marian Balakowiczf9328632006-09-01 19:49:50 +020072# defines $(obj).depend target
73include $(SRCTREE)/rules.mk
wdenk3cae4c92002-07-07 16:05:51 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075sinclude $(obj).depend
wdenk3cae4c92002-07-07 16:05:51 +000076
77#########################################################################