trace: [tcg] Define TCG tracing helper routines
[sdk/emulator/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 # All following code might depend on configuration variables
7 ifneq ($(wildcard config-host.mak),)
8 # Put the all: rule here so that config-host.mak can contain dependencies.
9 all:
10 include config-host.mak
11
12 # Check that we're not trying to do an out-of-tree build from
13 # a tree that's been used for an in-tree build.
14 ifneq ($(realpath $(SRC_PATH)),$(realpath .))
15 ifneq ($(wildcard $(SRC_PATH)/config-host.mak),)
16 $(error This is an out of tree build but your source tree ($(SRC_PATH)) \
17 seems to have been used for an in-tree build. You can fix this by running \
18 "make distclean && rm -rf *-linux-user *-softmmu" in your source tree)
19 endif
20 endif
21
22 CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
23 CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
24 CONFIG_ALL=y
25 -include config-all-devices.mak
26 -include config-all-disas.mak
27
28 include $(SRC_PATH)/rules.mak
29 config-host.mak: $(SRC_PATH)/configure
30         @echo $@ is out-of-date, running configure
31         @# TODO: The next lines include code which supports a smooth
32         @# transition from old configurations without config.status.
33         @# This code can be removed after QEMU 1.7.
34         @if test -x config.status; then \
35             ./config.status; \
36         else \
37             sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh; \
38         fi
39 else
40 config-host.mak:
41 ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
42         @echo "Please call configure before running make!"
43         @exit 1
44 endif
45 endif
46
47 GENERATED_HEADERS = config-host.h qemu-options.def
48 GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h qapi-event.h
49 GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c
50
51 GENERATED_HEADERS += trace/generated-events.h
52 GENERATED_SOURCES += trace/generated-events.c
53
54 GENERATED_HEADERS += trace/generated-tracers.h
55 ifeq ($(findstring dtrace,$(TRACE_BACKENDS)),dtrace)
56 GENERATED_HEADERS += trace/generated-tracers-dtrace.h
57 endif
58 GENERATED_SOURCES += trace/generated-tracers.c
59
60 GENERATED_HEADERS += trace/generated-helpers.h
61 GENERATED_SOURCES += trace/generated-helpers.c
62
63 ifeq ($(findstring ust,$(TRACE_BACKENDS)),ust)
64 GENERATED_HEADERS += trace/generated-ust-provider.h
65 GENERATED_SOURCES += trace/generated-ust.c
66 endif
67
68 # Don't try to regenerate Makefile or configure
69 # We don't generate any of them
70 Makefile: ;
71 configure: ;
72
73 .PHONY: all clean cscope distclean dvi html info install install-doc \
74         pdf recurse-all speed test dist
75
76 $(call set-vpath, $(SRC_PATH))
77
78 LIBS+=-lz $(LIBS_TOOLS)
79
80 HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
81
82 ifdef BUILD_DOCS
83 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qmp-commands.txt
84 ifdef CONFIG_VIRTFS
85 DOCS+=fsdev/virtfs-proxy-helper.1
86 endif
87 else
88 DOCS=
89 endif
90
91 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
92 SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
93 SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
94
95 ifeq ($(SUBDIR_DEVICES_MAK),)
96 config-all-devices.mak:
97         $(call quiet-command,echo '# no devices' > $@,"  GEN   $@")
98 else
99 config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
100         $(call quiet-command, sed -n \
101              's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
102              $(SUBDIR_DEVICES_MAK) | sort -u > $@, \
103              "  GEN   $@")
104 endif
105
106 -include $(SUBDIR_DEVICES_MAK_DEP)
107
108 %/config-devices.mak: default-configs/%.mak
109         $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, "  GEN   $@")
110         @if test -f $@; then \
111           if cmp -s $@.old $@; then \
112             mv $@.tmp $@; \
113             cp -p $@ $@.old; \
114           else \
115             if test -f $@.old; then \
116               echo "WARNING: $@ (user modified) out of date.";\
117             else \
118               echo "WARNING: $@ out of date.";\
119             fi; \
120             echo "Run \"make defconfig\" to regenerate."; \
121             rm $@.tmp; \
122           fi; \
123          else \
124           mv $@.tmp $@; \
125           cp -p $@ $@.old; \
126          fi
127
128 defconfig:
129         rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
130
131 ifneq ($(wildcard config-host.mak),)
132 include $(SRC_PATH)/Makefile.objs
133 endif
134
135 dummy := $(call unnest-vars,, \
136                 stub-obj-y \
137                 util-obj-y \
138                 qga-obj-y \
139                 qga-vss-dll-obj-y \
140                 block-obj-y \
141                 block-obj-m \
142                 common-obj-y \
143                 common-obj-m)
144
145 ifneq ($(wildcard config-host.mak),)
146 include $(SRC_PATH)/tests/Makefile
147 endif
148 ifeq ($(CONFIG_SMARTCARD_NSS),y)
149 include $(SRC_PATH)/libcacard/Makefile
150 endif
151
152 all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules
153
154 config-host.h: config-host.h-timestamp
155 config-host.h-timestamp: config-host.mak
156 qemu-options.def: $(SRC_PATH)/qemu-options.hx
157         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $@")
158
159 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
160 SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))
161
162 $(SOFTMMU_SUBDIR_RULES): $(block-obj-y)
163 $(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
164
165 subdir-%:
166         $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
167
168 subdir-pixman: pixman/Makefile
169         $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,)
170
171 pixman/Makefile: $(SRC_PATH)/pixman/configure
172         (cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static)
173
174 $(SRC_PATH)/pixman/configure:
175         (cd $(SRC_PATH)/pixman; autoreconf -v --install)
176
177 DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
178 DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
179 DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
180
181 subdir-dtc:dtc/libfdt dtc/tests
182         $(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,)
183
184 dtc/%:
185         mkdir -p $@
186
187 $(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y)
188
189 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
190 romsubdir-%:
191         $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
192
193 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
194
195 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
196
197 $(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc $(BUILD_DIR)/config-host.h | $(BUILD_DIR)/version.lo
198         $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"  RC    version.o")
199 $(BUILD_DIR)/version.lo: $(SRC_PATH)/version.rc $(BUILD_DIR)/config-host.h
200         $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"  RC    version.lo")
201
202 Makefile: $(version-obj-y) $(version-lobj-y)
203
204 ######################################################################
205 # Build libraries
206
207 libqemustub.a: $(stub-obj-y)
208 libqemuutil.a: $(util-obj-y) qapi-types.o qapi-visit.o qapi-event.o
209
210 block-modules = $(foreach o,$(block-obj-m),"$(basename $(subst /,-,$o))",) NULL
211 util/module.o-cflags = -D'CONFIG_BLOCK_MODULES=$(block-modules)'
212
213 ######################################################################
214
215 qemu-img.o: qemu-img-cmds.h
216
217 qemu-img$(EXESUF): qemu-img.o $(block-obj-y) libqemuutil.a libqemustub.a
218 qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) libqemuutil.a libqemustub.a
219 qemu-io$(EXESUF): qemu-io.o $(block-obj-y) libqemuutil.a libqemustub.a
220
221 qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o
222
223 fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o libqemuutil.a libqemustub.a
224 fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
225
226 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
227         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $@")
228
229 qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
230 qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
231
232 gen-out-type = $(subst .,-,$(suffix $@))
233
234 qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
235
236 qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
237 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
238         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
239                 $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \
240                 "  GEN   $@")
241 qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
242 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
243         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
244                 $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \
245                 "  GEN   $@")
246 qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
247 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
248         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
249                 $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \
250                 "  GEN   $@")
251
252 qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \
253                $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \
254                $(SRC_PATH)/qapi/event.json
255
256 qapi-types.c qapi-types.h :\
257 $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
258         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
259                 $(gen-out-type) -o "." -b -i $<, \
260                 "  GEN   $@")
261 qapi-visit.c qapi-visit.h :\
262 $(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
263         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
264                 $(gen-out-type) -o "." -b -i $<, \
265                 "  GEN   $@")
266 qapi-event.c qapi-event.h :\
267 $(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
268         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
269                 $(gen-out-type) -o "." -b -i $<, \
270                 "  GEN   $@")
271 qmp-commands.h qmp-marshal.c :\
272 $(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
273         $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
274                 $(gen-out-type) -o "." -m -i $<, \
275                 "  GEN   $@")
276
277 QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
278 $(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
279
280 qemu-ga$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a
281         $(call LINK, $^)
282
283 clean:
284 # avoid old build problems by removing potentially incorrect old files
285         rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
286         rm -f qemu-options.def
287         find . \( -name '*.l[oa]' -o -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f -exec rm {} +
288         rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
289         rm -f fsdev/*.pod
290         rm -rf .libs */.libs
291         rm -f qemu-img-cmds.h
292         @# May not be present in GENERATED_HEADERS
293         rm -f trace/generated-tracers-dtrace.dtrace*
294         rm -f trace/generated-tracers-dtrace.h*
295         rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
296         rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp)
297         rm -rf qapi-generated
298         rm -rf qga/qapi-generated
299         for d in $(ALL_SUBDIRS); do \
300         if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
301         rm -f $$d/qemu-options.def; \
302         done
303
304 VERSION ?= $(shell cat VERSION)
305
306 dist: qemu-$(VERSION).tar.bz2
307
308 qemu-%.tar.bz2:
309         $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
310
311 distclean: clean
312         rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
313         rm -f config-all-devices.mak config-all-disas.mak
314         rm -f po/*.mo
315         rm -f roms/seabios/config.mak roms/vgabios/config.mak
316         rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
317         rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
318         rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
319         rm -f qemu-doc.vr
320         rm -f config.log
321         rm -f linux-headers/asm
322         rm -f qemu-tech.info qemu-tech.aux qemu-tech.cp qemu-tech.dvi qemu-tech.fn qemu-tech.info qemu-tech.ky qemu-tech.log qemu-tech.pdf qemu-tech.pg qemu-tech.toc qemu-tech.tp qemu-tech.vr
323         for d in $(TARGET_DIRS); do \
324         rm -rf $$d || exit 1 ; \
325         done
326         rm -Rf .sdk
327         if test -f pixman/config.log; then make -C pixman distclean; fi
328         if test -f dtc/version_gen.h; then make $(DTC_MAKE_ARGS) clean; fi
329
330 KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
331 ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
332 common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr \
333 bepo    cz
334
335 ifdef INSTALL_BLOBS
336 BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
337 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
338 acpi-dsdt.aml q35-acpi-dsdt.aml \
339 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
340 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
341 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
342 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
343 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
344 qemu-icon.bmp qemu_logo_no_text.svg \
345 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
346 multiboot.bin linuxboot.bin kvmvapic.bin \
347 s390-zipl.rom \
348 s390-ccw.img \
349 spapr-rtas.bin slof.bin \
350 palcode-clipper \
351 u-boot.e500
352 else
353 BLOBS=
354 endif
355
356 install-doc: $(DOCS)
357         $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
358         $(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(qemu_docdir)"
359         $(INSTALL_DATA) qmp-commands.txt "$(DESTDIR)$(qemu_docdir)"
360 ifdef CONFIG_POSIX
361         $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
362         $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
363 ifneq ($(TOOLS),)
364         $(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
365         $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
366         $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
367 endif
368 endif
369 ifdef CONFIG_VIRTFS
370         $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
371         $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
372 endif
373
374 install-datadir:
375         $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
376
377 install-localstatedir:
378 ifdef CONFIG_POSIX
379 ifneq (,$(findstring qemu-ga,$(TOOLS)))
380         $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
381 endif
382 endif
383
384 install-confdir:
385         $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)"
386
387 install-sysconfig: install-datadir install-confdir
388         $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)"
389
390 install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \
391 install-datadir install-localstatedir
392 ifneq ($(TOOLS),)
393         $(call install-prog,$(TOOLS),$(DESTDIR)$(bindir))
394 endif
395 ifneq ($(CONFIG_MODULES),)
396         $(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
397         for s in $(modules-m:.mo=$(DSOSUF)); do \
398                 t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
399                 $(INSTALL_LIB) $$s "$$t"; \
400                 test -z "$(STRIP)" || $(STRIP) "$$t"; \
401         done
402 endif
403 ifneq ($(HELPERS-y),)
404         $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
405 endif
406 ifneq ($(BLOBS),)
407         set -e; for x in $(BLOBS); do \
408                 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
409         done
410 endif
411 ifeq ($(CONFIG_GTK),y)
412         $(MAKE) -C po $@
413 endif
414         $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
415         set -e; for x in $(KEYMAPS); do \
416                 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
417         done
418         for d in $(TARGET_DIRS); do \
419         $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
420         done
421
422 # various test targets
423 test speed: all
424         $(MAKE) -C tests/tcg $@
425
426 .PHONY: TAGS
427 TAGS:
428         rm -f $@
429         find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
430
431 cscope:
432         rm -f ./cscope.*
433         find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
434         cscope -b
435
436 # documentation
437 MAKEINFO=makeinfo
438 MAKEINFOFLAGS=--no-headers --no-split --number-sections
439 TEXIFLAG=$(if $(V),,--quiet)
440 %.dvi: %.texi
441         $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")
442
443 %.html: %.texi
444         $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
445         "  GEN   $@")
446
447 %.info: %.texi
448         $(call quiet-command,$(MAKEINFO) $< -o $@,"  GEN   $@")
449
450 %.pdf: %.texi
451         $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"  GEN   $@")
452
453 qemu-options.texi: $(SRC_PATH)/qemu-options.hx
454         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
455
456 qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
457         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
458
459 qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
460         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@,"  GEN   $@")
461
462 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
463         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
464
465 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
466         $(call quiet-command, \
467           perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
468           $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \
469           "  GEN   $@")
470
471 qemu-img.1: qemu-img.texi qemu-img-cmds.texi
472         $(call quiet-command, \
473           perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
474           $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \
475           "  GEN   $@")
476
477 fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
478         $(call quiet-command, \
479           perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
480           $(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
481           "  GEN   $@")
482
483 qemu-nbd.8: qemu-nbd.texi
484         $(call quiet-command, \
485           perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
486           $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
487           "  GEN   $@")
488
489 dvi: qemu-doc.dvi qemu-tech.dvi
490 html: qemu-doc.html qemu-tech.html
491 info: qemu-doc.info qemu-tech.info
492 pdf: qemu-doc.pdf qemu-tech.pdf
493
494 qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
495         qemu-img.texi qemu-nbd.texi qemu-options.texi \
496         qemu-monitor.texi qemu-img-cmds.texi
497
498 ifdef CONFIG_WIN32
499
500 INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
501
502 nsisflags = -V2 -NOCD
503
504 ifneq ($(wildcard $(SRC_PATH)/dll),)
505 ifeq ($(ARCH),x86_64)
506 # 64 bit executables
507 DLL_PATH = $(SRC_PATH)/dll/w64
508 nsisflags += -DW64
509 else
510 # 32 bit executables
511 DLL_PATH = $(SRC_PATH)/dll/w32
512 endif
513 endif
514
515 .PHONY: installer
516 installer: $(INSTALLER)
517
518 INSTDIR=/tmp/qemu-nsis
519
520 $(INSTALLER): $(SRC_PATH)/qemu.nsi
521         make install prefix=${INSTDIR}
522 ifdef SIGNCODE
523         (cd ${INSTDIR}; \
524          for i in *.exe; do \
525            $(SIGNCODE) $${i}; \
526          done \
527         )
528 endif # SIGNCODE
529         (cd ${INSTDIR}; \
530          for i in qemu-system-*.exe; do \
531            arch=$${i%.exe}; \
532            arch=$${arch#qemu-system-}; \
533            echo Section \"$$arch\" Section_$$arch; \
534            echo SetOutPath \"\$$INSTDIR\"; \
535            echo File \"\$${BINDIR}\\$$i\"; \
536            echo SectionEnd; \
537          done \
538         ) >${INSTDIR}/system-emulations.nsh
539         makensis $(nsisflags) \
540                 $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
541                 $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
542                 -DBINDIR="${INSTDIR}" \
543                 $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
544                 -DSRCDIR="$(SRC_PATH)" \
545                 -DOUTFILE="$(INSTALLER)" \
546                 $(SRC_PATH)/qemu.nsi
547         rm -r ${INSTDIR}
548 ifdef SIGNCODE
549         $(SIGNCODE) $(INSTALLER)
550 endif # SIGNCODE
551 endif # CONFIG_WIN
552
553 # Add a dependency on the generated files, so that they are always
554 # rebuilt before other object files
555 ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
556 Makefile: $(GENERATED_HEADERS)
557 endif
558
559 # Include automatically generated dependency files
560 # Dependencies in Makefile.objs files come from our recursive subdir rules
561 -include $(wildcard *.d tests/*.d)