mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
d7d5b05faf
Since all the files are in arch/mips/kvm/, there's no need of the prefixes "kvm_" and "kvm_mips_". Reviewed-by: James Hogan <james.hogan@imgtec.com> Signed-off-by: Deng-Cheng Zhu <dengcheng.zhu@imgtec.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
14 lines
336 B
Makefile
14 lines
336 B
Makefile
# Makefile for KVM support for MIPS
|
|
#
|
|
|
|
common-objs = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o)
|
|
|
|
EXTRA_CFLAGS += -Ivirt/kvm -Iarch/mips/kvm
|
|
|
|
kvm-objs := $(common-objs) mips.o emulate.o locore.o \
|
|
interrupt.o stats.o commpage.o \
|
|
dyntrans.o trap_emul.o
|
|
|
|
obj-$(CONFIG_KVM) += kvm.o
|
|
obj-y += callback.o tlb.o
|