2008-03-25 17:47:20 +00:00
|
|
|
# Makefile for kernel virtual machines on s390
|
|
|
|
#
|
|
|
|
# Copyright IBM Corp. 2008
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License (version 2 only)
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
|
2013-05-14 13:31:02 +00:00
|
|
|
KVM := ../../../virt/kvm
|
2013-07-15 11:36:01 +00:00
|
|
|
common-objs = $(KVM)/kvm_main.o $(KVM)/eventfd.o $(KVM)/async_pf.o $(KVM)/irqchip.o
|
2008-03-25 17:47:20 +00:00
|
|
|
|
2011-01-14 14:12:32 +00:00
|
|
|
ccflags-y := -Ivirt/kvm -Iarch/s390/kvm
|
2008-03-25 17:47:20 +00:00
|
|
|
|
2014-01-01 15:26:52 +00:00
|
|
|
kvm-objs := $(common-objs) kvm-s390.o intercept.o interrupt.o priv.o sigp.o
|
2014-01-23 11:26:52 +00:00
|
|
|
kvm-objs += diag.o gaccess.o guestdbg.o
|
2014-01-01 15:26:52 +00:00
|
|
|
|
2008-03-25 17:47:20 +00:00
|
|
|
obj-$(CONFIG_KVM) += kvm.o
|