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