]> git.ipfire.org Git - people/ms/u-boot.git/blob - cpu/mpc8xxx/ddr/Makefile
FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
[people/ms/u-boot.git] / cpu / mpc8xxx / ddr / Makefile
1 #
2 # Copyright 2008 Freescale Semiconductor, Inc.
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # Version 2 as published by the Free Software Foundation.
7 #
8
9 include $(TOPDIR)/config.mk
10
11 LIB = $(obj)libddr.a
12
13 COBJS-$(CONFIG_FSL_DDR1) += main.o util.o ctrl_regs.o options.o \
14 lc_common_dimm_params.o
15 COBJS-$(CONFIG_FSL_DDR1) += ddr1_dimm_params.o
16
17 COBJS-$(CONFIG_FSL_DDR2) += main.o util.o ctrl_regs.o options.o \
18 lc_common_dimm_params.o
19 COBJS-$(CONFIG_FSL_DDR2) += ddr2_dimm_params.o
20
21 SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
22 OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
23
24 all: $(obj).depend $(LIB)
25
26 $(LIB): $(OBJS)
27 $(AR) $(ARFLAGS) $@ $(OBJS)
28
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend