diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 22:37:23 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 22:37:23 +0200 | 
| commit | 34d19e29c9402b6149c128517f73e7773d5838bf (patch) | |
| tree | 5528a8ecba87341c3722cfdd813d315931375c0a /arch/x86/kernel/cpu/Makefile | |
| parent | 5e4181b31366ea13b7b81ce3b0041f5710cc8b65 (diff) | |
| download | linux-34d19e29c9402b6149c128517f73e7773d5838bf.tar.bz2 | |
x86: prepare consolidation of cpu/ related Makefiles
Prepare the makefiles in x86/kernel/cpu and x86/kernel/cpu/mcheck to
be used by the x86_64 build as well.
No code change.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/Makefile')
| -rw-r--r-- | arch/x86/kernel/cpu/Makefile | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile index 778396c78d65..cfdb2f3bd763 100644 --- a/arch/x86/kernel/cpu/Makefile +++ b/arch/x86/kernel/cpu/Makefile @@ -2,19 +2,19 @@  # Makefile for x86-compatible CPU details and quirks  # -obj-y	:=	common.o proc.o bugs.o +obj-y			:= intel_cacheinfo.o addon_cpuid_features.o -obj-y	+=	amd.o -obj-y	+=	cyrix.o -obj-y	+=	centaur.o -obj-y	+=	transmeta.o -obj-y	+=	intel.o intel_cacheinfo.o addon_cpuid_features.o -obj-y	+=	nexgen.o -obj-y	+=	umc.o +obj-$(CONFIG_X86_32)	+= common.o proc.o bugs.o +obj-$(CONFIG_X86_32)	+= amd.o +obj-$(CONFIG_X86_32)	+= cyrix.o +obj-$(CONFIG_X86_32)	+= centaur.o +obj-$(CONFIG_X86_32)	+= transmeta.o +obj-$(CONFIG_X86_32)	+= intel.o +obj-$(CONFIG_X86_32)	+= nexgen.o +obj-$(CONFIG_X86_32)	+= umc.o -obj-$(CONFIG_X86_MCE)	+=	mcheck/ - -obj-$(CONFIG_MTRR)	+= 	mtrr/ -obj-$(CONFIG_CPU_FREQ)	+=	cpufreq/ +obj-$(CONFIG_X86_MCE)	+= mcheck/ +obj-$(CONFIG_MTRR)	+= mtrr/ +obj-$(CONFIG_CPU_FREQ)	+= cpufreq/  obj-$(CONFIG_X86_LOCAL_APIC) += perfctr-watchdog.o  |