]> git.proxmox.com Git - mirror_qemu.git/blob - Makefile.objs
meson: convert fsdev/
[mirror_qemu.git] / Makefile.objs
1 #######################################################################
2 # Common libraries for tools and emulators
3 qom-obj-y = qom/libqom.fa
4
5 #######################################################################
6 # code used by both qemu system emulation and qemu-img
7
8 ifeq ($(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS)),y)
9
10 authz-obj-y = authz/libauthz.fa
11 authz/libauthz.fa-libs = $(if $(CONFIG_AUTH_PAM),-lpam)
12
13 block-obj-y += libblock.fa
14
15 libblock.fa-libs = $(ZSTD_LIBS)
16 libblock.fa-libs += $(LIBNFS_LIBS)
17 libblock.fa-libs += $(LIBISCSI_LIBS)
18 libblock.fa-libs += $(CURL_LIBS)
19 libblock.fa-libs += $(RBD_LIBS)
20 libblock.fa-libs += $(GLUSTERFS_LIBS)
21 libblock.fa-libs += $(VXHS_LIBS)
22 libblock.fa-libs += $(LIBSSH_LIBS)
23 libblock.fa-libs += $(BZIP2_LIBS)
24 libblock.fa-libs += $(LZFSE_LIBS)
25 libblock.fa-libs += $(if $(CONFIG_LINUX_AIO),-laio)
26 libblock.fa-libs += $(LIBXML2_LIBS)
27
28 chardev-obj-y = chardev/libchardev.fa
29
30 crypto-obj-y = crypto/libcrypto.fa
31
32 io-obj-y = io/libio.fa
33
34 endif # CONFIG_SOFTMMU or CONFIG_TOOLS
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
41 ifeq ($(CONFIG_SOFTMMU),y)
42 common-obj-y = accel/
43
44 common-obj-$(CONFIG_AUDIO_ALSA) += audio-alsa$(DSOSUF)
45 common-obj-$(CONFIG_AUDIO_OSS) += audio-oss$(DSOSUF)
46 common-obj-$(CONFIG_AUDIO_PA) += audio-pa$(DSOSUF)
47 common-obj-$(CONFIG_AUDIO_SDL) += audio-sdl$(DSOSUF)
48
49 common-obj-$(if $(CONFIG_CURSES),m) += ui-curses$(DSOSUF)
50 common-obj-$(if $(CONFIG_GTK),m) += ui-gtk$(DSOSUF)
51 common-obj-$(if $(CONFIG_SDL),m) += ui-sdl$(DSOSUF)
52 common-obj-$(if $(CONFIG_SPICE),m) += ui-spice-app$(DSOSUF)
53
54 common-obj-$(if $(CONFIG_CURL),m) += block-curl$(DSOSUF)
55 common-obj-$(if $(CONFIG_GLUSTERFS),m) += block-gluster$(DSOSUF)
56 common-obj-$(if $(CONFIG_LIBISCSI),m) += block-iscsi$(DSOSUF)
57 common-obj-$(if $(CONFIG_LIBNFS),m) += block-nfs$(DSOSUF)
58 common-obj-$(if $(CONFIG_LIBSSH),m) += block-ssh$(DSOSUF)
59 common-obj-$(if $(CONFIG_RBD),m) += block-rbd$(DSOSUF)
60
61 common-obj-$(if $(CONFIG_LZFSE),m) += block-dmg-lzfse$(DSOSUF)
62 common-obj-$(if $(and $(CONFIG_BZIP2),$(CONFIG_DMG)),m) += block-dmg-bz2$(DSOSUF)
63
64 common-obj-y += hw/
65 common-obj-m += hw/
66
67 common-obj-y += qapi/
68
69 common-obj-y += libqmp.fa
70
71 endif # CONFIG_SOFTMMU
72
73 #######################################################################
74 # Target-independent parts used in system and user emulation
75
76 common-obj-y += hw/
77 common-obj-y += qom/
78 common-obj-y += disas/
79
80 ######################################################################
81 # Resource file for Windows executables
82 version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o