Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.1 20 lines 422 B view raw
1# SPDX-License-Identifier: GPL-2.0 2# Makefile for KVM support for MIPS 3# 4 5include $(srctree)/virt/kvm/Makefile.kvm 6 7ccflags-y += -Ivirt/kvm -Iarch/mips/kvm 8 9kvm-$(CONFIG_CPU_HAS_MSA) += msa.o 10 11kvm-y += mips.o emulate.o entry.o \ 12 interrupt.o stats.o \ 13 fpu.o 14kvm-y += hypcall.o 15kvm-y += mmu.o 16kvm-$(CONFIG_CPU_LOONGSON64) += loongson_ipi.o 17 18kvm-y += vz.o 19obj-$(CONFIG_KVM) += kvm.o 20obj-y += callback.o tlb.o