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