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