Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1 | # |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 2 | # Copyright 2007 Freescale Semiconductor, Inc. |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 3 | # (C) Copyright 2002,2003 Motorola Inc. |
| 4 | # Xianghua Xiao,X.Xiao@motorola.com |
| 5 | # |
| 6 | # (C) Copyright 2004 Freescale Semiconductor. (MC86xx Port) |
Jon Loeliger | c934f65 | 2006-05-31 13:55:35 -0500 | [diff] [blame] | 7 | # Jeff Brown |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 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 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 29 | LIB = $(obj)lib$(CPU).o |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 30 | |
Wolfgang Denk | 4e2894b | 2010-11-22 08:31:41 +0100 | [diff] [blame] | 31 | SSTART = start.o |
| 32 | CSTART = traps.o |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 33 | |
Kumar Gala | 7649a59 | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 34 | SOBJS-y += cache.o |
| 35 | SOBJS-$(CONFIG_MP) += release.o |
| 36 | |
Jon Loeliger | 13f5433 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 37 | COBJS-y += cpu.o |
| 38 | COBJS-y += cpu_init.o |
Kumar Gala | 46ff4f1 | 2008-08-26 15:01:34 -0500 | [diff] [blame] | 39 | # 8610 & 8641 are identical w/regards to DDR |
| 40 | COBJS-$(CONFIG_MPC8610) += ddr-8641.o |
Kumar Gala | 7649a59 | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 41 | COBJS-$(CONFIG_MPC8641) += ddr-8641.o |
| 42 | COBJS-$(CONFIG_OF_LIBFDT) += fdt.o |
| 43 | COBJS-y += interrupts.o |
| 44 | COBJS-$(CONFIG_MP) += mp.o |
Kumar Gala | af04247 | 2010-12-15 04:52:48 -0600 | [diff] [blame] | 45 | COBJS-$(CONFIG_MPC8610) += mpc8610_serdes.o |
| 46 | COBJS-$(CONFIG_MPC8641) += mpc8641_serdes.o |
Kumar Gala | 7649a59 | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 47 | COBJS-y += speed.o |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 48 | |
Kumar Gala | 7649a59 | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 49 | SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
| 50 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
Wolfgang Denk | 4e2894b | 2010-11-22 08:31:41 +0100 | [diff] [blame] | 51 | START := $(addprefix $(obj),$(SSTART) $(CSTART)) |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 52 | |
| 53 | all: $(obj).depend $(START) $(LIB) |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 54 | |
| 55 | $(LIB): $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 56 | $(call cmd_link_o_target, $(OBJS)) |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 57 | |
| 58 | ######################################################################### |
| 59 | |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 60 | # defines $(obj).depend target |
| 61 | include $(SRCTREE)/rules.mk |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 62 | |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 63 | sinclude $(obj).depend |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 64 | |
| 65 | ######################################################################### |