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 | |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 29 | LIB = $(obj)lib$(CPU).a |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 30 | |
Jon Loeliger | 13f5433 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 31 | START = start.o |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 32 | SOBJS = cache.o |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 33 | |
Becky Bruce | 1266df8 | 2008-11-03 15:44:01 -0600 | [diff] [blame] | 34 | ifneq ($(CONFIG_NUM_CPUS),1) |
| 35 | COBJS-y += mp.o |
| 36 | SOBJS += release.o |
| 37 | endif |
Jon Loeliger | 13f5433 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 38 | COBJS-y += traps.o |
| 39 | COBJS-y += cpu.o |
| 40 | COBJS-y += cpu_init.o |
| 41 | COBJS-y += speed.o |
| 42 | COBJS-y += interrupts.o |
Jon Loeliger | 13f5433 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 43 | |
| 44 | COBJS-$(CONFIG_OF_LIBFDT) += fdt.o |
| 45 | |
Kumar Gala | 46ff4f1 | 2008-08-26 15:01:34 -0500 | [diff] [blame] | 46 | COBJS-$(CONFIG_MPC8641) += ddr-8641.o |
| 47 | # 8610 & 8641 are identical w/regards to DDR |
| 48 | COBJS-$(CONFIG_MPC8610) += ddr-8641.o |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 49 | |
Jon Loeliger | 13f5433 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 50 | SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS-y:.o=.c) |
| 51 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y)) |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 52 | START := $(addprefix $(obj),$(START)) |
| 53 | |
| 54 | all: $(obj).depend $(START) $(LIB) |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 55 | |
| 56 | $(LIB): $(OBJS) |
Wolfgang Denk | d38936c | 2006-10-27 11:55:21 +0200 | [diff] [blame] | 57 | $(AR) $(ARFLAGS) $@ $(ASOBJS) $(OBJS) |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 58 | |
| 59 | ######################################################################### |
| 60 | |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 61 | # defines $(obj).depend target |
| 62 | include $(SRCTREE)/rules.mk |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 63 | |
Jon Loeliger | afbdc64 | 2006-09-19 09:34:10 -0500 | [diff] [blame] | 64 | sinclude $(obj).depend |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 65 | |
| 66 | ######################################################################### |