10cb3fb1eSpbrook# Makefile for QEMU. 20cb3fb1eSpbrook 3519e1693SStefan Weil# Always point to the root of the build tree (needs GNU make). 4519e1693SStefan WeilBUILD_DIR=$(CURDIR) 5388d4758SLluís Vilanova 6250b086eSLluís Vilanova# All following code might depend on configuration variables 755d7e8f6Saurel32ifneq ($(wildcard config-host.mak),) 81ad2134fSPaul Brook# Put the all: rule here so that config-host.mak can contain dependencies. 98f67aa82SStefan Weilall: 10ad064840Spbrookinclude config-host.mak 11d1bd2423SPeter Maydell 12d1bd2423SPeter Maydell# Check that we're not trying to do an out-of-tree build from 13d1bd2423SPeter Maydell# a tree that's been used for an in-tree build. 14d1bd2423SPeter Maydellifneq ($(realpath $(SRC_PATH)),$(realpath .)) 15d1bd2423SPeter Maydellifneq ($(wildcard $(SRC_PATH)/config-host.mak),) 16d1bd2423SPeter Maydell$(error This is an out of tree build but your source tree ($(SRC_PATH)) \ 17d1bd2423SPeter Maydellseems to have been used for an in-tree build. You can fix this by running \ 18d1bd2423SPeter Maydell"make distclean && rm -rf *-linux-user *-softmmu" in your source tree) 19d1bd2423SPeter Maydellendif 20d1bd2423SPeter Maydellendif 21d1bd2423SPeter Maydell 2217759187Saliguoriinclude $(SRC_PATH)/rules.mak 2359bc10eeSPaolo Bonziniconfig-host.mak: $(SRC_PATH)/configure 24e5efe7f5SJuan Quintela @echo $@ is out-of-date, running configure 25e5efe7f5SJuan Quintela @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh 2655d7e8f6Saurel32else 2755d7e8f6Saurel32config-host.mak: 287748b8cbSMike Frysingerifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail)) 2955d7e8f6Saurel32 @echo "Please call configure before running make!" 3055d7e8f6Saurel32 @exit 1 3155d7e8f6Saurel32endif 327748b8cbSMike Frysingerendif 33766a487aSbellard 34eac236eaSLluís VilanovaGENERATED_HEADERS = config-host.h qemu-options.def 35250b086eSLluís VilanovaGENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h 36eac236eaSLluís VilanovaGENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c 37eac236eaSLluís Vilanova 3845be2f5dSLluís VilanovaGENERATED_HEADERS += trace/generated-events.h 3945be2f5dSLluís VilanovaGENERATED_SOURCES += trace/generated-events.c 4045be2f5dSLluís Vilanova 41eac236eaSLluís VilanovaGENERATED_HEADERS += trace/generated-tracers.h 42eac236eaSLluís Vilanovaifeq ($(TRACE_BACKEND),dtrace) 43eac236eaSLluís VilanovaGENERATED_HEADERS += trace/generated-tracers-dtrace.h 44eac236eaSLluís Vilanovaendif 45eac236eaSLluís VilanovaGENERATED_SOURCES += trace/generated-tracers.c 46250b086eSLluís Vilanova 47d9ace8b3SJuan Quintela# Don't try to regenerate Makefile or configure 48d9ace8b3SJuan Quintela# We don't generate any of them 49d9ace8b3SJuan QuintelaMakefile: ; 50d9ace8b3SJuan Quintelaconfigure: ; 51d9ace8b3SJuan Quintela 52818220f5Saliguori.PHONY: all clean cscope distclean dvi html info install install-doc \ 5334bb443eSAnthony Liguori pdf recurse-all speed test dist 540cb3fb1eSpbrook 55fec90ff0SPaolo Bonzini$(call set-vpath, $(SRC_PATH)) 568c462f8fSpbrook 573e2e0e6bSJuan QuintelaLIBS+=-lz $(LIBS_TOOLS) 5867c0f08dSJuan Quintela 597b93fadfSCorey BryantHELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) 607b93fadfSCorey Bryant 61cc8ae6deSpbrookifdef BUILD_DOCS 62b40292e7SJan KiszkaDOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt 63983eef5aSMeador Ingeifdef CONFIG_VIRTFS 64a2d8f1beSM. Mohan KumarDOCS+=fsdev/virtfs-proxy-helper.1 65983eef5aSMeador Ingeendif 66cc8ae6deSpbrookelse 67cc8ae6deSpbrookDOCS= 68cc8ae6deSpbrookendif 697d13299dSbellard 70388d4758SLluís VilanovaSUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR) 711f3d3c8fSJuan QuintelaSUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) 7288070801SAndreas FärberSUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS)) 731f3d3c8fSJuan Quintela 748bdd3d49SStefan Weilifeq ($(SUBDIR_DEVICES_MAK),) 758bdd3d49SStefan Weilconfig-all-devices.mak: 768bdd3d49SStefan Weil $(call quiet-command,echo '# no devices' > $@," GEN $@") 778bdd3d49SStefan Weilelse 781f3d3c8fSJuan Quintelaconfig-all-devices.mak: $(SUBDIR_DEVICES_MAK) 79bb585a78SPaolo Bonzini $(call quiet-command, sed -n \ 80bb585a78SPaolo Bonzini 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \ 81bb585a78SPaolo Bonzini $(SUBDIR_DEVICES_MAK) | sort -u > $@, \ 82bb585a78SPaolo Bonzini " GEN $@") 838bdd3d49SStefan Weilendif 841f3d3c8fSJuan Quintela 85bd9141bbSPaul Brook-include $(SUBDIR_DEVICES_MAK_DEP) 86bd9141bbSPaul Brook 87a992fe3dSPaul Brook%/config-devices.mak: default-configs/%.mak 884c3b5a48SBlue Swirl $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, " GEN $@") 89a992fe3dSPaul Brook @if test -f $@; then \ 90904fe1fbSBlue Swirl if cmp -s $@.old $@; then \ 91012f0879SStefan Weil mv $@.tmp $@; \ 92012f0879SStefan Weil cp -p $@ $@.old; \ 93012f0879SStefan Weil else \ 94012f0879SStefan Weil if test -f $@.old; then \ 95012f0879SStefan Weil echo "WARNING: $@ (user modified) out of date.";\ 96012f0879SStefan Weil else \ 97a992fe3dSPaul Brook echo "WARNING: $@ out of date.";\ 98012f0879SStefan Weil fi; \ 9963e86b2eSStefan Weil echo "Run \"make defconfig\" to regenerate."; \ 100a992fe3dSPaul Brook rm $@.tmp; \ 101012f0879SStefan Weil fi; \ 102a992fe3dSPaul Brook else \ 103a992fe3dSPaul Brook mv $@.tmp $@; \ 104012f0879SStefan Weil cp -p $@ $@.old; \ 105a992fe3dSPaul Brook fi 106a992fe3dSPaul Brook 107a992fe3dSPaul Brookdefconfig: 108a992fe3dSPaul Brook rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) 109a992fe3dSPaul Brook 1101f3d3c8fSJuan Quintela-include config-all-devices.mak 11176cad711SPaolo Bonzini-include config-all-disas.mak 11200082344SPaolo BonziniCONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y) 11300082344SPaolo BonziniCONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y) 11482cb6b04SPaolo BonziniCONFIG_ALL=y 1151215c6e7SJuan Quintela 116992aeb8eSPaolo Bonziniifneq ($(wildcard config-host.mak),) 117992aeb8eSPaolo Bonziniinclude $(SRC_PATH)/Makefile.objs 118992aeb8eSPaolo Bonziniinclude $(SRC_PATH)/tests/Makefile 119992aeb8eSPaolo Bonziniendif 120992aeb8eSPaolo Bonziniifeq ($(CONFIG_SMARTCARD_NSS),y) 121992aeb8eSPaolo Bonziniinclude $(SRC_PATH)/libcacard/Makefile 122992aeb8eSPaolo Bonziniendif 123992aeb8eSPaolo Bonzini 1248f67aa82SStefan Weilall: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all 125b9dea4fbSpbrook 1261215c6e7SJuan Quintelaconfig-host.h: config-host.h-timestamp 1271215c6e7SJuan Quintelaconfig-host.h-timestamp: config-host.mak 128e14056adSBlue Swirlqemu-options.def: $(SRC_PATH)/qemu-options.hx 1294c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") 1301215c6e7SJuan Quintela 131cec7d0b6SpbrookSUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) 132916359f6SAndreas FärberSOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES)) 133916359f6SAndreas Färber 134916359f6SAndreas Färber$(SOFTMMU_SUBDIR_RULES): config-all-devices.mak 135cec7d0b6Spbrook 1364115852bSPaolo Bonzinisubdir-%: 1370087375eSPaul Brook $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) 1384aa42531Spbrook 139e2134eb9SGerd Hoffmannsubdir-pixman: pixman/Makefile 140e2134eb9SGerd Hoffmann $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,) 141e2134eb9SGerd Hoffmann 142e2134eb9SGerd Hoffmannpixman/Makefile: $(SRC_PATH)/pixman/configure 143f9943cd5SGerd Hoffmann (cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static) 144e2134eb9SGerd Hoffmann 145e2134eb9SGerd Hoffmann$(SRC_PATH)/pixman/configure: 146e2134eb9SGerd Hoffmann (cd $(SRC_PATH)/pixman; autoreconf -v --install) 147e2134eb9SGerd Hoffmann 14882cb6b04SPaolo Bonzini$(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) 149add16157SBlue Swirl 150c05ac895SPaul BrookROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) 151c05ac895SPaul Brookromsubdir-%: 152c05ac895SPaul Brook $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) 153c05ac895SPaul Brook 154c05ac895SPaul BrookALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) 155c05ac895SPaul Brook 156c05ac895SPaul Brookrecurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) 1574aa42531Spbrook 158a558ee17SJuan Quintelabt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) 1594fb240a4Sbellard 1607948a665SBlue Swirlversion.o: $(SRC_PATH)/version.rc config-host.h 1619fe6de94SBlue Swirl $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@") 1629fe6de94SBlue Swirl 1639fe6de94SBlue Swirlversion-obj-$(CONFIG_WIN32) += version.o 164af381ebeSPaolo BonziniMakefile: $(version-obj-y) 1653bc2f570SPaolo Bonzini 1663bc2f570SPaolo Bonzini###################################################################### 1678a090705SPaolo Bonzini# Build libraries 1683bc2f570SPaolo Bonzini 1693bc2f570SPaolo Bonzinilibqemustub.a: $(stub-obj-y) 1708a090705SPaolo Bonzinilibqemuutil.a: $(util-obj-y) 1713bc2f570SPaolo Bonzini 1724fb240a4Sbellard###################################################################### 1734fb240a4Sbellard 1743c089e15SJuan Quintelaqemu-img.o: qemu-img-cmds.h 175153859beSStuart Brady 176ff667e2eSPaolo Bonziniqemu-img$(EXESUF): qemu-img.o $(block-obj-y) libqemuutil.a libqemustub.a 177ff667e2eSPaolo Bonziniqemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) libqemuutil.a libqemustub.a 178ff667e2eSPaolo Bonziniqemu-io$(EXESUF): qemu-io.o cmd.o $(block-obj-y) libqemuutil.a libqemustub.a 1790a8e1acdSaliguori 1807b93fadfSCorey Bryantqemu-bridge-helper$(EXESUF): qemu-bridge-helper.o 1817b93fadfSCorey Bryant 182ff667e2eSPaolo Bonzinifsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o libqemuutil.a libqemustub.a 18317bff52bSM. Mohan Kumarfsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap 18417bff52bSM. Mohan Kumar 185153859beSStuart Bradyqemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx 1864c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") 187153859beSStuart Brady 188957f1f99SMichael Rothqemu-ga$(EXESUF): LIBS = $(LIBS_QGA) 18954c2e502SDunrong Huangqemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated 190640e5404SMichael Roth 19119bf7c87SAvi Kivitygen-out-type = $(subst .,-,$(suffix $@)) 1928d3bc517SAvi Kivity 1930521d375SStefan Hajnocziqapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py 1940521d375SStefan Hajnoczi 19554c2e502SDunrong Huangqga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\ 1962870dc34SPaolo Bonzini$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) 19754c2e502SDunrong Huang $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@") 19854c2e502SDunrong Huangqga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\ 1992870dc34SPaolo Bonzini$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) 20054c2e502SDunrong Huang $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@") 20154c2e502SDunrong Huangqga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\ 2022870dc34SPaolo Bonzini$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) 20354c2e502SDunrong Huang $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@") 204e3d4d252SMichael Roth 205599825c5SMichael S. Tsirkinqapi-types.c qapi-types.h :\ 2060521d375SStefan Hajnoczi$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) 2078d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@") 208599825c5SMichael S. Tsirkinqapi-visit.c qapi-visit.h :\ 2090521d375SStefan Hajnoczi$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) 2108d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@") 211599825c5SMichael S. Tsirkinqmp-commands.h qmp-marshal.c :\ 2120521d375SStefan Hajnoczi$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) 2138d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@") 214e3193601SAnthony Liguori 21554c2e502SDunrong HuangQGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h) 2164115852bSPaolo Bonzini$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN) 217957f1f99SMichael Roth 218ff667e2eSPaolo Bonziniqemu-ga$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a 2192870dc34SPaolo Bonzini $(call LINK, $^) 22048ff7a62SMichael Roth 22131e31b8aSbellardclean: 2222d80ae89Sbellard# avoid old build problems by removing potentially incorrect old files 22325be210fSJuan Quintela rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h 224df2943baSMichael S. Tsirkin rm -f qemu-options.def 2250c3c89d6SPaolo Bonzini find . -name '*.[oda]' -type f -exec rm -f {} + 2260c3c89d6SPaolo Bonzini find . -name '*.l[oa]' -type f -exec rm -f {} + 2270c3c89d6SPaolo Bonzini rm -f $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~ 22844dc0ca3SAlon Levy rm -Rf .libs 22907b44ce9SBlue Swirl rm -f qemu-img-cmds.h 23019ac36b5SLluís Vilanova @# May not be present in GENERATED_HEADERS 231eac236eaSLluís Vilanova rm -f trace/generated-tracers-dtrace.dtrace* 232eac236eaSLluís Vilanova rm -f trace/generated-tracers-dtrace.h* 23319ac36b5SLluís Vilanova rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp) 23419ac36b5SLluís Vilanova rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp) 2358f0e5c6bSStefan Weil rm -rf qapi-generated 23654c2e502SDunrong Huang rm -rf qga/qapi-generated 237c09015ddSAnthony Liguori $(MAKE) -C tests/tcg clean 238781c0c33SStefan Hajnoczi for d in $(ALL_SUBDIRS); do \ 239fc8e320eSMagnus Damm if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ 240df2943baSMichael S. Tsirkin rm -f $$d/qemu-options.def; \ 241626df76aSbellard done 24231e31b8aSbellard 24334bb443eSAnthony LiguoriVERSION ?= $(shell cat VERSION) 24434bb443eSAnthony Liguori 24534bb443eSAnthony Liguoridist: qemu-$(VERSION).tar.bz2 24634bb443eSAnthony Liguori 24734bb443eSAnthony Liguoriqemu-%.tar.bz2: 24834bb443eSAnthony Liguori $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)" 24934bb443eSAnthony Liguori 2507d13299dSbellarddistclean: clean 251fc8e320eSMagnus Damm rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi 25276cad711SPaolo Bonzini rm -f config-all-devices.mak config-all-disas.mak 253fc8e320eSMagnus Damm rm -f roms/seabios/config.mak roms/vgabios/config.mak 2547a734b8fSBrad Hards rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi 2557a734b8fSBrad Hards rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys 2567a734b8fSBrad Hards rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp 2577a734b8fSBrad Hards rm -f qemu-doc.vr 258793553acSAlexandre Raymond rm -f config.log 25967ed96f9SPeter Maydell rm -f linux-headers/asm 260e1a068b2SHidetoshi Seto 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 2618e98e2e8SPaolo Bonzini for d in $(TARGET_DIRS); do \ 262bc1b050dSbellard rm -rf $$d || exit 1 ; \ 26376bc6838Sbellard done 264a85903ffSWenchao Xia if test -f pixman/config.log; then make -C pixman distclean; fi 2657d13299dSbellard 266fed4a9adSbellardKEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ 267fed4a9adSbellardar de en-us fi fr-be hr it lv nl pl ru th \ 268471fbf4aSFrédéric Boiteuxcommon de-ch es fo fr-ca hu ja mk nl-be pt sl tr \ 269471fbf4aSFrédéric Boiteuxbepo 270fed4a9adSbellard 27177755340Sthsifdef INSTALL_BLOBS 2726329866fSPaolo BonziniBLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \ 2737943a2faSGerd Hoffmannvgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \ 2747e973bb2SLaszlo Ersekacpi-dsdt.aml q35-acpi-dsdt.aml \ 2753b3d448eSGerd Hoffmannppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \ 2765ee8ad71SAlex Williamsonpxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \ 2775ee8ad71SAlex Williamsonpxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \ 278*9fd02979SSander Eikelenboomefi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \ 279*9fd02979SSander Eikelenboomefi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \ 28094b26294SStefan Weilqemu-icon.bmp \ 28100914b7dSMichal Simekbamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \ 2822a2af967SJan Kiszkamultiboot.bin linuxboot.bin kvmvapic.bin \ 28339ac8455SDavid Gibsons390-zipl.rom \ 284753d11f2SRichard Hendersonspapr-rtas.bin slof.bin \ 285753d11f2SRichard Hendersonpalcode-clipper 28677755340Sthselse 28777755340SthsBLOBS= 28877755340Sthsendif 28977755340Sths 29038954dcaSpbrookinstall-doc: $(DOCS) 291d7dd65baSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)" 292d7dd65baSEduardo Habkost $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)" 2930cd23fccSBruce Rogers $(INSTALL_DATA) QMP/qmp-commands.txt "$(DESTDIR)$(qemu_docdir)" 29496d409ebSJuan Quintelaifdef CONFIG_POSIX 29558f8aeadSaliguori $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 29658f8aeadSaliguori $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" 29758f8aeadSaliguori $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" 29858f8aeadSaliguori $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" 29938954dcaSpbrookendif 300a2d8f1beSM. Mohan Kumarifdef CONFIG_VIRTFS 301a2d8f1beSM. Mohan Kumar $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 302a2d8f1beSM. Mohan Kumar $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1" 303a2d8f1beSM. Mohan Kumarendif 304b5ec5ce0Sjohn cooper 305e2d87bffSEduardo Habkostinstall-datadir: 306e2d87bffSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)" 307e2d87bffSEduardo Habkost 308e2d87bffSEduardo Habkostinstall-confdir: 309e2d87bffSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)" 310e2d87bffSEduardo Habkost 311e2d87bffSEduardo Habkostinstall-sysconfig: install-datadir install-confdir 312e2d87bffSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)" 313e2d87bffSEduardo Habkost 314e2d87bffSEduardo Habkostinstall: all $(if $(BUILD_DOCS),install-doc) install-sysconfig install-datadir 31558f8aeadSaliguori $(INSTALL_DIR) "$(DESTDIR)$(bindir)" 316932a79dfSthsifneq ($(TOOLS),) 31758f8aeadSaliguori $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" 318932a79dfSthsendif 3197b93fadfSCorey Bryantifneq ($(HELPERS-y),) 3207b93fadfSCorey Bryant $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)" 3217b93fadfSCorey Bryant $(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)" 3227b93fadfSCorey Bryantendif 32377755340Sthsifneq ($(BLOBS),) 32477755340Sths set -e; for x in $(BLOBS); do \ 3256aae2a2eSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \ 326ad064840Spbrook done 32777755340Sthsendif 328834574eaSAnthony Liguoriifeq ($(CONFIG_GTK),y) 329834574eaSAnthony Liguori $(MAKE) -C po $@ 330834574eaSAnthony Liguoriendif 3316aae2a2eSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps" 33218be8d77Sblueswir1 set -e; for x in $(KEYMAPS); do \ 3336aae2a2eSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \ 334ad064840Spbrook done 335626df76aSbellard for d in $(TARGET_DIRS); do \ 3367d3505c5Sbellard $(MAKE) -C $$d $@ || exit 1 ; \ 337626df76aSbellard done 338612384d7Sbellard 339367e86e8Sbellard# various test targets 3409b0b8203Sbellardtest speed: all 341c09015ddSAnthony Liguori $(MAKE) -C tests/tcg $@ 34231e31b8aSbellard 34321d4e8e3SAlexandre Bique.PHONY: TAGS 344367e86e8SbellardTAGS: 345b1999e87SDavid Gibson rm -f $@ 346b1999e87SDavid Gibson find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} + 34731e31b8aSbellard 3486688bc6dSbellardcscope: 3496688bc6dSbellard rm -f ./cscope.* 35045b75ae4SAlexandre Raymond find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files 3516688bc6dSbellard cscope -b 3526688bc6dSbellard 3533ef693a0Sbellard# documentation 35401668d98SStefan WeilMAKEINFO=makeinfo 35501668d98SStefan WeilMAKEINFOFLAGS=--no-headers --no-split --number-sections 35620cc9997SStefan WeilTEXIFLAG=$(if $(V),,--quiet) 35720cc9997SStefan Weil%.dvi: %.texi 35820cc9997SStefan Weil $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@") 35920cc9997SStefan Weil 3601f673135Sbellard%.html: %.texi 361952ef67cSStefan Weil $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ 36201668d98SStefan Weil " GEN $@") 3633ef693a0Sbellard 364f3548328Sbellard%.info: %.texi 36501668d98SStefan Weil $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@") 366f3548328Sbellard 36720cc9997SStefan Weil%.pdf: %.texi 36820cc9997SStefan Weil $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@") 3695824d651Sblueswir1 3705824d651Sblueswir1qemu-options.texi: $(SRC_PATH)/qemu-options.hx 3714c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 372f3548328Sbellard 373acd0a093SLuiz Capitulinoqemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx 3744c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 3752313086aSBlue Swirl 37682a56f0dSLuiz CapitulinoQMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx 3774c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@") 378b40292e7SJan Kiszka 379153859beSStuart Bradyqemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx 3804c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 381153859beSStuart Brady 3822313086aSBlue Swirlqemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi 3830d00e563Saliguori $(call quiet-command, \ 3844c3b5a48SBlue Swirl perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \ 3853179d694SMichael Tokarev $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \ 3860d00e563Saliguori " GEN $@") 3875a67135aSbellard 388153859beSStuart Bradyqemu-img.1: qemu-img.texi qemu-img-cmds.texi 3890d00e563Saliguori $(call quiet-command, \ 3904c3b5a48SBlue Swirl perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \ 3913179d694SMichael Tokarev $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \ 3920d00e563Saliguori " GEN $@") 393acd935efSbellard 394a2d8f1beSM. Mohan Kumarfsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi 395a2d8f1beSM. Mohan Kumar $(call quiet-command, \ 396a2d8f1beSM. Mohan Kumar perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \ 3973179d694SMichael Tokarev $(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \ 398a2d8f1beSM. Mohan Kumar " GEN $@") 399a2d8f1beSM. Mohan Kumar 4007a5ca864Sbellardqemu-nbd.8: qemu-nbd.texi 4010d00e563Saliguori $(call quiet-command, \ 4024c3b5a48SBlue Swirl perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \ 4033179d694SMichael Tokarev $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ 4040d00e563Saliguori " GEN $@") 4057a5ca864Sbellard 4060cb3fb1eSpbrookdvi: qemu-doc.dvi qemu-tech.dvi 4070cb3fb1eSpbrookhtml: qemu-doc.html qemu-tech.html 40820cc9997SStefan Weilinfo: qemu-doc.info qemu-tech.info 40920cc9997SStefan Weilpdf: qemu-doc.pdf qemu-tech.pdf 4100cb3fb1eSpbrook 41120cc9997SStefan Weilqemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \ 41220cc9997SStefan Weil qemu-img.texi qemu-nbd.texi qemu-options.texi \ 41320cc9997SStefan Weil qemu-monitor.texi qemu-img-cmds.texi 414818220f5Saliguori 415cb5fc67dSAnthony Liguori# Add a dependency on the generated files, so that they are always 416cb5fc67dSAnthony Liguori# rebuilt before other object files 4177748b8cbSMike Frysingerifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail)) 418cb5fc67dSAnthony LiguoriMakefile: $(GENERATED_HEADERS) 4197748b8cbSMike Frysingerendif 420cb5fc67dSAnthony Liguori 4214fb240a4Sbellard# Include automatically generated dependency files 4221435ddb8SPaolo Bonzini# Dependencies in Makefile.objs files come from our recursive subdir rules 4231435ddb8SPaolo Bonzini-include $(wildcard *.d tests/*.d) 424