Makefile 422 B

1234567891011121314
  1. # Makefile for kvm guest drivers on s390
  2. #
  3. # Copyright IBM Corp. 2008
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License (version 2 only)
  7. # as published by the Free Software Foundation.
  8. s390-virtio-objs := virtio_ccw.o
  9. ifdef CONFIG_S390_GUEST_OLD_TRANSPORT
  10. s390-virtio-objs += kvm_virtio.o
  11. endif
  12. obj-$(CONFIG_S390_GUEST) += $(s390-virtio-objs)