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 qapi-event.h 49GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c 50 51GENERATED_HEADERS += trace/generated-events.h 52GENERATED_SOURCES += trace/generated-events.c 53 54GENERATED_HEADERS += trace/generated-tracers.h 55ifeq ($(findstring dtrace,$(TRACE_BACKENDS)),dtrace) 56GENERATED_HEADERS += trace/generated-tracers-dtrace.h 57endif 58GENERATED_SOURCES += trace/generated-tracers.c 59 60GENERATED_HEADERS += trace/generated-helpers.h 61GENERATED_SOURCES += trace/generated-helpers.c 62 63ifeq ($(findstring ust,$(TRACE_BACKENDS)),ust) 64GENERATED_HEADERS += trace/generated-ust-provider.h 65GENERATED_SOURCES += trace/generated-ust.c 66endif 67 68# Don't try to regenerate Makefile or configure 69# We don't generate any of them 70Makefile: ; 71configure: ; 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 78LIBS+=-lz $(LIBS_TOOLS) 79 80HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) 81 82ifdef BUILD_DOCS 83DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qmp-commands.txt 84ifdef CONFIG_VIRTFS 85DOCS+=fsdev/virtfs-proxy-helper.1 86endif 87else 88DOCS= 89endif 90 91SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR) 92SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) 93SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS)) 94 95ifeq ($(SUBDIR_DEVICES_MAK),) 96config-all-devices.mak: 97 $(call quiet-command,echo '# no devices' > $@," GEN $@") 98else 99config-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 $@") 104endif 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 128defconfig: 129 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) 130 131ifneq ($(wildcard config-host.mak),) 132include $(SRC_PATH)/Makefile.objs 133endif 134 135dummy := $(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 145ifneq ($(wildcard config-host.mak),) 146include $(SRC_PATH)/tests/Makefile 147endif 148ifeq ($(CONFIG_SMARTCARD_NSS),y) 149include $(SRC_PATH)/libcacard/Makefile 150endif 151 152all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules 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 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 202Makefile: $(version-obj-y) $(version-lobj-y) 203 204###################################################################### 205# Build libraries 206 207libqemustub.a: $(stub-obj-y) 208libqemuutil.a: $(util-obj-y) qapi-types.o qapi-visit.o qapi-event.o 209 210block-modules = $(foreach o,$(block-obj-m),"$(basename $(subst /,-,$o))",) NULL 211util/module.o-cflags = -D'CONFIG_BLOCK_MODULES=$(block-modules)' 212 213###################################################################### 214 215qemu-img.o: qemu-img-cmds.h 216 217qemu-img$(EXESUF): qemu-img.o $(block-obj-y) libqemuutil.a libqemustub.a 218qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) libqemuutil.a libqemustub.a 219qemu-io$(EXESUF): qemu-io.o $(block-obj-y) libqemuutil.a libqemustub.a 220 221qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o 222 223fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o libqemuutil.a libqemustub.a 224fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap 225 226qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx 227 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") 228 229qemu-ga$(EXESUF): LIBS = $(LIBS_QGA) 230qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated 231 232gen-out-type = $(subst .,-,$(suffix $@)) 233 234qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py 235 236qga/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 $@") 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 \ 244 $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \ 245 " GEN $@") 246qga/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 252qapi-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 256qapi-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 $@") 261qapi-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 $@") 266qapi-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 $@") 271qmp-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 277QGALIB_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 280qemu-ga$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a 281 $(call LINK, $^) 282 283clean: 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 304VERSION ?= $(shell cat VERSION) 305 306dist: qemu-$(VERSION).tar.bz2 307 308qemu-%.tar.bz2: 309 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)" 310 311distclean: 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 330KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ 331ar de en-us fi fr-be hr it lv nl pl ru th \ 332common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \ 333bepo cz 334 335ifdef INSTALL_BLOBS 336BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \ 337vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \ 338acpi-dsdt.aml q35-acpi-dsdt.aml \ 339ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \ 340pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \ 341pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \ 342efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \ 343efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \ 344qemu-icon.bmp qemu_logo_no_text.svg \ 345bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \ 346multiboot.bin linuxboot.bin kvmvapic.bin \ 347s390-zipl.rom \ 348s390-ccw.img \ 349spapr-rtas.bin slof.bin \ 350palcode-clipper \ 351u-boot.e500 352else 353BLOBS= 354endif 355 356install-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)" 360ifdef CONFIG_POSIX 361 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 362 $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1" 363ifneq ($(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" 367endif 368endif 369ifdef CONFIG_VIRTFS 370 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 371 $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1" 372endif 373 374install-datadir: 375 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)" 376 377install-localstatedir: 378ifdef CONFIG_POSIX 379ifneq (,$(findstring qemu-ga,$(TOOLS))) 380 $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run 381endif 382endif 383 384install-confdir: 385 $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)" 386 387install-sysconfig: install-datadir install-confdir 388 $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)" 389 390install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \ 391install-datadir install-localstatedir 392ifneq ($(TOOLS),) 393 $(call install-prog,$(TOOLS),$(DESTDIR)$(bindir)) 394endif 395ifneq ($(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 402endif 403ifneq ($(HELPERS-y),) 404 $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir)) 405endif 406ifneq ($(BLOBS),) 407 set -e; for x in $(BLOBS); do \ 408 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \ 409 done 410endif 411ifeq ($(CONFIG_GTK),y) 412 $(MAKE) -C po $@ 413endif 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 423test speed: all 424 $(MAKE) -C tests/tcg $@ 425 426.PHONY: TAGS 427TAGS: 428 rm -f $@ 429 find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} + 430 431cscope: 432 rm -f ./cscope.* 433 find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files 434 cscope -b 435 436# documentation 437MAKEINFO=makeinfo 438MAKEINFOFLAGS=--no-headers --no-split --number-sections 439TEXIFLAG=$(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 453qemu-options.texi: $(SRC_PATH)/qemu-options.hx 454 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 455 456qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx 457 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 458 459qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx 460 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@") 461 462qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx 463 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 464 465qemu.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 471qemu-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 477fsdev/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 483qemu-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 489dvi: qemu-doc.dvi qemu-tech.dvi 490html: qemu-doc.html qemu-tech.html 491info: qemu-doc.info qemu-tech.info 492pdf: qemu-doc.pdf qemu-tech.pdf 493 494qemu-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 498ifdef CONFIG_WIN32 499 500INSTALLER = qemu-setup-$(VERSION)$(EXESUF) 501 502nsisflags = -V2 -NOCD 503 504ifneq ($(wildcard $(SRC_PATH)/dll),) 505ifeq ($(ARCH),x86_64) 506# 64 bit executables 507DLL_PATH = $(SRC_PATH)/dll/w64 508nsisflags += -DW64 509else 510# 32 bit executables 511DLL_PATH = $(SRC_PATH)/dll/w32 512endif 513endif 514 515.PHONY: installer 516installer: $(INSTALLER) 517 518INSTDIR=/tmp/qemu-nsis 519 520$(INSTALLER): $(SRC_PATH)/qemu.nsi 521 make install prefix=${INSTDIR} 522ifdef SIGNCODE 523 (cd ${INSTDIR}; \ 524 for i in *.exe; do \ 525 $(SIGNCODE) $${i}; \ 526 done \ 527 ) 528endif # 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} 548ifdef SIGNCODE 549 $(SIGNCODE) $(INSTALLER) 550endif # SIGNCODE 551endif # CONFIG_WIN 552 553# Add a dependency on the generated files, so that they are always 554# rebuilt before other object files 555ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail)) 556Makefile: $(GENERATED_HEADERS) 557endif 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) 562