mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-08 20:40:24 +00:00
![Thomas Gleixner](/assets/img/avatar_default.png)
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
21 lines
477 B
Makefile
21 lines
477 B
Makefile
#
|
|
# Makefile for x86-compatible CPU details and quirks
|
|
#
|
|
|
|
obj-y := common.o proc.o bugs.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_MCE) += ../../../x86/kernel/cpu/mcheck/
|
|
|
|
obj-$(CONFIG_MTRR) += ../../../x86/kernel/cpu/mtrr/
|
|
obj-$(CONFIG_CPU_FREQ) += ../../../x86/kernel/cpu/cpufreq/
|
|
|
|
obj-$(CONFIG_X86_LOCAL_APIC) += perfctr-watchdog.o
|