]> git.proxmox.com Git - mirror_qemu.git/blob - Makefile
Merge remote-tracking branch 'remotes/borntraeger/tags/s390x-20170201' into staging
[mirror_qemu.git] / Makefile
1 # Makefile for QEMU.
2
3 # Always point to the root of the build tree (needs GNU make).
4 BUILD_DIR=$(CURDIR)
5
6 # Before including a proper config-host.mak, assume we are in the source tree
7 SRC_PATH=.
8
9 UNCHECKED_GOALS := %clean TAGS cscope ctags docker docker-%
10
11 # All following code might depend on configuration variables
12 ifneq ($(wildcard config-host.mak),)
13 # Put the all: rule here so that config-host.mak can contain dependencies.
14 all:
15 include config-host.mak
16
17 # Check that we're not trying to do an out-of-tree build from
18 # a tree that's been used for an in-tree build.
19 ifneq ($(realpath $(SRC_PATH)),$(realpath .))
20 ifneq ($(wildcard $(SRC_PATH)/config-host.mak),)
21 $(error This is an out of tree build but your source tree ($(SRC_PATH)) \
22 seems to have been used for an in-tree build. You can fix this by running \
23 "make distclean && rm -rf *-linux-user *-softmmu" in your source tree)
24 endif
25 endif
26
27 CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
28 CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
29 CONFIG_ALL=y
30 -include config-all-devices.mak
31 -include config-all-disas.mak
32
33 config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios
34 @echo $@ is out-of-date, running configure
35 @# TODO: The next lines include code which supports a smooth
36 @# transition from old configurations without config.status.
37 @# This code can be removed after QEMU 1.7.
38 @if test -x config.status; then \
39 ./config.status; \
40 else \
41 sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh; \
42 fi
43 else
44 config-host.mak:
45 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
46 @echo "Please call configure before running make!"
47 @exit 1
48 endif
49 endif
50
51 include $(SRC_PATH)/rules.mak
52
53 GENERATED_HEADERS = qemu-version.h config-host.h qemu-options.def
54 GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h qapi-event.h
55 GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c
56 GENERATED_HEADERS += qmp-introspect.h
57 GENERATED_SOURCES += qmp-introspect.c
58
59 GENERATED_HEADERS += trace/generated-tracers.h
60 ifeq ($(findstring dtrace,$(TRACE_BACKENDS)),dtrace)
61 GENERATED_HEADERS += trace/generated-tracers-dtrace.h
62 endif
63 GENERATED_SOURCES += trace/generated-tracers.c
64
65 GENERATED_HEADERS += trace/generated-tcg-tracers.h
66
67 GENERATED_HEADERS += trace/generated-helpers-wrappers.h
68 GENERATED_HEADERS += trace/generated-helpers.h
69 GENERATED_SOURCES += trace/generated-helpers.c
70
71 ifeq ($(findstring ust,$(TRACE_BACKENDS)),ust)
72 GENERATED_HEADERS += trace/generated-ust-provider.h
73 GENERATED_SOURCES += trace/generated-ust.c
74 endif
75
76 GENERATED_HEADERS += module_block.h
77
78 # Don't try to regenerate Makefile or configure
79 # We don't generate any of them
80 Makefile: ;
81 configure: ;
82
83 .PHONY: all clean cscope distclean html info install install-doc \
84 pdf txt recurse-all speed test dist msi FORCE
85
86 $(call set-vpath, $(SRC_PATH))
87
88 LIBS+=-lz $(LIBS_TOOLS)
89
90 HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
91
92 ifdef BUILD_DOCS
93 DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
94 DOCS+=docs/qemu-qmp-ref.html docs/qemu-qmp-ref.txt docs/qemu-qmp-ref.7
95 DOCS+=docs/qemu-ga-ref.html docs/qemu-ga-ref.txt docs/qemu-ga-ref.7
96 ifdef CONFIG_VIRTFS
97 DOCS+=fsdev/virtfs-proxy-helper.1
98 endif
99 else
100 DOCS=
101 endif
102
103 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
104 SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
105 SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
106
107 ifeq ($(SUBDIR_DEVICES_MAK),)
108 config-all-devices.mak:
109 $(call quiet-command,echo '# no devices' > $@,"GEN","$@")
110 else
111 config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
112 $(call quiet-command, sed -n \
113 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
114 $(SUBDIR_DEVICES_MAK) | sort -u > $@, \
115 "GEN","$@")
116 endif
117
118 -include $(SUBDIR_DEVICES_MAK_DEP)
119
120 %/config-devices.mak: default-configs/%.mak $(SRC_PATH)/scripts/make_device_config.sh
121 $(call quiet-command, \
122 $(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp,"GEN","$@.tmp")
123 $(call quiet-command, if test -f $@; then \
124 if cmp -s $@.old $@; then \
125 mv $@.tmp $@; \
126 cp -p $@ $@.old; \
127 else \
128 if test -f $@.old; then \
129 echo "WARNING: $@ (user modified) out of date.";\
130 else \
131 echo "WARNING: $@ out of date.";\
132 fi; \
133 echo "Run \"make defconfig\" to regenerate."; \
134 rm $@.tmp; \
135 fi; \
136 else \
137 mv $@.tmp $@; \
138 cp -p $@ $@.old; \
139 fi,"GEN","$@");
140
141 defconfig:
142 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
143
144 ifneq ($(wildcard config-host.mak),)
145 include $(SRC_PATH)/Makefile.objs
146 endif
147
148 dummy := $(call unnest-vars,, \
149 stub-obj-y \
150 chardev-obj-y \
151 util-obj-y \
152 qga-obj-y \
153 ivshmem-client-obj-y \
154 ivshmem-server-obj-y \
155 libvhost-user-obj-y \
156 qga-vss-dll-obj-y \
157 block-obj-y \
158 block-obj-m \
159 crypto-obj-y \
160 crypto-aes-obj-y \
161 qom-obj-y \
162 io-obj-y \
163 common-obj-y \
164 common-obj-m)
165
166 ifneq ($(wildcard config-host.mak),)
167 include $(SRC_PATH)/tests/Makefile.include
168 endif
169
170 all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules
171
172 qemu-version.h: FORCE
173 $(call quiet-command, \
174 (cd $(SRC_PATH); \
175 printf '#define QEMU_PKGVERSION '; \
176 if test -n "$(PKGVERSION)"; then \
177 printf '"$(PKGVERSION)"\n'; \
178 else \
179 if test -d .git; then \
180 printf '" ('; \
181 git describe --match 'v*' 2>/dev/null | tr -d '\n'; \
182 if ! git diff-index --quiet HEAD &>/dev/null; then \
183 printf -- '-dirty'; \
184 fi; \
185 printf ')"\n'; \
186 else \
187 printf '""\n'; \
188 fi; \
189 fi) > $@.tmp)
190 $(call quiet-command, cmp -s $@ $@.tmp || mv $@.tmp $@)
191
192 config-host.h: config-host.h-timestamp
193 config-host.h-timestamp: config-host.mak
194 qemu-options.def: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
195 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
196
197 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
198 SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))
199
200 $(SOFTMMU_SUBDIR_RULES): $(block-obj-y)
201 $(SOFTMMU_SUBDIR_RULES): $(crypto-obj-y)
202 $(SOFTMMU_SUBDIR_RULES): $(io-obj-y)
203 $(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
204
205 subdir-%:
206 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
207
208 subdir-pixman: pixman/Makefile
209 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,)
210
211 pixman/Makefile: $(SRC_PATH)/pixman/configure
212 (cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static)
213
214 $(SRC_PATH)/pixman/configure:
215 (cd $(SRC_PATH)/pixman; autoreconf -v --install)
216
217 DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
218 DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
219 DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
220
221 subdir-dtc:dtc/libfdt dtc/tests
222 $(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS) CPPFLAGS="$(DTC_CPPFLAGS)" CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)" AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
223
224 dtc/%:
225 mkdir -p $@
226
227 $(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) $(chardev-obj-y) \
228 $(qom-obj-y) $(crypto-aes-obj-$(CONFIG_USER_ONLY))
229
230 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
231 # Only keep -O and -g cflags
232 romsubdir-%:
233 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/" CFLAGS="$(filter -O% -g%,$(CFLAGS))",)
234
235 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
236
237 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
238
239 $(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
240 $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
241
242 Makefile: $(version-obj-y)
243
244 ######################################################################
245 # Build libraries
246
247 libqemustub.a: $(stub-obj-y)
248 libqemuutil.a: $(util-obj-y)
249
250 ######################################################################
251
252 qemu-img.o: qemu-img-cmds.h
253
254 qemu-img$(EXESUF): qemu-img.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) libqemuutil.a libqemustub.a
255 qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) libqemuutil.a libqemustub.a
256 qemu-io$(EXESUF): qemu-io.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) libqemuutil.a libqemustub.a
257
258 qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o libqemuutil.a libqemustub.a
259
260 fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o libqemuutil.a libqemustub.a
261 fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
262
263 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
264 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
265
266 qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
267 qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
268
269 gen-out-type = $(subst .,-,$(suffix $@))
270
271 qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
272 qapi-py += $(SRC_PATH)/scripts/qapi2texi.py
273
274 qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
275 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
276 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
277 $(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
278 "GEN","$@")
279 qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
280 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
281 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
282 $(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
283 "GEN","$@")
284 qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
285 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
286 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
287 $(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
288 "GEN","$@")
289
290 qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \
291 $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \
292 $(SRC_PATH)/qapi/event.json $(SRC_PATH)/qapi/introspect.json \
293 $(SRC_PATH)/qapi/crypto.json $(SRC_PATH)/qapi/rocker.json \
294 $(SRC_PATH)/qapi/trace.json
295
296 qapi-types.c qapi-types.h :\
297 $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
298 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
299 $(gen-out-type) -o "." -b $<, \
300 "GEN","$@")
301 qapi-visit.c qapi-visit.h :\
302 $(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
303 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
304 $(gen-out-type) -o "." -b $<, \
305 "GEN","$@")
306 qapi-event.c qapi-event.h :\
307 $(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
308 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
309 $(gen-out-type) -o "." $<, \
310 "GEN","$@")
311 qmp-commands.h qmp-marshal.c :\
312 $(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
313 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
314 $(gen-out-type) -o "." $<, \
315 "GEN","$@")
316 qmp-introspect.h qmp-introspect.c :\
317 $(qapi-modules) $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py)
318 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \
319 $(gen-out-type) -o "." $<, \
320 "GEN","$@")
321
322 QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
323 $(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
324
325 qemu-ga$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a
326 $(call LINK, $^)
327
328 ifdef QEMU_GA_MSI_ENABLED
329 QEMU_GA_MSI=qemu-ga-$(ARCH).msi
330
331 msi: $(QEMU_GA_MSI)
332
333 $(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
334
335 $(QEMU_GA_MSI): config-host.mak
336
337 $(QEMU_GA_MSI): $(SRC_PATH)/qga/installer/qemu-ga.wxs
338 $(call quiet-command,QEMU_GA_VERSION="$(QEMU_GA_VERSION)" QEMU_GA_MANUFACTURER="$(QEMU_GA_MANUFACTURER)" QEMU_GA_DISTRO="$(QEMU_GA_DISTRO)" BUILD_DIR="$(BUILD_DIR)" \
339 wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
340 else
341 msi:
342 @echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
343 endif
344
345 ifneq ($(EXESUF),)
346 .PHONY: qemu-ga
347 qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
348 endif
349
350 ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) libqemuutil.a libqemustub.a
351 $(call LINK, $^)
352 ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) libqemuutil.a libqemustub.a
353 $(call LINK, $^)
354
355 module_block.h: $(SRC_PATH)/scripts/modules/module_block.py config-host.mak
356 $(call quiet-command,$(PYTHON) $< $@ \
357 $(addprefix $(SRC_PATH)/,$(patsubst %.mo,%.c,$(block-obj-m))), \
358 "GEN","$@")
359
360 clean:
361 # avoid old build problems by removing potentially incorrect old files
362 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
363 rm -f qemu-options.def
364 rm -f *.msi
365 find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f -exec rm {} +
366 rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
367 rm -f fsdev/*.pod
368 rm -f qemu-img-cmds.h
369 rm -f ui/shader/*-vert.h ui/shader/*-frag.h
370 @# May not be present in GENERATED_HEADERS
371 rm -f trace/generated-tracers-dtrace.dtrace*
372 rm -f trace/generated-tracers-dtrace.h*
373 rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
374 rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp)
375 rm -rf qapi-generated
376 rm -rf qga/qapi-generated
377 for d in $(ALL_SUBDIRS); do \
378 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
379 rm -f $$d/qemu-options.def; \
380 done
381 rm -f $(SUBDIR_DEVICES_MAK) config-all-devices.mak
382
383 VERSION ?= $(shell cat VERSION)
384
385 dist: qemu-$(VERSION).tar.bz2
386
387 qemu-%.tar.bz2:
388 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
389
390 distclean: clean
391 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi qemu-monitor-info.texi
392 rm -f config-all-devices.mak config-all-disas.mak config.status
393 rm -f po/*.mo tests/qemu-iotests/common.env
394 rm -f roms/seabios/config.mak roms/vgabios/config.mak
395 rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps
396 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
397 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
398 rm -f qemu-doc.vr qemu-doc.txt
399 rm -f config.log
400 rm -f linux-headers/asm
401 rm -f qemu-ga-qapi.texi qemu-qapi.texi
402 rm -f docs/qemu-qmp-ref.7 docs/qemu-ga-ref.7
403 rm -f docs/qemu-qmp-ref.txt docs/qemu-ga-ref.txt
404 rm -f docs/qemu-qmp-ref.pdf docs/qemu-ga-ref.pdf
405 rm -f docs/qemu-qmp-ref.html docs/qemu-ga-ref.html
406 for d in $(TARGET_DIRS); do \
407 rm -rf $$d || exit 1 ; \
408 done
409 rm -Rf .sdk
410 if test -f pixman/config.log; then $(MAKE) -C pixman distclean; fi
411 if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
412
413 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
414 ar de en-us fi fr-be hr it lv nl pl ru th \
415 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \
416 bepo cz
417
418 ifdef INSTALL_BLOBS
419 BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
420 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
421 acpi-dsdt.aml \
422 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
423 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
424 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
425 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
426 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
427 efi-e1000e.rom efi-vmxnet3.rom \
428 qemu-icon.bmp qemu_logo_no_text.svg \
429 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
430 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin \
431 s390-ccw.img \
432 spapr-rtas.bin slof.bin skiboot.lid \
433 palcode-clipper \
434 u-boot.e500
435 else
436 BLOBS=
437 endif
438
439 install-doc: $(DOCS)
440 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
441 $(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
442 $(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
443 $(INSTALL_DATA) docs/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
444 $(INSTALL_DATA) docs/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
445 ifdef CONFIG_POSIX
446 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
447 $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
448 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
449 $(INSTALL_DATA) docs/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
450 ifneq ($(TOOLS),)
451 $(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
452 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
453 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
454 endif
455 ifneq (,$(findstring qemu-ga,$(TOOLS)))
456 $(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
457 $(INSTALL_DATA) docs/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)"
458 $(INSTALL_DATA) docs/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)"
459 $(INSTALL_DATA) docs/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7"
460 endif
461 endif
462 ifdef CONFIG_VIRTFS
463 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
464 $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
465 endif
466
467 install-datadir:
468 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
469
470 install-localstatedir:
471 ifdef CONFIG_POSIX
472 ifneq (,$(findstring qemu-ga,$(TOOLS)))
473 $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
474 endif
475 endif
476
477
478 install: all $(if $(BUILD_DOCS),install-doc) \
479 install-datadir install-localstatedir
480 ifneq ($(TOOLS),)
481 $(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(TOOLS)),$(DESTDIR)$(bindir))
482 endif
483 ifneq ($(CONFIG_MODULES),)
484 $(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
485 for s in $(modules-m:.mo=$(DSOSUF)); do \
486 t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
487 $(INSTALL_LIB) $$s "$$t"; \
488 test -z "$(STRIP)" || $(STRIP) "$$t"; \
489 done
490 endif
491 ifneq ($(HELPERS-y),)
492 $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
493 endif
494 ifneq ($(BLOBS),)
495 set -e; for x in $(BLOBS); do \
496 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
497 done
498 endif
499 ifeq ($(CONFIG_GTK),y)
500 $(MAKE) -C po $@
501 endif
502 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
503 set -e; for x in $(KEYMAPS); do \
504 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
505 done
506 $(INSTALL_DATA) $(BUILD_DIR)/trace-events-all "$(DESTDIR)$(qemu_datadir)/trace-events-all"
507 for d in $(TARGET_DIRS); do \
508 $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
509 done
510
511 # various test targets
512 test speed: all
513 $(MAKE) -C tests/tcg $@
514
515 .PHONY: ctags
516 ctags:
517 rm -f tags
518 find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +
519
520 .PHONY: TAGS
521 TAGS:
522 rm -f TAGS
523 find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
524
525 cscope:
526 rm -f "$(SRC_PATH)"/cscope.*
527 find "$(SRC_PATH)/" -name "*.[chsS]" -print | sed 's,^\./,,' > "$(SRC_PATH)/cscope.files"
528 cscope -b -i"$(SRC_PATH)/cscope.files"
529
530 # opengl shader programs
531 ui/shader/%-vert.h: $(SRC_PATH)/ui/shader/%.vert $(SRC_PATH)/scripts/shaderinclude.pl
532 @mkdir -p $(dir $@)
533 $(call quiet-command,\
534 perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
535 "VERT","$@")
536
537 ui/shader/%-frag.h: $(SRC_PATH)/ui/shader/%.frag $(SRC_PATH)/scripts/shaderinclude.pl
538 @mkdir -p $(dir $@)
539 $(call quiet-command,\
540 perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
541 "FRAG","$@")
542
543 ui/console-gl.o: $(SRC_PATH)/ui/console-gl.c \
544 ui/shader/texture-blit-vert.h ui/shader/texture-blit-frag.h
545
546 # documentation
547 MAKEINFO=makeinfo
548 MAKEINFOFLAGS=--no-split --number-sections -D 'VERSION $(VERSION)'
549 TEXIFLAG=$(if $(V),,--quiet) --command='@set VERSION $(VERSION)'
550
551 %.html: %.texi
552 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
553 --html $< -o $@,"GEN","$@")
554
555 %.info: %.texi
556 $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
557
558 %.txt: %.texi
559 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
560 --plaintext $< -o $@,"GEN","$@")
561
562 %.pdf: %.texi
563 $(call quiet-command,texi2pdf $(TEXIFLAG) -I $(SRC_PATH) -I . $< -o $@,"GEN","$@")
564
565 qemu-options.texi: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
566 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
567
568 qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
569 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
570
571 qemu-monitor-info.texi: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
572 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
573
574 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
575 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
576
577 qemu-qapi.texi: $(qapi-modules) $(qapi-py)
578 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
579
580 qemu-ga-qapi.texi: $(SRC_PATH)/qga/qapi-schema.json $(qapi-py)
581 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
582
583 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
584 qemu.1: qemu-option-trace.texi
585 qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
586 fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
587 qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
588 qemu-ga.8: qemu-ga.texi
589
590 html: qemu-doc.html docs/qemu-qmp-ref.html docs/qemu-ga-ref.html
591 info: qemu-doc.info docs/qemu-qmp-ref.info docs/qemu-ga-ref.info
592 pdf: qemu-doc.pdf docs/qemu-qmp-ref.pdf docs/qemu-ga-ref.pdf
593 txt: qemu-doc.txt docs/qemu-qmp-ref.txt docs/qemu-ga-ref.txt
594
595 qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
596 qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
597 qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
598 qemu-monitor-info.texi
599
600 docs/qemu-ga-ref.dvi docs/qemu-ga-ref.html docs/qemu-ga-ref.info docs/qemu-ga-ref.pdf docs/qemu-ga-ref.txt docs/qemu-ga-ref.7: \
601 docs/qemu-ga-ref.texi qemu-ga-qapi.texi
602
603 docs/qemu-qmp-ref.dvi docs/qemu-qmp-ref.html docs/qemu-qmp-ref.info docs/qemu-qmp-ref.pdf docs/qemu-qmp-ref.txt docs/qemu-qmp-ref.7: \
604 docs/qemu-qmp-ref.texi qemu-qapi.texi
605
606
607 ifdef CONFIG_WIN32
608
609 INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
610
611 nsisflags = -V2 -NOCD
612
613 ifneq ($(wildcard $(SRC_PATH)/dll),)
614 ifeq ($(ARCH),x86_64)
615 # 64 bit executables
616 DLL_PATH = $(SRC_PATH)/dll/w64
617 nsisflags += -DW64
618 else
619 # 32 bit executables
620 DLL_PATH = $(SRC_PATH)/dll/w32
621 endif
622 endif
623
624 .PHONY: installer
625 installer: $(INSTALLER)
626
627 INSTDIR=/tmp/qemu-nsis
628
629 $(INSTALLER): $(SRC_PATH)/qemu.nsi
630 $(MAKE) install prefix=${INSTDIR}
631 ifdef SIGNCODE
632 (cd ${INSTDIR}; \
633 for i in *.exe; do \
634 $(SIGNCODE) $${i}; \
635 done \
636 )
637 endif # SIGNCODE
638 (cd ${INSTDIR}; \
639 for i in qemu-system-*.exe; do \
640 arch=$${i%.exe}; \
641 arch=$${arch#qemu-system-}; \
642 echo Section \"$$arch\" Section_$$arch; \
643 echo SetOutPath \"\$$INSTDIR\"; \
644 echo File \"\$${BINDIR}\\$$i\"; \
645 echo SectionEnd; \
646 done \
647 ) >${INSTDIR}/system-emulations.nsh
648 makensis $(nsisflags) \
649 $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
650 $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
651 -DBINDIR="${INSTDIR}" \
652 $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
653 -DSRCDIR="$(SRC_PATH)" \
654 -DOUTFILE="$(INSTALLER)" \
655 -DDISPLAYVERSION="$(VERSION)" \
656 $(SRC_PATH)/qemu.nsi
657 rm -r ${INSTDIR}
658 ifdef SIGNCODE
659 $(SIGNCODE) $(INSTALLER)
660 endif # SIGNCODE
661 endif # CONFIG_WIN
662
663 # Add a dependency on the generated files, so that they are always
664 # rebuilt before other object files
665 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
666 Makefile: $(GENERATED_HEADERS)
667 endif
668
669 # Include automatically generated dependency files
670 # Dependencies in Makefile.objs files come from our recursive subdir rules
671 -include $(wildcard *.d tests/*.d)
672
673 include $(SRC_PATH)/tests/docker/Makefile.include
674
675 .PHONY: help
676 help:
677 @echo 'Generic targets:'
678 @echo ' all - Build all'
679 @echo ' dir/file.o - Build specified target only'
680 @echo ' install - Install QEMU, documentation and tools'
681 @echo ' ctags/TAGS - Generate tags file for editors'
682 @echo ' cscope - Generate cscope index'
683 @echo ''
684 @$(if $(TARGET_DIRS), \
685 echo 'Architecture specific targets:'; \
686 $(foreach t, $(TARGET_DIRS), \
687 printf " %-30s - Build for %s\\n" $(patsubst %,subdir-%,$(t)) $(t);) \
688 echo '')
689 @echo 'Cleaning targets:'
690 @echo ' clean - Remove most generated files but keep the config'
691 @echo ' distclean - Remove all generated files'
692 @echo ' dist - Build a distributable tarball'
693 @echo ''
694 @echo 'Test targets:'
695 @echo ' check - Run all tests (check-help for details)'
696 @echo ' docker - Help about targets running tests inside Docker containers'
697 @echo ''
698 @echo 'Documentation targets:'
699 @echo ' html info pdf txt'
700 @echo ' - Build documentation in specified format'
701 @echo ''
702 ifdef CONFIG_WIN32
703 @echo 'Windows targets:'
704 @echo ' installer - Build NSIS-based installer for QEMU'
705 ifdef QEMU_GA_MSI_ENABLED
706 @echo ' msi - Build MSI-based installer for qemu-ga'
707 endif
708 @echo ''
709 endif
710 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'