]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile
win32: Switch thread abstraction to us TLS variable internally
[mirror_qemu.git] / Makefile
CommitLineData
0cb3fb1e
PB
1# Makefile for QEMU.
2
519e1693
SW
3# Always point to the root of the build tree (needs GNU make).
4BUILD_DIR=$(CURDIR)
388d4758 5
250b086e 6# All following code might depend on configuration variables
55d7e8f6 7ifneq ($(wildcard config-host.mak),)
1ad2134f 8# Put the all: rule here so that config-host.mak can contain dependencies.
8f67aa82 9all:
ad064840 10include config-host.mak
d1bd2423
PM
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
17759187 22include $(SRC_PATH)/rules.mak
59bc10ee 23config-host.mak: $(SRC_PATH)/configure
e5efe7f5
JQ
24 @echo $@ is out-of-date, running configure
25 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
55d7e8f6
AJ
26else
27config-host.mak:
7748b8cb 28ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
55d7e8f6
AJ
29 @echo "Please call configure before running make!"
30 @exit 1
31endif
7748b8cb 32endif
766a487a 33
250b086e
LV
34GENERATED_HEADERS = config-host.h trace.h qemu-options.def
35ifeq ($(TRACE_BACKEND),dtrace)
36GENERATED_HEADERS += trace-dtrace.h
37endif
38GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h
19ac36b5 39GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c trace.c
250b086e 40
d9ace8b3
JQ
41# Don't try to regenerate Makefile or configure
42# We don't generate any of them
43Makefile: ;
44configure: ;
45
818220f5 46.PHONY: all clean cscope distclean dvi html info install install-doc \
34bb443e 47 pdf recurse-all speed test dist
0cb3fb1e 48
fec90ff0 49$(call set-vpath, $(SRC_PATH))
8c462f8f 50
3e2e0e6b 51LIBS+=-lz $(LIBS_TOOLS)
67c0f08d 52
7b93fadf
CB
53HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
54
cc8ae6de 55ifdef BUILD_DOCS
b40292e7 56DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
983eef5a 57ifdef CONFIG_VIRTFS
a2d8f1be 58DOCS+=fsdev/virtfs-proxy-helper.1
983eef5a 59endif
cc8ae6de
PB
60else
61DOCS=
62endif
aa05ae6f 63
388d4758 64SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
1f3d3c8f 65SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
bd9141bb 66SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS))
1f3d3c8f 67
8bdd3d49
SW
68ifeq ($(SUBDIR_DEVICES_MAK),)
69config-all-devices.mak:
70 $(call quiet-command,echo '# no devices' > $@," GEN $@")
71else
1f3d3c8f 72config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
01d86a85 73 $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@")
8bdd3d49 74endif
1f3d3c8f 75
bd9141bb
PB
76-include $(SUBDIR_DEVICES_MAK_DEP)
77
a992fe3d 78%/config-devices.mak: default-configs/%.mak
4c3b5a48 79 $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, " GEN $@")
012f0879 80 @if test -f $@; then \
904fe1fb 81 if cmp -s $@.old $@; then \
bd9141bb
PB
82 mv $@.tmp $@; \
83 cp -p $@ $@.old; \
012f0879
SW
84 else \
85 if test -f $@.old; then \
86 echo "WARNING: $@ (user modified) out of date.";\
87 else \
88 echo "WARNING: $@ out of date.";\
89 fi; \
90 echo "Run \"make defconfig\" to regenerate."; \
91 rm $@.tmp; \
92 fi; \
a992fe3d 93 else \
012f0879
SW
94 mv $@.tmp $@; \
95 cp -p $@ $@.old; \
a992fe3d
PB
96 fi
97
98defconfig:
99 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
100
1f3d3c8f 101-include config-all-devices.mak
76cad711 102-include config-all-disas.mak
1215c6e7 103
8f67aa82 104all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all
b9dea4fb 105
1215c6e7
JQ
106config-host.h: config-host.h-timestamp
107config-host.h-timestamp: config-host.mak
e14056ad 108qemu-options.def: $(SRC_PATH)/qemu-options.hx
4c3b5a48 109 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
1215c6e7 110
cec7d0b6
PB
111SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
112
4115852b 113subdir-%:
0087375e 114 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
4aa42531 115
b88bc808 116ifneq ($(wildcard config-host.mak),)
0e8c9214 117include $(SRC_PATH)/Makefile.objs
b88bc808 118endif
0e8c9214 119
41a74826 120subdir-libcacard: $(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
6774e44a 121
e2134eb9
GH
122subdir-pixman: pixman/Makefile
123 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,)
124
125pixman/Makefile: $(SRC_PATH)/pixman/configure
c28fa5a0 126 (cd pixman; CFLAGS="$(CFLAGS) -fPIC" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static)
e2134eb9
GH
127
128$(SRC_PATH)/pixman/configure:
129 (cd $(SRC_PATH)/pixman; autoreconf -v --install)
130
16529ced
SW
131$(SUBDIR_RULES): libqemustub.a
132
76cad711 133$(filter %-softmmu,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y)
c05ac895 134
8e98e2e8 135$(filter %-user,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) $(user-obj-y)
add16157 136
c05ac895
PB
137ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
138romsubdir-%:
139 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
140
141ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
142
143recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
83f64091 144
a558ee17 145bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
4fb240a4 146
7948a665 147version.o: $(SRC_PATH)/version.rc config-host.h
9fe6de94
BS
148 $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@")
149
150version-obj-$(CONFIG_WIN32) += version.o
3bc2f570
PB
151
152######################################################################
153# Build library with stubs
154
155libqemustub.a: $(stub-obj-y)
156
4fb240a4 157######################################################################
44dc0ca3
AL
158# Support building shared library libcacard
159
160.PHONY: libcacard.la install-libcacard
5f0cef1a 161libcacard.la: $(oslib-obj-y) qemu-timer-common.o $(trace-obj-y)
44dc0ca3
AL
162 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,)
163
164install-libcacard: libcacard.la
165 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,)
00c705fb 166
44dc0ca3 167######################################################################
4fb240a4 168
3c089e15 169qemu-img.o: qemu-img-cmds.h
153859be 170
cbcfa041 171tools-obj-y = $(oslib-obj-y) $(trace-obj-y) qemu-tool.o qemu-timer.o \
136594f1 172 main-loop.o iohandler.o error.o
cbcfa041 173tools-obj-$(CONFIG_POSIX) += compatfd.o
0e8c9214 174
3bc2f570
PB
175qemu-img$(EXESUF): qemu-img.o $(tools-obj-y) $(block-obj-y) libqemustub.a
176qemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y) $(block-obj-y) libqemustub.a
177qemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y) $(block-obj-y) libqemustub.a
0a8e1acd 178
7b93fadf
CB
179qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o
180
7937e75b 181vscclient$(EXESUF): LIBS += $(libcacard_libs)
3bc2f570 182vscclient$(EXESUF): $(libcacard-y) $(oslib-obj-y) $(trace-obj-y) libcacard/vscclient.o libqemustub.a
7937e75b 183 $(call LINK, $^)
adb696f3 184
ea75fc4e 185fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y)
17bff52b
MK
186fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
187
153859be 188qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
4c3b5a48 189 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
153859be 190
957f1f99 191qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
54c2e502 192qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
640e5404 193
19bf7c87 194gen-out-type = $(subst .,-,$(suffix $@))
8d3bc517 195
e454e2e2 196ifneq ($(wildcard config-host.mak),)
dbfe06c6 197include $(SRC_PATH)/tests/Makefile
e454e2e2 198endif
640e5404 199
0521d375
SH
200qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
201
54c2e502 202qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
2870dc34 203$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
54c2e502
DH
204 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
205qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
2870dc34 206$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
54c2e502
DH
207 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
208qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
2870dc34 209$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
54c2e502 210 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
e3d4d252 211
599825c5 212qapi-types.c qapi-types.h :\
0521d375 213$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
8d3bc517 214 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@")
599825c5 215qapi-visit.c qapi-visit.h :\
0521d375 216$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
8d3bc517 217 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@")
599825c5 218qmp-commands.h qmp-marshal.c :\
0521d375 219$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
8d3bc517 220 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@")
e3193601 221
54c2e502 222QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
4115852b 223$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
957f1f99 224
2870dc34
PB
225qemu-ga$(EXESUF): $(qga-obj-y) $(oslib-obj-y) $(trace-obj-y) $(qapi-obj-y) $(qobject-obj-y) $(version-obj-y) libqemustub.a
226 $(call LINK, $^)
48ff7a62 227
31e31b8a 228clean:
2d80ae89 229# avoid old build problems by removing potentially incorrect old files
25be210f 230 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
df2943ba 231 rm -f qemu-options.def
e743ccec
PM
232 find . -name '*.[od]' -exec rm -f {} +
233 rm -f *.a *.lo $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
44dc0ca3 234 rm -Rf .libs
07b44ce9 235 rm -f qemu-img-cmds.h
b3d08c02 236 rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
19ac36b5 237 @# May not be present in GENERATED_HEADERS
b3d08c02 238 rm -f trace-dtrace.h trace-dtrace.h-timestamp
19ac36b5
LV
239 rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
240 rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp)
8f0e5c6b 241 rm -rf qapi-generated
54c2e502 242 rm -rf qga/qapi-generated
c09015dd 243 $(MAKE) -C tests/tcg clean
8e98e2e8 244 for d in $(ALL_SUBDIRS) libcacard; do \
fc8e320e 245 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
df2943ba 246 rm -f $$d/qemu-options.def; \
626df76a 247 done
31e31b8a 248
34bb443e
AL
249VERSION ?= $(shell cat VERSION)
250
251dist: qemu-$(VERSION).tar.bz2
252
34bb443e
AL
253qemu-%.tar.bz2:
254 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
255
7d13299d 256distclean: clean
fc8e320e 257 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
76cad711 258 rm -f config-all-devices.mak config-all-disas.mak
fc8e320e 259 rm -f roms/seabios/config.mak roms/vgabios/config.mak
7a734b8f
BH
260 rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
261 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
262 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
263 rm -f qemu-doc.vr
793553ac 264 rm -f config.log
67ed96f9 265 rm -f linux-headers/asm
e1a068b2 266 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
8e98e2e8 267 for d in $(TARGET_DIRS); do \
bc1b050d 268 rm -rf $$d || exit 1 ; \
76bc6838 269 done
a85903ff 270 if test -f pixman/config.log; then make -C pixman distclean; fi
7d13299d 271
fed4a9ad
FB
272KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
273ar de en-us fi fr-be hr it lv nl pl ru th \
471fbf4a
FB
274common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \
275bepo
fed4a9ad 276
77755340 277ifdef INSTALL_BLOBS
6329866f 278BLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
7943a2fa 279vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
3b3d448e 280ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
5ee8ad71
AW
281pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
282pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
94b26294 283qemu-icon.bmp \
00914b7d 284bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
2a2af967 285multiboot.bin linuxboot.bin kvmvapic.bin \
39ac8455 286s390-zipl.rom \
753d11f2
RH
287spapr-rtas.bin slof.bin \
288palcode-clipper
77755340
TS
289else
290BLOBS=
291endif
292
38954dca 293install-doc: $(DOCS)
d7dd65ba
EH
294 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
295 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)"
0cd23fcc 296 $(INSTALL_DATA) QMP/qmp-commands.txt "$(DESTDIR)$(qemu_docdir)"
96d409eb 297ifdef CONFIG_POSIX
58f8aead
AL
298 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
299 $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
300 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
301 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
38954dca 302endif
a2d8f1be
MK
303ifdef CONFIG_VIRTFS
304 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
305 $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
306endif
e2d87bff
EH
307
308install-datadir:
309 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
310
311install-confdir:
80465e80 312 $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)"
e2d87bff
EH
313
314install-sysconfig: install-datadir install-confdir
80465e80 315 $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)"
b5ec5ce0 316
e2d87bff 317install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig install-datadir
58f8aead 318 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
932a79df 319ifneq ($(TOOLS),)
58f8aead 320 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
932a79df 321endif
7b93fadf
CB
322ifneq ($(HELPERS-y),)
323 $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)"
324 $(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)"
325endif
77755340 326ifneq ($(BLOBS),)
77755340 327 set -e; for x in $(BLOBS); do \
6aae2a2e 328 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
ad064840 329 done
77755340 330endif
6aae2a2e 331 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
18be8d77 332 set -e; for x in $(KEYMAPS); do \
6aae2a2e 333 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
ad064840 334 done
626df76a 335 for d in $(TARGET_DIRS); do \
7d3505c5 336 $(MAKE) -C $$d $@ || exit 1 ; \
626df76a 337 done
612384d7 338
367e86e8 339# various test targets
9b0b8203 340test speed: all
c09015dd 341 $(MAKE) -C tests/tcg $@
31e31b8a 342
21d4e8e3 343.PHONY: TAGS
5fafdf24 344TAGS:
21d4e8e3 345 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
31e31b8a 346
6688bc6d
FB
347cscope:
348 rm -f ./cscope.*
45b75ae4 349 find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
6688bc6d
FB
350 cscope -b
351
3ef693a0 352# documentation
01668d98
SW
353MAKEINFO=makeinfo
354MAKEINFOFLAGS=--no-headers --no-split --number-sections
20cc9997
SW
355TEXIFLAG=$(if $(V),,--quiet)
356%.dvi: %.texi
357 $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@")
358
1f673135 359%.html: %.texi
952ef67c 360 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
01668d98 361 " GEN $@")
3ef693a0 362
f3548328 363%.info: %.texi
01668d98 364 $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@")
f3548328 365
20cc9997
SW
366%.pdf: %.texi
367 $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@")
5824d651
BS
368
369qemu-options.texi: $(SRC_PATH)/qemu-options.hx
4c3b5a48 370 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
f3548328 371
acd0a093 372qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
4c3b5a48 373 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
2313086a 374
82a56f0d 375QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
4c3b5a48 376 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@")
b40292e7 377
153859be 378qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
4c3b5a48 379 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
153859be 380
2313086a 381qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
0d00e563 382 $(call quiet-command, \
4c3b5a48 383 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
3179d694 384 $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \
0d00e563 385 " GEN $@")
5a67135a 386
153859be 387qemu-img.1: qemu-img.texi qemu-img-cmds.texi
0d00e563 388 $(call quiet-command, \
4c3b5a48 389 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
3179d694 390 $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \
0d00e563 391 " GEN $@")
acd935ef 392
a2d8f1be
MK
393fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
394 $(call quiet-command, \
395 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
3179d694 396 $(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
a2d8f1be
MK
397 " GEN $@")
398
7a5ca864 399qemu-nbd.8: qemu-nbd.texi
0d00e563 400 $(call quiet-command, \
4c3b5a48 401 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
3179d694 402 $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
0d00e563 403 " GEN $@")
7a5ca864 404
0cb3fb1e 405dvi: qemu-doc.dvi qemu-tech.dvi
0cb3fb1e 406html: qemu-doc.html qemu-tech.html
20cc9997
SW
407info: qemu-doc.info qemu-tech.info
408pdf: qemu-doc.pdf qemu-tech.pdf
0cb3fb1e 409
20cc9997
SW
410qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
411 qemu-img.texi qemu-nbd.texi qemu-options.texi \
412 qemu-monitor.texi qemu-img-cmds.texi
818220f5 413
cb5fc67d
AL
414# Add a dependency on the generated files, so that they are always
415# rebuilt before other object files
7748b8cb 416ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
cb5fc67d 417Makefile: $(GENERATED_HEADERS)
7748b8cb 418endif
cb5fc67d 419
4fb240a4 420# Include automatically generated dependency files
1435ddb8
PB
421# Dependencies in Makefile.objs files come from our recursive subdir rules
422-include $(wildcard *.d tests/*.d)