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. 91ad2134fSPaul Brookall: build-all 10ad064840Spbrookinclude config-host.mak 1117759187Saliguoriinclude $(SRC_PATH)/rules.mak 1259bc10eeSPaolo Bonziniconfig-host.mak: $(SRC_PATH)/configure 13e5efe7f5SJuan Quintela @echo $@ is out-of-date, running configure 14e5efe7f5SJuan Quintela @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh 1555d7e8f6Saurel32else 1655d7e8f6Saurel32config-host.mak: 1755d7e8f6Saurel32 @echo "Please call configure before running make!" 1855d7e8f6Saurel32 @exit 1 1955d7e8f6Saurel32endif 20766a487aSbellard 21250b086eSLluís VilanovaGENERATED_HEADERS = config-host.h trace.h qemu-options.def 22250b086eSLluís Vilanovaifeq ($(TRACE_BACKEND),dtrace) 23250b086eSLluís VilanovaGENERATED_HEADERS += trace-dtrace.h 24250b086eSLluís Vilanovaendif 25250b086eSLluís VilanovaGENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h 2619ac36b5SLluís VilanovaGENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c trace.c 27250b086eSLluís Vilanova 28d9ace8b3SJuan Quintela# Don't try to regenerate Makefile or configure 29d9ace8b3SJuan Quintela# We don't generate any of them 30d9ace8b3SJuan QuintelaMakefile: ; 31d9ace8b3SJuan Quintelaconfigure: ; 32d9ace8b3SJuan Quintela 33818220f5Saliguori.PHONY: all clean cscope distclean dvi html info install install-doc \ 3420cc9997SStefan Weil pdf recurse-all speed tar tarbin test build-all 350cb3fb1eSpbrook 36076d2471SPaolo Bonzini$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw) 378c462f8fSpbrook 383e2e0e6bSJuan QuintelaLIBS+=-lz $(LIBS_TOOLS) 3967c0f08dSJuan Quintela 407b93fadfSCorey BryantHELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) 417b93fadfSCorey Bryant 42cc8ae6deSpbrookifdef BUILD_DOCS 43b40292e7SJan KiszkaDOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt 44983eef5aSMeador Ingeifdef CONFIG_VIRTFS 45a2d8f1beSM. Mohan KumarDOCS+=fsdev/virtfs-proxy-helper.1 46983eef5aSMeador Ingeendif 47cc8ae6deSpbrookelse 48cc8ae6deSpbrookDOCS= 49cc8ae6deSpbrookendif 507d13299dSbellard 51388d4758SLluís VilanovaSUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR) 521f3d3c8fSJuan QuintelaSUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) 53bd9141bbSPaul BrookSUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS)) 541f3d3c8fSJuan Quintela 551f3d3c8fSJuan Quintelaconfig-all-devices.mak: $(SUBDIR_DEVICES_MAK) 5601d86a85SStefan Weil $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@") 571f3d3c8fSJuan Quintela 58bd9141bbSPaul Brook-include $(SUBDIR_DEVICES_MAK_DEP) 59bd9141bbSPaul Brook 60a992fe3dSPaul Brook%/config-devices.mak: default-configs/%.mak 614c3b5a48SBlue Swirl $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, " GEN $@") 62a992fe3dSPaul Brook @if test -f $@; then \ 63904fe1fbSBlue Swirl if cmp -s $@.old $@; then \ 64012f0879SStefan Weil mv $@.tmp $@; \ 65012f0879SStefan Weil cp -p $@ $@.old; \ 66012f0879SStefan Weil else \ 67012f0879SStefan Weil if test -f $@.old; then \ 68012f0879SStefan Weil echo "WARNING: $@ (user modified) out of date.";\ 69012f0879SStefan Weil else \ 70a992fe3dSPaul Brook echo "WARNING: $@ out of date.";\ 71012f0879SStefan Weil fi; \ 7263e86b2eSStefan Weil echo "Run \"make defconfig\" to regenerate."; \ 73a992fe3dSPaul Brook rm $@.tmp; \ 74012f0879SStefan Weil fi; \ 75a992fe3dSPaul Brook else \ 76a992fe3dSPaul Brook mv $@.tmp $@; \ 77012f0879SStefan Weil cp -p $@ $@.old; \ 78a992fe3dSPaul Brook fi 79a992fe3dSPaul Brook 80a992fe3dSPaul Brookdefconfig: 81a992fe3dSPaul Brook rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) 82a992fe3dSPaul Brook 831f3d3c8fSJuan Quintela-include config-all-devices.mak 841215c6e7SJuan Quintela 857b93fadfSCorey Bryantbuild-all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all 86b9dea4fbSpbrook 871215c6e7SJuan Quintelaconfig-host.h: config-host.h-timestamp 881215c6e7SJuan Quintelaconfig-host.h-timestamp: config-host.mak 89e14056adSBlue Swirlqemu-options.def: $(SRC_PATH)/qemu-options.hx 904c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") 911215c6e7SJuan Quintela 92cec7d0b6SpbrookSUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) 93cec7d0b6Spbrook 944115852bSPaolo Bonzinisubdir-%: 950087375eSPaul Brook $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) 964aa42531Spbrook 97b88bc808SStefan Weilifneq ($(wildcard config-host.mak),) 980e8c9214SAndreas Färberinclude $(SRC_PATH)/Makefile.objs 99b88bc808SStefan Weilendif 1000e8c9214SAndreas Färber 10141a74826SAnthony Liguorisubdir-libcacard: $(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o 1026774e44aSPaolo Bonzini 103ee20477dSPaolo Bonzini$(filter %-softmmu,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y) subdir-libdis 104c05ac895SPaul Brook 1054115852bSPaolo Bonzini$(filter %-user,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) subdir-libdis-user subdir-libuser 106add16157SBlue Swirl 107c05ac895SPaul BrookROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) 108c05ac895SPaul Brookromsubdir-%: 109c05ac895SPaul Brook $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) 110c05ac895SPaul Brook 111c05ac895SPaul BrookALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) 112c05ac895SPaul Brook 113c05ac895SPaul Brookrecurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) 1144aa42531Spbrook 11598b068a9SJuan Quintelaaudio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS) 1160e22fd2fSJuan Quintela 117a558ee17SJuan QuintelaQEMU_CFLAGS+=$(CURL_CFLAGS) 118769ce76dSAlexander Graf 1192f28d2ffSAnthony LiguoriQEMU_CFLAGS += -I$(SRC_PATH)/include 1202f28d2ffSAnthony Liguori 1213e230dd2SCorentin Charyui/cocoa.o: ui/cocoa.m 1224fb240a4Sbellard 1233d5a3f9aSPaolo Bonziniui/sdl.o audio/sdlaudio.o ui/sdl_zoom.o hw/baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) 1240483755aSaliguori 1253e230dd2SCorentin Charyui/vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS) 1264d3b6f6eSbalrog 127a558ee17SJuan Quintelabt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) 1284fb240a4Sbellard 1297948a665SBlue Swirlversion.o: $(SRC_PATH)/version.rc config-host.h 1309fe6de94SBlue Swirl $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@") 1319fe6de94SBlue Swirl 1329fe6de94SBlue Swirlversion-obj-$(CONFIG_WIN32) += version.o 1334fb240a4Sbellard###################################################################### 13444dc0ca3SAlon Levy# Support building shared library libcacard 13544dc0ca3SAlon Levy 13644dc0ca3SAlon Levy.PHONY: libcacard.la install-libcacard 13744dc0ca3SAlon Levyifeq ($(LIBTOOL),) 13844dc0ca3SAlon Levylibcacard.la: 13944dc0ca3SAlon Levy @echo "libtool is missing, please install and rerun configure"; exit 1 14044dc0ca3SAlon Levy 14144dc0ca3SAlon Levyinstall-libcacard: 14244dc0ca3SAlon Levy @echo "libtool is missing, please install and rerun configure"; exit 1 14344dc0ca3SAlon Levyelse 1444115852bSPaolo Bonzinilibcacard.la: $(oslib-obj-y) qemu-timer-common.o $(addsuffix .lo, $(basename $(trace-obj-y))) 14544dc0ca3SAlon Levy $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,) 14644dc0ca3SAlon Levy 14744dc0ca3SAlon Levyinstall-libcacard: libcacard.la 14844dc0ca3SAlon Levy $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,) 14944dc0ca3SAlon Levyendif 150*00c705fbSPaolo Bonzini 151*00c705fbSPaolo Bonzinivscclient$(EXESUF): $(libcacard-y) $(oslib-obj-y) qemu-timer-common.o libcacard/vscclient.o 152*00c705fbSPaolo Bonzini $(call quiet-command,$(CC) -o $@ $^ $(libcacard_libs) $(LIBS)," LINK $@") 153*00c705fbSPaolo Bonzini 15444dc0ca3SAlon Levy###################################################################### 1554fb240a4Sbellard 1563c089e15SJuan Quintelaqemu-img.o: qemu-img-cmds.h 157153859beSStuart Brady 158cbcfa041SPaolo Bonzinitools-obj-y = $(oslib-obj-y) $(trace-obj-y) qemu-tool.o qemu-timer.o \ 159cbcfa041SPaolo Bonzini qemu-timer-common.o main-loop.o notify.o iohandler.o cutils.o async.o 160cbcfa041SPaolo Bonzinitools-obj-$(CONFIG_POSIX) += compatfd.o 1614fb240a4Sbellard 1624ab328d6SPaolo Bonziniqemu-img$(EXESUF): qemu-img.o $(tools-obj-y) $(block-obj-y) 1634ab328d6SPaolo Bonziniqemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y) $(block-obj-y) 1644ab328d6SPaolo Bonziniqemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y) $(block-obj-y) 1650a8e1acdSaliguori 1667b93fadfSCorey Bryantqemu-bridge-helper$(EXESUF): qemu-bridge-helper.o 1677b93fadfSCorey Bryant 168ea75fc4eSM. Mohan Kumarfsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y) 16917bff52bSM. Mohan Kumarfsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap 17017bff52bSM. Mohan Kumar 171153859beSStuart Bradyqemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx 1724c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") 173153859beSStuart Brady 1749b129408SMichael Rothqapi-dir := $(BUILD_DIR)/qapi-generated 175957f1f99SMichael Rothqemu-ga$(EXESUF): LIBS = $(LIBS_QGA) 17681fe74dcSMichael Rothqemu-ga$(EXESUF): QEMU_CFLAGS += -I $(qapi-dir) 177640e5404SMichael Roth 17819bf7c87SAvi Kivitygen-out-type = $(subst .,-,$(suffix $@)) 1798d3bc517SAvi Kivity 180e454e2e2SAndreas Färberifneq ($(wildcard config-host.mak),) 181dbfe06c6SAnthony Liguoriinclude $(SRC_PATH)/tests/Makefile 182e454e2e2SAndreas Färberendif 183640e5404SMichael Roth 184599825c5SMichael S. Tsirkin$(qapi-dir)/qga-qapi-types.c $(qapi-dir)/qga-qapi-types.h :\ 185599825c5SMichael S. Tsirkin$(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-types.py 1868d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "$(qapi-dir)" -p "qga-" < $<, " GEN $@") 187599825c5SMichael S. Tsirkin$(qapi-dir)/qga-qapi-visit.c $(qapi-dir)/qga-qapi-visit.h :\ 188599825c5SMichael S. Tsirkin$(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-visit.py 1898d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "$(qapi-dir)" -p "qga-" < $<, " GEN $@") 190599825c5SMichael S. Tsirkin$(qapi-dir)/qga-qmp-commands.h $(qapi-dir)/qga-qmp-marshal.c :\ 191599825c5SMichael S. Tsirkin$(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-commands.py 1928d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o "$(qapi-dir)" -p "qga-" < $<, " GEN $@") 193e3d4d252SMichael Roth 194599825c5SMichael S. Tsirkinqapi-types.c qapi-types.h :\ 195599825c5SMichael S. Tsirkin$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py 1968d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@") 197599825c5SMichael S. Tsirkinqapi-visit.c qapi-visit.h :\ 198599825c5SMichael S. Tsirkin$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py 1998d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@") 200599825c5SMichael S. Tsirkinqmp-commands.h qmp-marshal.c :\ 201599825c5SMichael S. Tsirkin$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py 2028d3bc517SAvi Kivity $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@") 203e3193601SAnthony Liguori 2041b14254bSMichael S. TsirkinQGALIB_OBJ=$(addprefix $(qapi-dir)/, qga-qapi-types.o qga-qapi-visit.o qga-qmp-marshal.o) 2051b14254bSMichael S. TsirkinQGALIB_GEN=$(addprefix $(qapi-dir)/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h) 2064115852bSPaolo Bonzini$(QGALIB_OBJ): $(QGALIB_GEN) 2074115852bSPaolo Bonzini$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN) 208957f1f99SMichael Roth 209d8ca685aSMichael Rothqemu-ga$(EXESUF): qemu-ga.o $(qga-obj-y) $(tools-obj-y) $(qapi-obj-y) $(qobject-obj-y) $(version-obj-y) $(QGALIB_OBJ) 21048ff7a62SMichael Roth 211111a38b0SRobert RelyeaQEMULIBS=libhw32 libhw64 libuser libdis libdis-user 212111a38b0SRobert Relyea 21331e31b8aSbellardclean: 2142d80ae89Sbellard# avoid old build problems by removing potentially incorrect old files 21525be210fSJuan 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 216df2943baSMichael S. Tsirkin rm -f qemu-options.def 2177b93fadfSCorey Bryant rm -f *.o *.d *.a *.lo $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~ 21844dc0ca3SAlon Levy rm -Rf .libs 21913a286d5SMichael Roth rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d ui/*.o ui/*.d qapi/*.o qapi/*.d qga/*.o qga/*.d 22053fbf7b5SAnthony PERARD rm -f qom/*.o qom/*.d 2213d5a3f9aSPaolo Bonzini rm -f usb/*.o usb/*.d hw/*.o hw/*.d 22207b44ce9SBlue Swirl rm -f qemu-img-cmds.h 223edb47ec4SLluís rm -f trace/*.o trace/*.d 224b3d08c02SDaniel P. Berrange rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp 22519ac36b5SLluís Vilanova @# May not be present in GENERATED_HEADERS 226b3d08c02SDaniel P. Berrange rm -f trace-dtrace.h trace-dtrace.h-timestamp 22719ac36b5SLluís Vilanova rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp) 22819ac36b5SLluís Vilanova rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp) 229640e5404SMichael Roth rm -rf $(qapi-dir) 230c09015ddSAnthony Liguori $(MAKE) -C tests/tcg clean 231111a38b0SRobert Relyea for d in $(ALL_SUBDIRS) $(QEMULIBS) libcacard; do \ 232fc8e320eSMagnus Damm if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ 233df2943baSMichael S. Tsirkin rm -f $$d/qemu-options.def; \ 234626df76aSbellard done 23531e31b8aSbellard 2367d13299dSbellarddistclean: clean 237fc8e320eSMagnus Damm rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi 238a992fe3dSPaul Brook rm -f config-all-devices.mak 239fc8e320eSMagnus Damm rm -f roms/seabios/config.mak roms/vgabios/config.mak 2407a734b8fSBrad Hards rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi 2417a734b8fSBrad Hards rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys 2427a734b8fSBrad Hards rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp 2437a734b8fSBrad Hards rm -f qemu-doc.vr 244793553acSAlexandre Raymond rm -f config.log 24567ed96f9SPeter Maydell rm -f linux-headers/asm 246e1a068b2SHidetoshi 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 247111a38b0SRobert Relyea for d in $(TARGET_DIRS) $(QEMULIBS); do \ 248bc1b050dSbellard rm -rf $$d || exit 1 ; \ 24976bc6838Sbellard done 2507d13299dSbellard 251fed4a9adSbellardKEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ 252fed4a9adSbellardar de en-us fi fr-be hr it lv nl pl ru th \ 253fed4a9adSbellardcommon de-ch es fo fr-ca hu ja mk nl-be pt sl tr 254fed4a9adSbellard 25577755340Sthsifdef INSTALL_BLOBS 2566329866fSPaolo BonziniBLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \ 2577943a2faSGerd Hoffmannvgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \ 2583b3d448eSGerd Hoffmannppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \ 2595ee8ad71SAlex Williamsonpxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \ 2605ee8ad71SAlex Williamsonpxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \ 26194b26294SStefan Weilqemu-icon.bmp \ 26200914b7dSMichal Simekbamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \ 263fbd659b7SAlexander Grafmpc8544ds.dtb \ 2642a2af967SJan Kiszkamultiboot.bin linuxboot.bin kvmvapic.bin \ 26539ac8455SDavid Gibsons390-zipl.rom \ 266753d11f2SRichard Hendersonspapr-rtas.bin slof.bin \ 267753d11f2SRichard Hendersonpalcode-clipper 26877755340Sthselse 26977755340SthsBLOBS= 27077755340Sthsendif 27177755340Sths 27238954dcaSpbrookinstall-doc: $(DOCS) 273d7dd65baSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)" 274d7dd65baSEduardo Habkost $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)" 27596d409ebSJuan Quintelaifdef CONFIG_POSIX 27658f8aeadSaliguori $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 27758f8aeadSaliguori $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" 27858f8aeadSaliguori $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" 27958f8aeadSaliguori $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" 28038954dcaSpbrookendif 281a2d8f1beSM. Mohan Kumarifdef CONFIG_VIRTFS 282a2d8f1beSM. Mohan Kumar $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 283a2d8f1beSM. Mohan Kumar $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1" 284a2d8f1beSM. Mohan Kumarendif 285b5ec5ce0Sjohn cooper 286e2d87bffSEduardo Habkostinstall-datadir: 287e2d87bffSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)" 288e2d87bffSEduardo Habkost 289e2d87bffSEduardo Habkostinstall-confdir: 290e2d87bffSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)" 291e2d87bffSEduardo Habkost 292e2d87bffSEduardo Habkostinstall-sysconfig: install-datadir install-confdir 293e2d87bffSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)" 294e2d87bffSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/cpus-x86_64.conf "$(DESTDIR)$(qemu_datadir)" 295e2d87bffSEduardo Habkost 296e2d87bffSEduardo Habkostinstall: all $(if $(BUILD_DOCS),install-doc) install-sysconfig install-datadir 29758f8aeadSaliguori $(INSTALL_DIR) "$(DESTDIR)$(bindir)" 298932a79dfSthsifneq ($(TOOLS),) 29958f8aeadSaliguori $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" 300932a79dfSthsendif 3017b93fadfSCorey Bryantifneq ($(HELPERS-y),) 3027b93fadfSCorey Bryant $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)" 3037b93fadfSCorey Bryant $(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)" 3047b93fadfSCorey Bryantendif 30577755340Sthsifneq ($(BLOBS),) 30677755340Sths set -e; for x in $(BLOBS); do \ 3076aae2a2eSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \ 308ad064840Spbrook done 30977755340Sthsendif 3106aae2a2eSEduardo Habkost $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps" 31118be8d77Sblueswir1 set -e; for x in $(KEYMAPS); do \ 3126aae2a2eSEduardo Habkost $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \ 313ad064840Spbrook done 314626df76aSbellard for d in $(TARGET_DIRS); do \ 3157d3505c5Sbellard $(MAKE) -C $$d $@ || exit 1 ; \ 316626df76aSbellard done 317612384d7Sbellard 318367e86e8Sbellard# various test targets 3199b0b8203Sbellardtest speed: all 320c09015ddSAnthony Liguori $(MAKE) -C tests/tcg $@ 32131e31b8aSbellard 32221d4e8e3SAlexandre Bique.PHONY: TAGS 323367e86e8SbellardTAGS: 32421d4e8e3SAlexandre Bique find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags 32531e31b8aSbellard 3266688bc6dSbellardcscope: 3276688bc6dSbellard rm -f ./cscope.* 32845b75ae4SAlexandre Raymond find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files 3296688bc6dSbellard cscope -b 3306688bc6dSbellard 3313ef693a0Sbellard# documentation 33201668d98SStefan WeilMAKEINFO=makeinfo 33301668d98SStefan WeilMAKEINFOFLAGS=--no-headers --no-split --number-sections 33420cc9997SStefan WeilTEXIFLAG=$(if $(V),,--quiet) 33520cc9997SStefan Weil%.dvi: %.texi 33620cc9997SStefan Weil $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@") 33720cc9997SStefan Weil 3381f673135Sbellard%.html: %.texi 339952ef67cSStefan Weil $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ 34001668d98SStefan Weil " GEN $@") 3413ef693a0Sbellard 342f3548328Sbellard%.info: %.texi 34301668d98SStefan Weil $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@") 344f3548328Sbellard 34520cc9997SStefan Weil%.pdf: %.texi 34620cc9997SStefan Weil $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@") 3475824d651Sblueswir1 3485824d651Sblueswir1qemu-options.texi: $(SRC_PATH)/qemu-options.hx 3494c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 350f3548328Sbellard 351acd0a093SLuiz Capitulinoqemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx 3524c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 3532313086aSBlue Swirl 35482a56f0dSLuiz CapitulinoQMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx 3554c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@") 356b40292e7SJan Kiszka 357153859beSStuart Bradyqemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx 3584c3b5a48SBlue Swirl $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") 359153859beSStuart Brady 3602313086aSBlue Swirlqemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi 3610d00e563Saliguori $(call quiet-command, \ 3624c3b5a48SBlue Swirl perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \ 3633179d694SMichael Tokarev $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \ 3640d00e563Saliguori " GEN $@") 3655a67135aSbellard 366153859beSStuart Bradyqemu-img.1: qemu-img.texi qemu-img-cmds.texi 3670d00e563Saliguori $(call quiet-command, \ 3684c3b5a48SBlue Swirl perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \ 3693179d694SMichael Tokarev $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \ 3700d00e563Saliguori " GEN $@") 371acd935efSbellard 372a2d8f1beSM. Mohan Kumarfsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi 373a2d8f1beSM. Mohan Kumar $(call quiet-command, \ 374a2d8f1beSM. Mohan Kumar perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \ 3753179d694SMichael Tokarev $(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \ 376a2d8f1beSM. Mohan Kumar " GEN $@") 377a2d8f1beSM. Mohan Kumar 3787a5ca864Sbellardqemu-nbd.8: qemu-nbd.texi 3790d00e563Saliguori $(call quiet-command, \ 3804c3b5a48SBlue Swirl perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \ 3813179d694SMichael Tokarev $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ 3820d00e563Saliguori " GEN $@") 3837a5ca864Sbellard 3840cb3fb1eSpbrookdvi: qemu-doc.dvi qemu-tech.dvi 3850cb3fb1eSpbrookhtml: qemu-doc.html qemu-tech.html 38620cc9997SStefan Weilinfo: qemu-doc.info qemu-tech.info 38720cc9997SStefan Weilpdf: qemu-doc.pdf qemu-tech.pdf 3880cb3fb1eSpbrook 38920cc9997SStefan Weilqemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \ 39020cc9997SStefan Weil qemu-img.texi qemu-nbd.texi qemu-options.texi \ 39120cc9997SStefan Weil qemu-monitor.texi qemu-img-cmds.texi 392818220f5Saliguori 393df5cf721SthsVERSION ?= $(shell cat VERSION) 394df5cf721SthsFILE = qemu-$(VERSION) 395586314f2Sbellard 3961e43adfcSbellard# tar release (use 'make -k tar' on a checkouted tree) 397586314f2Sbellardtar: 398586314f2Sbellard rm -rf /tmp/$(FILE) 3991e43adfcSbellard cp -r . /tmp/$(FILE) 40099c6c082Saurel32 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn 401586314f2Sbellard rm -rf /tmp/$(FILE) 402586314f2Sbellard 4034115852bSPaolo Bonzini# Add a dependency on the generated files, so that they are always 4044115852bSPaolo Bonzini# rebuilt before other object files 4054115852bSPaolo BonziniMakefile: $(GENERATED_HEADERS) 4064115852bSPaolo Bonzini 4074fb240a4Sbellard# Include automatically generated dependency files 4083d5a3f9aSPaolo Bonzini-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d ui/*.d qapi/*.d) 4093d5a3f9aSPaolo Bonzini-include $(wildcard qga/*.d hw/*.d hw/usb/*.d) 410