]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/powerpc/cpu/ppc4xx/Makefile
Merge branch 'agust@denx.de-next' of git://git.denx.de/u-boot-staging
[people/ms/u-boot.git] / arch / powerpc / cpu / ppc4xx / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # 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
24 include $(TOPDIR)/config.mk
25
26 LIB = $(obj)lib$(CPU).o
27
28 START := resetvec.o
29 START += start.o
30
31 SOBJS := cache.o
32 SOBJS += dcr.o
33 SOBJS += kgdb.o
34
35 COBJS := 40x_spd_sdram.o
36
37 ifndef CONFIG_NAND_SPL
38 ifndef CONFIG_NAND_U_BOOT
39 COBJS += 44x_spd_ddr.o
40 endif
41 endif
42 COBJS-$(CONFIG_SDRAM_PPC4xx_IBM_DDR2) += 44x_spd_ddr2.o
43 COBJS-$(CONFIG_PPC4xx_DDR_AUTOCALIBRATION) += 4xx_ibm_ddr2_autocalib.o
44 COBJS += 4xx_pci.o
45 COBJS += 4xx_pcie.o
46 COBJS += bedbug_405.o
47 COBJS-$(CONFIG_CMD_CHIP_CONFIG) += cmd_chip_config.o
48 COBJS += cpu.o
49 COBJS += cpu_init.o
50 COBJS += denali_data_eye.o
51 COBJS += denali_spd_ddr2.o
52 COBJS += ecc.o
53 COBJS-$(CONFIG_CMD_ECCTEST) += cmd_ecctest.o
54 COBJS += fdt.o
55 COBJS += interrupts.o
56 COBJS-$(CONFIG_CMD_REGINFO) += reginfo.o
57 COBJS += sdram.o
58 COBJS += speed.o
59 COBJS += tlb.o
60 COBJS += traps.o
61 COBJS += usb.o
62 COBJS += usb_ohci.o
63 COBJS-$(CONFIG_XILINX_440) += xilinx_irq.o
64 ifndef CONFIG_XILINX_440
65 COBJS += 4xx_uart.o
66 COBJS += gpio.o
67 COBJS += miiphy.o
68 COBJS += uic.o
69 endif
70
71 SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
72 OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS) $(COBJS-y))
73 START := $(addprefix $(obj),$(START))
74
75 all: $(obj).depend $(START) $(LIB)
76
77 $(LIB): $(OBJS)
78 $(call cmd_link_o_target, $(OBJS))
79
80 #########################################################################
81
82 # defines $(obj).depend target
83 include $(SRCTREE)/rules.mk
84
85 sinclude $(obj).depend
86
87 #########################################################################