summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/cpu/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-11-28 12:09:59 +0900
committerTom Rini <trini@ti.com>2013-12-16 08:59:42 -0500
commite8a8b8246a5e7dee9db19b14b31039389ccf99af (patch)
tree37cc7a667f5daf371a6df2a8636da4b9c27b2e81 /arch/powerpc/cpu/Makefile
parent6bb6049bf2ecde91b62a4b3d55fa6ee8ed61520e (diff)
downloadtalos-obmc-uboot-e8a8b8246a5e7dee9db19b14b31039389ccf99af.tar.gz
talos-obmc-uboot-e8a8b8246a5e7dee9db19b14b31039389ccf99af.zip
Makefile: Select objects by CONFIG_ rather than $(ARCH) or $(CPU)
Convert like follows: CPU mpc83xx -> CONFIG_MPC83xx CPU mpc85xx -> CONFIG_MPC85xx CPU mpc86xx -> CONFIG_MPC86xx CPU mpc5xxx -> CONFIG_MPC5xxx CPU mpc8xx -> CONFIG_8xx CPU mpc8260 -> CONFIG_8260 CPU ppc4xx -> CONFIG_4xx CPU x86 -> CONFIG_X86 ARCH x86 -> CONFIG_X86 ARCH powerpc -> CONFIG_PPC Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/powerpc/cpu/Makefile')
-rw-r--r--arch/powerpc/cpu/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/cpu/Makefile b/arch/powerpc/cpu/Makefile
index d630abe1da..88b5298be0 100644
--- a/arch/powerpc/cpu/Makefile
+++ b/arch/powerpc/cpu/Makefile
@@ -1,3 +1,3 @@
-ifneq ($(filter mpc83xx mpc85xx mpc86xx,$(CPU)),)
-obj-y += mpc8xxx/
-endif
+obj-$(CONFIG_MPC83xx) += mpc8xxx/
+obj-$(CONFIG_MPC85xx) += mpc8xxx/
+obj-$(CONFIG_MPC86xx) += mpc8xxx/
OpenPOWER on IntegriCloud