2010-07-29 23:46:31 +00:00
|
|
|
# Make rules for configuration files.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
CFG = kernel-$(VERSION)
|
|
|
|
|
|
|
|
CONFIGFILES = \
|
|
|
|
$(CFG)-i686.config $(CFG)-i686-debug.config \
|
|
|
|
$(CFG)-i686-PAE.config $(CFG)-i686-PAEdebug.config \
|
|
|
|
$(CFG)-x86_64.config $(CFG)-x86_64-debug.config \
|
2011-08-16 14:31:26 +00:00
|
|
|
$(CFG)-s390x.config \
|
2013-06-16 12:31:18 +00:00
|
|
|
$(CFG)-armv7hl.config $(CFG)-armv7hl-lpae.config \
|
|
|
|
$(CFG)-aarch64.config \
|
2010-07-29 23:46:31 +00:00
|
|
|
$(CFG)-ppc.config $(CFG)-ppc-smp.config \
|
2012-08-09 00:25:31 +00:00
|
|
|
$(CFG)-ppc64.config $(CFG)-ppc64p7.config $(CFG)-ppc64-debug.config
|
2010-07-29 23:46:31 +00:00
|
|
|
|
2013-06-16 12:31:18 +00:00
|
|
|
PLATFORMS = x86 x86_64 powerpc powerpc32 powerpc64 s390x arm arm64
|
2010-07-29 23:46:31 +00:00
|
|
|
TEMPFILES = $(addprefix temp-, $(addsuffix -generic, $(PLATFORMS)))
|
|
|
|
|
|
|
|
configs: $(CONFIGFILES)
|
|
|
|
@rm -f kernel-*-config
|
|
|
|
@rm -f $(TEMPFILES)
|
|
|
|
@rm -f temp-generic temp-*-generic temp-*-generic-tmp
|
|
|
|
|
|
|
|
# Augment the clean target to clean up our own cruft
|
|
|
|
clean ::
|
|
|
|
@rm -fv $(CONFIGFILES) $(TEMPFILES) temp-generic kernel-$(VERSION)*config
|
|
|
|
|
|
|
|
temp-generic: config-generic
|
|
|
|
cat config-generic config-nodebug > temp-generic
|
|
|
|
|
|
|
|
temp-debug-generic: config-generic
|
|
|
|
cat config-generic config-debug > temp-debug-generic
|
|
|
|
|
2013-10-03 16:14:40 +00:00
|
|
|
temp-no-extra-generic: config-no-extra temp-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-arm-generic: config-arm-generic temp-no-extra-generic
|
2013-06-16 12:31:18 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-armv7-generic: config-armv7-generic temp-arm-generic
|
2013-03-17 23:20:06 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-armv7: config-armv7 temp-armv7-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-armv7-lpae: config-armv7-lpae temp-armv7-generic
|
2012-10-26 14:38:35 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2013-06-16 12:31:18 +00:00
|
|
|
temp-arm-debug-generic: temp-arm-generic temp-debug-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-arm64: config-arm64 temp-arm-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-arm64-debug: config-arm64 temp-arm-debug-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2011-08-09 23:32:10 +00:00
|
|
|
temp-x86-32: config-x86-32-generic config-x86-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2011-08-09 23:32:10 +00:00
|
|
|
temp-x86-32-generic: temp-x86-32 temp-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2011-08-09 23:32:10 +00:00
|
|
|
temp-x86-debug-generic: temp-x86-32 temp-debug-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2011-08-09 23:32:10 +00:00
|
|
|
temp-x86-64: config-x86_64-generic config-x86-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-x86_64-generic: temp-x86-64 temp-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-x86_64-debug-generic: temp-x86-64 temp-debug-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-powerpc-generic: config-powerpc-generic temp-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-powerpc-debug-generic: config-powerpc-generic temp-debug-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
|
|
|
temp-powerpc32-generic: config-powerpc32-generic temp-powerpc-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2012-08-09 00:25:31 +00:00
|
|
|
temp-powerpc64-generic: config-powerpc64 temp-powerpc-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2010-07-29 23:46:31 +00:00
|
|
|
temp-s390-generic: config-s390x temp-generic
|
|
|
|
perl merge.pl $^ > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-i686-PAE.config: config-i686-PAE temp-x86-32-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ i386 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-i686-PAEdebug.config: config-i686-PAE temp-x86-debug-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ i386 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-i686.config: /dev/null temp-x86-32-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ i386 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-i686-debug.config: /dev/null temp-x86-debug-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ i386 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-x86_64.config: /dev/null temp-x86_64-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ x86_64 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-x86_64-debug.config: /dev/null temp-x86_64-debug-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ x86_64 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-ppc64.config: /dev/null temp-powerpc64-generic
|
2012-08-09 00:25:31 +00:00
|
|
|
perl merge.pl $^ powerpc > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-ppc64-debug.config: temp-powerpc64-generic temp-powerpc-debug-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ powerpc > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-ppc64p7.config: config-powerpc64p7 temp-powerpc64-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ powerpc > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-s390x.config: config-s390x temp-s390-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ s390 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-armv7hl.config: /dev/null temp-armv7
|
2011-08-16 16:33:15 +00:00
|
|
|
perl merge.pl $^ arm > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-armv7hl-lpae.config: /dev/null temp-armv7-lpae
|
2012-05-08 23:06:18 +00:00
|
|
|
perl merge.pl $^ arm > $@
|
|
|
|
|
2013-06-16 12:31:18 +00:00
|
|
|
$(CFG)-aarch64.config: /dev/null temp-arm64
|
|
|
|
perl merge.pl $^ arm64 > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-ppc.config: /dev/null temp-powerpc32-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ powerpc > $@
|
|
|
|
|
2013-06-10 16:35:14 +00:00
|
|
|
$(CFG)-ppc-smp.config: config-powerpc32-smp temp-powerpc32-generic
|
2010-07-29 23:46:31 +00:00
|
|
|
perl merge.pl $^ powerpc > $@
|