You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
339 B
19 lines
339 B
#
|
|
# Makefile for x86-compatible CPU details and quirks
|
|
#
|
|
|
|
obj-y := common.o proc.o
|
|
|
|
obj-y += amd.o
|
|
obj-y += cyrix.o
|
|
obj-y += centaur.o
|
|
obj-y += transmeta.o
|
|
obj-y += intel.o intel_cacheinfo.o
|
|
obj-y += rise.o
|
|
obj-y += nexgen.o
|
|
obj-y += umc.o
|
|
|
|
obj-$(CONFIG_X86_MCE) += mcheck/
|
|
|
|
obj-$(CONFIG_MTRR) += mtrr/
|
|
obj-$(CONFIG_CPU_FREQ) += cpufreq/
|
|
|