summaryrefslogtreecommitdiffstats
path: root/Makefile.config
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2015-06-26 22:23:54 +0100
committerPeter Robinson <pbrobinson@gmail.com>2015-06-26 22:23:54 +0100
commitc9229e16082bdc9b2f74a08bfdc77bcfed51df18 (patch)
treed0dc594ee4e22079886c874a91561c46c4aeea74 /Makefile.config
parent35eff41288ccf2a1ddd555db0b0e51906af970a0 (diff)
downloadkernel-c9229e16082bdc9b2f74a08bfdc77bcfed51df18.tar.gz
kernel-c9229e16082bdc9b2f74a08bfdc77bcfed51df18.tar.xz
kernel-c9229e16082bdc9b2f74a08bfdc77bcfed51df18.zip
Reorganisation and cleanup of the powerpc configs
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config23
1 files changed, 10 insertions, 13 deletions
diff --git a/Makefile.config b/Makefile.config
index 63549f642..148e21fef 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -12,9 +12,9 @@ CONFIGFILES = \
$(CFG)-armv7hl.config $(CFG)-armv7hl-lpae.config \
$(CFG)-aarch64.config \
$(CFG)-ppc64.config $(CFG)-ppc64p7.config $(CFG)-ppc64-debug.config \
- $(CFG)-ppc64le.config
+ $(CFG)-ppc64le.config $(CFG)-ppc64le-debug.config
-PLATFORMS = x86 x86_64 powerpc powerpc64 s390x arm arm64
+PLATFORMS = x86 x86_64 powerpc s390x arm arm64
TEMPFILES = $(addprefix temp-, $(addsuffix -generic, $(PLATFORMS)))
configs: $(CONFIGFILES)
@@ -74,18 +74,12 @@ temp-x86_64-generic: temp-x86-64 temp-generic
temp-x86_64-debug-generic: temp-x86-64 temp-debug-generic
perl merge.pl $^ > $@
-temp-powerpc-generic: config-powerpc-generic temp-generic
+temp-powerpc64-generic: config-powerpc64-generic temp-generic
perl merge.pl $^ > $@
-temp-powerpc-debug-generic: config-powerpc-generic temp-debug-generic
+temp-powerpc64-debug-generic: config-powerpc64-generic temp-debug-generic
perl merge.pl $^ > $@
-temp-powerpc64-generic: config-powerpc64 temp-powerpc-generic
- perl merge.pl $^ > $@
-
-temp-powerpc64le-generic: config-powerpc64le temp-powerpc64-generic
- perl merge.pl $^ > $@
-
temp-s390-generic: config-s390x temp-generic
perl merge.pl $^ > $@
@@ -107,16 +101,19 @@ $(CFG)-x86_64.config: /dev/null temp-x86_64-generic
$(CFG)-x86_64-debug.config: /dev/null temp-x86_64-debug-generic
perl merge.pl $^ x86_64 > $@
-$(CFG)-ppc64.config: /dev/null temp-powerpc64-generic
+$(CFG)-ppc64.config: config-powerpc64 temp-powerpc64-generic
perl merge.pl $^ powerpc > $@
-$(CFG)-ppc64-debug.config: temp-powerpc64-generic temp-powerpc-debug-generic
+$(CFG)-ppc64-debug.config: config-powerpc64 temp-powerpc64-debug-generic
perl merge.pl $^ powerpc > $@
$(CFG)-ppc64p7.config: config-powerpc64p7 temp-powerpc64-generic
perl merge.pl $^ powerpc > $@
-$(CFG)-ppc64le.config: /dev/null temp-powerpc64le-generic
+$(CFG)-ppc64le.config: config-powerpc64le temp-powerpc64-generic
+ perl merge.pl $^ powerpc > $@
+
+$(CFG)-ppc64le-debug.config: config-powerpc64le temp-powerpc64-debug-generic
perl merge.pl $^ powerpc > $@
$(CFG)-s390x.config: config-s390x temp-s390-generic