2012-11-16 18:35:27 +01:00
|
|
|
#######################################################################
|
2012-12-20 16:10:26 +01:00
|
|
|
# Common libraries for tools and emulators
|
2019-07-16 17:40:16 +02:00
|
|
|
qom-obj-y = qom/libqom.fa
|
2016-12-12 13:49:01 +01:00
|
|
|
|
2015-10-21 14:16:21 +02:00
|
|
|
#######################################################################
|
2020-01-18 15:06:16 +01:00
|
|
|
# code used by both qemu system emulation and qemu-img
|
2015-10-21 14:16:21 +02:00
|
|
|
|
2020-01-18 15:06:16 +01:00
|
|
|
ifeq ($(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS)),y)
|
2015-10-21 14:16:21 +02:00
|
|
|
|
2019-07-15 20:54:34 +02:00
|
|
|
authz-obj-y = authz/libauthz.fa
|
|
|
|
authz/libauthz.fa-libs = $(if $(CONFIG_AUTH_PAM),-lpam)
|
2010-01-06 20:24:05 +01:00
|
|
|
|
2019-08-29 20:34:43 +02:00
|
|
|
block-obj-y += libblock.fa
|
|
|
|
|
|
|
|
libblock.fa-libs = $(ZSTD_LIBS)
|
|
|
|
libblock.fa-libs += $(LIBNFS_LIBS)
|
|
|
|
libblock.fa-libs += $(LIBISCSI_LIBS)
|
|
|
|
libblock.fa-libs += $(CURL_LIBS)
|
|
|
|
libblock.fa-libs += $(RBD_LIBS)
|
|
|
|
libblock.fa-libs += $(GLUSTERFS_LIBS)
|
|
|
|
libblock.fa-libs += $(VXHS_LIBS)
|
|
|
|
libblock.fa-libs += $(LIBSSH_LIBS)
|
|
|
|
libblock.fa-libs += $(BZIP2_LIBS)
|
|
|
|
libblock.fa-libs += $(LZFSE_LIBS)
|
|
|
|
libblock.fa-libs += $(if $(CONFIG_LINUX_AIO),-laio)
|
|
|
|
libblock.fa-libs += $(LIBXML2_LIBS)
|
2014-02-10 07:48:59 +01:00
|
|
|
|
2019-07-15 21:18:07 +02:00
|
|
|
chardev-obj-y = chardev/libchardev.fa
|
|
|
|
|
2019-07-16 17:28:54 +02:00
|
|
|
crypto-obj-y = crypto/libcrypto.fa
|
2010-04-29 14:14:43 +02:00
|
|
|
|
2019-07-16 17:33:55 +02:00
|
|
|
io-obj-y = io/libio.fa
|
2015-02-27 17:19:33 +01:00
|
|
|
|
2020-01-18 15:06:16 +01:00
|
|
|
endif # CONFIG_SOFTMMU or CONFIG_TOOLS
|
|
|
|
|
2010-01-06 20:24:05 +01:00
|
|
|
######################################################################
|
2011-11-15 13:47:11 +01:00
|
|
|
# Target independent part of system emulation. The long term path is to
|
|
|
|
# suppress *all* target specific code in case of system emulation, i.e. a
|
|
|
|
# single QEMU executable should support all CPUs and machines.
|
2010-01-06 20:24:05 +01:00
|
|
|
|
2013-01-19 11:06:47 +01:00
|
|
|
ifeq ($(CONFIG_SOFTMMU),y)
|
2019-07-25 12:22:34 +02:00
|
|
|
common-obj-y = accel/
|
2010-01-06 20:24:05 +01:00
|
|
|
|
2020-08-17 12:47:55 +02:00
|
|
|
common-obj-$(CONFIG_AUDIO_ALSA) += audio-alsa$(DSOSUF)
|
|
|
|
common-obj-$(CONFIG_AUDIO_OSS) += audio-oss$(DSOSUF)
|
|
|
|
common-obj-$(CONFIG_AUDIO_PA) += audio-pa$(DSOSUF)
|
|
|
|
common-obj-$(CONFIG_AUDIO_SDL) += audio-sdl$(DSOSUF)
|
|
|
|
|
2019-07-16 21:21:02 +02:00
|
|
|
common-obj-$(if $(CONFIG_CURSES),m) += ui-curses$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_GTK),m) += ui-gtk$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_SDL),m) += ui-sdl$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_SPICE),m) += ui-spice-app$(DSOSUF)
|
|
|
|
|
2019-08-29 20:34:43 +02:00
|
|
|
common-obj-$(if $(CONFIG_CURL),m) += block-curl$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_GLUSTERFS),m) += block-gluster$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_LIBISCSI),m) += block-iscsi$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_LIBNFS),m) += block-nfs$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_LIBSSH),m) += block-ssh$(DSOSUF)
|
|
|
|
common-obj-$(if $(CONFIG_RBD),m) += block-rbd$(DSOSUF)
|
|
|
|
|
|
|
|
common-obj-$(if $(CONFIG_LZFSE),m) += block-dmg-lzfse$(DSOSUF)
|
|
|
|
common-obj-$(if $(and $(CONFIG_BZIP2),$(CONFIG_DMG)),m) += block-dmg-bz2$(DSOSUF)
|
|
|
|
|
2020-08-04 21:14:26 +02:00
|
|
|
common-obj-y += libqmp.fa
|
|
|
|
|
2020-01-18 15:06:17 +01:00
|
|
|
endif # CONFIG_SOFTMMU
|
2011-09-02 19:34:47 +02:00
|
|
|
|
2013-08-08 20:18:07 +02:00
|
|
|
######################################################################
|
|
|
|
# Resource file for Windows executables
|
|
|
|
version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
|