xref: /openbmc/u-boot/arch/powerpc/cpu/mpc86xx/Makefile (revision 5187d8dd)
1#
2# Copyright 2007 Freescale Semiconductor, Inc.
3# (C) Copyright 2002,2003 Motorola Inc.
4# Xianghua Xiao,X.Xiao@motorola.com
5#
6# (C) Copyright 2004 Freescale Semiconductor. (MC86xx Port)
7# Jeff Brown
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
27include $(TOPDIR)/config.mk
28
29LIB	= $(obj)lib$(CPU).o
30
31SSTART	= start.o
32CSTART	= traps.o
33
34SOBJS-y += cache.o
35SOBJS-$(CONFIG_MP) += release.o
36
37COBJS-y	+= cpu.o
38COBJS-y	+= cpu_init.o
39# 8610 & 8641 are identical w/regards to DDR
40COBJS-$(CONFIG_MPC8610) += ddr-8641.o
41COBJS-$(CONFIG_MPC8641) += ddr-8641.o
42COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
43COBJS-y	+= interrupts.o
44COBJS-$(CONFIG_MP) += mp.o
45COBJS-$(CONFIG_MPC8610) += mpc8610_serdes.o
46COBJS-$(CONFIG_MPC8641) += mpc8641_serdes.o
47COBJS-y	+= speed.o
48
49SRCS	:= $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
50OBJS	:= $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
51START	:= $(addprefix $(obj),$(SSTART) $(CSTART))
52
53all:	$(obj).depend $(START) $(LIB)
54
55$(LIB):	$(OBJS)
56	$(call cmd_link_o_target, $(OBJS))
57
58#########################################################################
59
60# defines $(obj).depend target
61include $(SRCTREE)/rules.mk
62
63sinclude $(obj).depend
64
65#########################################################################
66