wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2006 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 5 | # (C) Copyright 2002,2003 Motorola Inc. |
| 6 | # Xianghua Xiao,X.Xiao@motorola.com |
| 7 | # |
| 8 | # See file CREDITS for list of people who contributed to this |
| 9 | # project. |
| 10 | # |
| 11 | # This program is free software; you can redistribute it and/or |
| 12 | # modify it under the terms of the GNU General Public License as |
| 13 | # published by the Free Software Foundation; either version 2 of |
| 14 | # the License, or (at your option) any later version. |
| 15 | # |
| 16 | # This program is distributed in the hope that it will be useful, |
| 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | # GNU General Public License for more details. |
| 20 | # |
| 21 | # You should have received a copy of the GNU General Public License |
| 22 | # along with this program; if not, write to the Free Software |
| 23 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | # MA 02111-1307 USA |
| 25 | # |
| 26 | |
| 27 | include $(TOPDIR)/config.mk |
| 28 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 29 | LIB = $(obj)lib$(CPU).a |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 30 | |
| 31 | START = start.o resetvec.o |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 32 | SOBJS-$(CONFIG_MP) += release.o |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 33 | SOBJS = $(SOBJS-y) |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 34 | |
| 35 | COBJS-$(CONFIG_CPM2) += commproc.o |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 36 | |
Kumar Gala | 2a6c2d7 | 2008-08-26 21:34:55 -0500 | [diff] [blame] | 37 | # supports ddr1 |
Kumar Gala | 2a6c2d7 | 2008-08-26 21:34:55 -0500 | [diff] [blame] | 38 | COBJS-$(CONFIG_MPC8540) += ddr-gen1.o |
| 39 | COBJS-$(CONFIG_MPC8560) += ddr-gen1.o |
| 40 | COBJS-$(CONFIG_MPC8541) += ddr-gen1.o |
| 41 | COBJS-$(CONFIG_MPC8555) += ddr-gen1.o |
Kumar Gala | 2a6c2d7 | 2008-08-26 21:34:55 -0500 | [diff] [blame] | 42 | |
| 43 | # supports ddr1/2 |
Kumar Gala | 2a6c2d7 | 2008-08-26 21:34:55 -0500 | [diff] [blame] | 44 | COBJS-$(CONFIG_MPC8548) += ddr-gen2.o |
| 45 | COBJS-$(CONFIG_MPC8568) += ddr-gen2.o |
| 46 | COBJS-$(CONFIG_MPC8544) += ddr-gen2.o |
| 47 | |
| 48 | # supports ddr1/2/3 |
| 49 | COBJS-$(CONFIG_MPC8572) += ddr-gen3.o |
| 50 | COBJS-$(CONFIG_MPC8536) += ddr-gen3.o |
Haiying Wang | 22b6dbc | 2009-03-27 17:02:44 -0400 | [diff] [blame] | 51 | COBJS-$(CONFIG_MPC8569) += ddr-gen3.o |
Poonam Aggrwal | a713ba9 | 2009-08-20 18:57:45 +0530 | [diff] [blame] | 52 | COBJS-$(CONFIG_P1011) += ddr-gen3.o |
Poonam Aggrwal | 87c7661 | 2009-07-31 12:08:27 +0530 | [diff] [blame] | 53 | COBJS-$(CONFIG_P1020) += ddr-gen3.o |
Poonam Aggrwal | a713ba9 | 2009-08-20 18:57:45 +0530 | [diff] [blame] | 54 | COBJS-$(CONFIG_P2010) += ddr-gen3.o |
| 55 | COBJS-$(CONFIG_P2020) += ddr-gen3.o |
Kumar Gala | 7e4259b | 2009-03-19 02:39:17 -0500 | [diff] [blame] | 56 | COBJS-$(CONFIG_PPC_P4080) += ddr-gen3.o |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 57 | |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 58 | COBJS-$(CONFIG_CPM2) += ether_fcc.o |
| 59 | COBJS-$(CONFIG_OF_LIBFDT) += fdt.o |
| 60 | COBJS-$(CONFIG_MP) += mp.o |
Kumar Gala | ef50d6c | 2008-08-12 11:14:19 -0500 | [diff] [blame] | 61 | COBJS-$(CONFIG_MPC8536) += mpc8536_serdes.o |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 62 | COBJS-$(CONFIG_PCI) += pci.o |
| 63 | COBJS-$(CONFIG_QE) += qe_io.o |
| 64 | COBJS-$(CONFIG_CPM2) += serial_scc.o |
| 65 | |
| 66 | COBJS = $(COBJS-y) |
| 67 | COBJS += cpu.o |
| 68 | COBJS += cpu_init.o |
Kumar Gala | 9f00409 | 2009-09-11 13:52:45 -0500 | [diff] [blame] | 69 | COBJS += cpu_init_early.o |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 70 | COBJS += interrupts.o |
| 71 | COBJS += speed.o |
| 72 | COBJS += tlb.o |
| 73 | COBJS += traps.o |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 74 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 75 | SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) |
| 76 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |
| 77 | START := $(addprefix $(obj),$(START)) |
| 78 | |
| 79 | all: $(obj).depend $(START) $(LIB) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 80 | |
| 81 | $(LIB): $(OBJS) |
Wolfgang Denk | 2b208f5 | 2006-10-09 01:02:05 +0200 | [diff] [blame] | 82 | $(AR) $(ARFLAGS) $@ $(OBJS) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 83 | |
| 84 | ######################################################################### |
| 85 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 86 | # defines $(obj).depend target |
| 87 | include $(SRCTREE)/rules.mk |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 88 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 89 | sinclude $(obj).depend |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 90 | |
| 91 | ######################################################################### |