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