]> git.sur5r.net Git - u-boot/blobdiff - cpu/mpc86xx/Makefile
Coding style cleanup, update CHANGELOG.
[u-boot] / cpu / mpc86xx / Makefile
index 537f62a3238688d8e80070456a0960bfddf5e513..34a97555621457c1b7556250df9ed64a26477f3e 100644 (file)
@@ -31,15 +31,22 @@ LIB = $(obj)lib$(CPU).a
 START  = start.o
 SOBJS  = cache.o
 
+ifneq ($(CONFIG_NUM_CPUS),1)
+COBJS-y += mp.o
+SOBJS += release.o
+endif
 COBJS-y        += traps.o
 COBJS-y        += cpu.o
 COBJS-y        += cpu_init.o
 COBJS-y        += speed.o
 COBJS-y        += interrupts.o
-COBJS-y        += spd_sdram.o
 
 COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
 
+COBJS-$(CONFIG_MPC8641) += ddr-8641.o
+# 8610 & 8641 are identical w/regards to DDR
+COBJS-$(CONFIG_MPC8610) += ddr-8641.o
+
 SRCS   := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
 START  := $(addprefix $(obj),$(START))