summaryrefslogtreecommitdiff
path: root/board/pm856/Makefile
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-08-26 23:52:07 -0500
committerKumar Gala <galak@kernel.crashing.org>2008-08-27 11:43:51 -0500
commit6bfa8f723cfd82c55e3ef5620ade396916470a70 (patch)
tree10afcccbcc815720e225b1df18aeebdeb86fcbb6 /board/pm856/Makefile
parentd53bd3e17bd4f460257c19255569ea6dcfaae817 (diff)
FSL DDR: Convert PM856 to new DDR code.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/pm856/Makefile')
-rw-r--r--board/pm856/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/board/pm856/Makefile b/board/pm856/Makefile
index 2d71cbc516..52a756c8e3 100644
--- a/board/pm856/Makefile
+++ b/board/pm856/Makefile
@@ -25,10 +25,13 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).a
-COBJS := $(BOARD).o law.o tlb.o
+COBJS-y += $(BOARD).o
+COBJS-y += law.o
+COBJS-y += tlb.o
+COBJS-$(CONFIG_FSL_DDR1) += ddr.o
-SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS := $(addprefix $(obj),$(COBJS))
+SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS-y))
SOBJS := $(addprefix $(obj),$(SOBJS))
$(LIB): $(obj).depend $(OBJS) $(SOBJS)