qemu/Makefile.objs
<<
>>
Prefs
   1#######################################################################
   2# Common libraries for tools and emulators
   3stub-obj-y = stubs/
   4util-obj-y = util/ qobject/ qapi/ trace/
   5
   6#######################################################################
   7# block-obj-y is code used by both qemu system emulation and qemu-img
   8
   9block-obj-y = async.o thread-pool.o
  10block-obj-y += nbd.o block.o blockjob.o
  11block-obj-y += main-loop.o iohandler.o qemu-timer.o
  12block-obj-$(CONFIG_POSIX) += aio-posix.o
  13block-obj-$(CONFIG_WIN32) += aio-win32.o
  14block-obj-y += block/
  15block-obj-y += qapi-types.o qapi-visit.o
  16
  17block-obj-y += qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
  18block-obj-y += qemu-coroutine-sleep.o
  19block-obj-y += coroutine-$(CONFIG_COROUTINE_BACKEND).o
  20
  21ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
  22# Lots of the fsdev/9pcode is pulled in by vl.c via qemu_fsdev_add.
  23# only pull in the actual virtio-9p device if we also enabled virtio.
  24CONFIG_REALLY_VIRTFS=y
  25endif
  26
  27######################################################################
  28# smartcard
  29
  30libcacard-y += libcacard/cac.o libcacard/event.o
  31libcacard-y += libcacard/vcard.o libcacard/vreader.o
  32libcacard-y += libcacard/vcard_emul_nss.o
  33libcacard-y += libcacard/vcard_emul_type.o
  34libcacard-y += libcacard/card_7816.o
  35
  36######################################################################
  37# Target independent part of system emulation. The long term path is to
  38# suppress *all* target specific code in case of system emulation, i.e. a
  39# single QEMU executable should support all CPUs and machines.
  40
  41ifeq ($(CONFIG_SOFTMMU),y)
  42common-obj-y = $(block-obj-y) blockdev.o blockdev-nbd.o block/
  43common-obj-y += net/
  44common-obj-y += readline.o
  45common-obj-$(CONFIG_WIN32) += os-win32.o
  46common-obj-$(CONFIG_POSIX) += os-posix.o
  47
  48common-obj-$(CONFIG_LINUX) += fsdev/
  49
  50common-obj-y += migration.o migration-tcp.o
  51common-obj-y += qemu-char.o #aio.o
  52common-obj-y += block-migration.o
  53common-obj-y += page_cache.o xbzrle.o
  54
  55common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
  56
  57common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
  58
  59common-obj-y += audio/
  60common-obj-y += hw/
  61
  62common-obj-y += ui/
  63common-obj-y += bt-host.o bt-vhci.o
  64
  65common-obj-y += dma-helpers.o
  66common-obj-y += qtest.o
  67common-obj-y += vl.o
  68
  69common-obj-$(CONFIG_SLIRP) += slirp/
  70
  71common-obj-y += backends/
  72
  73common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
  74
  75common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
  76
  77######################################################################
  78# qapi
  79
  80common-obj-y += qmp-marshal.o qapi-visit.o qapi-types.o
  81common-obj-y += qmp.o hmp.o
  82endif
  83
  84#######################################################################
  85# Target-independent parts used in system and user emulation
  86common-obj-y += qemu-log.o
  87common-obj-y += tcg-runtime.o
  88common-obj-y += hw/
  89common-obj-y += qom/
  90common-obj-y += disas/
  91
  92######################################################################
  93# guest agent
  94
  95# FIXME: a few definitions from qapi-types.o/qapi-visit.o are needed
  96# by libqemuutil.a.  These should be moved to a separate .json schema.
  97qga-obj-y = qga/ qapi-types.o qapi-visit.o
  98
  99vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
 100
 101vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
 102
 103QEMU_CFLAGS+=$(GLIB_CFLAGS)
 104
 105nested-vars += \
 106        stub-obj-y \
 107        util-obj-y \
 108        qga-obj-y \
 109        block-obj-y \
 110        common-obj-y
 111dummy := $(call unnest-vars)
 112