2008-03-26 00:47:20 +07: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 20:31:02 +07:00
|
|
|
KVM := ../../../virt/kvm
|
|
|
|
common-objs = $(KVM)/kvm_main.o $(KVM)/eventfd.o
|
2008-03-26 00:47:20 +07:00
|
|
|
|
2011-01-14 21:12:32 +07:00
|
|
|
ccflags-y := -Ivirt/kvm -Iarch/s390/kvm
|
2008-03-26 00:47:20 +07:00
|
|
|
|
2011-07-24 15:48:18 +07:00
|
|
|
kvm-objs := $(common-objs) kvm-s390.o intercept.o interrupt.o priv.o sigp.o diag.o
|
2008-03-26 00:47:20 +07:00
|
|
|
obj-$(CONFIG_KVM) += kvm.o
|