10cb3fb1eSpbrook# Makefile for QEMU. 20cb3fb1eSpbrook 34ace32e2SAntonio Ospiteifneq ($(words $(subst :, ,$(CURDIR))), 1) 44ace32e2SAntonio Ospite $(error main directory cannot contain spaces nor colons) 54ace32e2SAntonio Ospiteendif 64ace32e2SAntonio Ospite 7519e1693SStefan Weil# Always point to the root of the build tree (needs GNU make). 8519e1693SStefan WeilBUILD_DIR=$(CURDIR) 9388d4758SLluís Vilanova 10eaa2ddbbSFam Zheng# Before including a proper config-host.mak, assume we are in the source tree 11eaa2ddbbSFam ZhengSRC_PATH=. 12eaa2ddbbSFam Zheng 13660f7930SPaolo Bonzini# Don't use implicit rules or variables 14660f7930SPaolo Bonzini# we have explicit rules for everything 15660f7930SPaolo BonziniMAKEFLAGS += -rR 16660f7930SPaolo Bonzini 17*3bf45835SPaolo BonziniSHELL = /usr/bin/env bash -o pipefail 18*3bf45835SPaolo Bonzini 19660f7930SPaolo Bonzini# Usage: $(call quiet-command,command and args,"NAME","args to print") 20660f7930SPaolo Bonzini# This will run "command and args", and either: 21660f7930SPaolo Bonzini# if V=1 just print the whole command and args 22660f7930SPaolo Bonzini# otherwise print the 'quiet' output in the format " NAME args to print" 23660f7930SPaolo Bonzini# NAME should be a short name of the command, 7 letters or fewer. 24660f7930SPaolo Bonzini# If called with only a single argument, will print nothing in quiet mode. 25660f7930SPaolo Bonziniquiet-command-run = $(if $(V),,$(if $2,printf " %-7s %s\n" $2 $3 && ))$1 26660f7930SPaolo Bonziniquiet-@ = $(if $(V),,@) 27660f7930SPaolo Bonziniquiet-command = $(quiet-@)$(call quiet-command-run,$1,$2,$3) 28660f7930SPaolo Bonzini 2928fa2927SPhilippe Mathieu-DaudéUNCHECKED_GOALS := %clean TAGS cscope ctags dist \ 30de1da442SMarc-André Lureau help check-help print-% \ 314f2f6276SPhilippe Mathieu-Daudé docker docker-% vm-help vm-test vm-build-% 32eaa2ddbbSFam Zheng 33250b086eSLluís Vilanova# All following code might depend on configuration variables 3455d7e8f6Saurel32ifneq ($(wildcard config-host.mak),) 351ad2134fSPaul Brook# Put the all: rule here so that config-host.mak can contain dependencies. 368f67aa82SStefan Weilall: 37ad064840Spbrookinclude config-host.mak 38d1bd2423SPeter Maydell 39aef45d51SDaniel P. Berrangegit-submodule-update: 40aef45d51SDaniel P. Berrange 41aef45d51SDaniel P. Berrange.PHONY: git-submodule-update 42aef45d51SDaniel P. Berrange 43aef45d51SDaniel P. Berrangegit_module_status := $(shell \ 44aef45d51SDaniel P. Berrange cd '$(SRC_PATH)' && \ 45cc84d63aSDaniel P. Berrange GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \ 46aef45d51SDaniel P. Berrange echo $$?; \ 47aef45d51SDaniel P. Berrange) 48aef45d51SDaniel P. Berrange 49aef45d51SDaniel P. Berrangeifeq (1,$(git_module_status)) 50f62bbee5SDaniel P. Berrangeifeq (no,$(GIT_UPDATE)) 51f62bbee5SDaniel P. Berrangegit-submodule-update: 52f62bbee5SDaniel P. Berrange $(call quiet-command, \ 53f62bbee5SDaniel P. Berrange echo && \ 54f62bbee5SDaniel P. Berrange echo "GIT submodule checkout is out of date. Please run" && \ 55f62bbee5SDaniel P. Berrange echo " scripts/git-submodule.sh update $(GIT_SUBMODULES)" && \ 56f62bbee5SDaniel P. Berrange echo "from the source directory checkout $(SRC_PATH)" && \ 57f62bbee5SDaniel P. Berrange echo && \ 58f62bbee5SDaniel P. Berrange exit 1) 59f62bbee5SDaniel P. Berrangeelse 60aef45d51SDaniel P. Berrangegit-submodule-update: 61aef45d51SDaniel P. Berrange $(call quiet-command, \ 62cc84d63aSDaniel P. Berrange (cd $(SRC_PATH) && GIT="$(GIT)" ./scripts/git-submodule.sh update $(GIT_SUBMODULES)), \ 63aef45d51SDaniel P. Berrange "GIT","$(GIT_SUBMODULES)") 64aef45d51SDaniel P. Berrangeendif 65aef45d51SDaniel P. Berrangeendif 66aef45d51SDaniel P. Berrange 67a5665051SPaolo Bonziniexport NINJA=./ninjatool 68a5665051SPaolo Bonzini 69a5665051SPaolo Bonzini# Running meson regenerates both build.ninja and ninjatool, and that is 70a5665051SPaolo Bonzini# enough to prime the rest of the build. 71a5665051SPaolo Bonzinininjatool: build.ninja 72a5665051SPaolo Bonzini 73a5665051SPaolo BonziniMakefile.ninja: build.ninja ninjatool 74d7986405SGreg Kurz ./ninjatool -t ninja2make --omit clean dist uninstall cscope TAGS ctags < $< > $@ 75a5665051SPaolo Bonzini-include Makefile.ninja 76a5665051SPaolo Bonzini 77a5665051SPaolo Bonzini${ninja-targets-c_COMPILER} ${ninja-targets-cpp_COMPILER}: .var.command += -MP 78a5665051SPaolo Bonzini 79245dac4aSPaolo Bonzini# If MESON is empty, the rule will be re-evaluated after Makefiles are 80245dac4aSPaolo Bonzini# reread (and MESON won't be empty anymore). 81245dac4aSPaolo Bonziniifneq ($(MESON),) 82245dac4aSPaolo BonziniMakefile.mtest: build.ninja scripts/mtest2make.py 8348a81fd5SPaolo Bonzini $(MESON) introspect --targets --tests --benchmarks | $(PYTHON) scripts/mtest2make.py > $@ 84245dac4aSPaolo Bonzini-include Makefile.mtest 85245dac4aSPaolo Bonziniendif 86245dac4aSPaolo Bonzini 87660f7930SPaolo BonziniMakefile: .git-submodule-status 8892712822SDaniel P. Berrange.git-submodule-status: git-submodule-update config-host.mak 89aef45d51SDaniel P. Berrange 90d1bd2423SPeter Maydell# Check that we're not trying to do an out-of-tree build from 91d1bd2423SPeter Maydell# a tree that's been used for an in-tree build. 92d1bd2423SPeter Maydellifneq ($(realpath $(SRC_PATH)),$(realpath .)) 93d1bd2423SPeter Maydellifneq ($(wildcard $(SRC_PATH)/config-host.mak),) 94d1bd2423SPeter Maydell$(error This is an out of tree build but your source tree ($(SRC_PATH)) \ 95d1bd2423SPeter Maydellseems to have been used for an in-tree build. You can fix this by running \ 96b98a3baeSPhilippe Mathieu-Daudé"$(MAKE) distclean && rm -rf *-linux-user *-softmmu" in your source tree) 97d1bd2423SPeter Maydellendif 98d1bd2423SPeter Maydellendif 99d1bd2423SPeter Maydell 1003a6b016dSMarkus Armbrusterconfig-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios $(SRC_PATH)/VERSION 101e5efe7f5SJuan Quintela @echo $@ is out-of-date, running configure 102a5665051SPaolo Bonzini @if test -f meson-private/coredata.dat; then \ 103a5665051SPaolo Bonzini ./config.status --skip-meson; \ 104a5665051SPaolo Bonzini else \ 105a5665051SPaolo Bonzini ./config.status; \ 106a5665051SPaolo Bonzini fi 10726fffe29SEmilio G. Cota 10826fffe29SEmilio G. Cota# Force configure to re-run if the API symbols are updated 10926fffe29SEmilio G. Cotaifeq ($(CONFIG_PLUGIN),y) 11026fffe29SEmilio G. Cotaconfig-host.mak: $(SRC_PATH)/plugins/qemu-plugins.symbols 111c17a386bSAlex Bennée 112c17a386bSAlex Bennée.PHONY: plugins 113c17a386bSAlex Bennéeplugins: 114c17a386bSAlex Bennée $(call quiet-command,\ 115c17a386bSAlex Bennée $(MAKE) $(SUBDIR_MAKEFLAGS) -C contrib/plugins V="$(V)", \ 116c17a386bSAlex Bennée "BUILD", "example plugins") 11726fffe29SEmilio G. Cotaendif 11826fffe29SEmilio G. Cota 11955d7e8f6Saurel32else 12055d7e8f6Saurel32config-host.mak: 121eaa2ddbbSFam Zhengifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail)) 12255d7e8f6Saurel32 @echo "Please call configure before running make!" 12355d7e8f6Saurel32 @exit 1 12455d7e8f6Saurel32endif 1257748b8cbSMike Frysingerendif 126766a487aSbellard 1279f5d9597SGreg Kurz# Only needed in case Makefile.ninja does not exist. 1289f5d9597SGreg Kurz.PHONY: ninja-clean ninja-distclean clean-ctlist 1299f5d9597SGreg Kurzclean-ctlist: 1309f5d9597SGreg Kurzninja-clean:: 1319f5d9597SGreg Kurzninja-distclean:: 1329f5d9597SGreg Kurzbuild.ninja: config-host.mak 1339f5d9597SGreg Kurz 134d9ace8b3SJuan Quintela# Don't try to regenerate Makefile or configure 135d9ace8b3SJuan Quintela# We don't generate any of them 136d9ace8b3SJuan QuintelaMakefile: ; 137d9ace8b3SJuan Quintelaconfigure: ; 138d9ace8b3SJuan Quintela 1398dc746b2SGreg Kurz.PHONY: all clean distclean install \ 140acfdaac5SPaolo Bonzini recurse-all dist msi FORCE 1410cb3fb1eSpbrook 142660f7930SPaolo BonziniSUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory --quiet) 143a992fe3dSPaul Brook 14446e7b706SFam Zhenginclude $(SRC_PATH)/tests/Makefile.include 145992aeb8eSPaolo Bonzini 146484e2cc7SPaolo Bonziniall: recurse-all 147fbb4121dSPaolo BonziniMakefile: 148675b9b53SMarc-André Lureau 1493b8593eeSMarkus ArmbrusterROM_DIRS = $(addprefix pc-bios/, $(ROMS)) 1501338a4b7SMarkus ArmbrusterROM_DIRS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROM_DIRS))) 151a9c87304SMarc-André Lureau# Only keep -O and -g cflags 1521338a4b7SMarkus Armbruster.PHONY: $(ROM_DIRS_RULES) 1531338a4b7SMarkus Armbruster$(ROM_DIRS_RULES): 15449b7d744SPaolo Bonzini $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" $(notdir $@),) 155c05ac895SPaul Brook 1565e6d1573SPaolo Bonzini.PHONY: recurse-all recurse-clean 15749b7d744SPaolo Bonzinirecurse-all: $(addsuffix /all, $(ROM_DIRS)) 1585e6d1573SPaolo Bonzinirecurse-clean: $(addsuffix /clean, $(ROM_DIRS)) 1594aa42531Spbrook 1603bc2f570SPaolo Bonzini###################################################################### 1614fb240a4Sbellard 162a5665051SPaolo Bonziniclean: recurse-clean ninja-clean clean-ctlist 1639f5d9597SGreg Kurz if test -f ninjatool; then ./ninjatool $(if $(V),-v,) -t clean; fi 1642d80ae89Sbellard# avoid old build problems by removing potentially incorrect old files 16525be210fSJuan 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 166484e2cc7SPaolo Bonzini find . \( -name '*.so' -o -name '*.dll' -o -name '*.[oda]' \) -type f \ 16723858f40SLaszlo Ersek ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \ 16823858f40SLaszlo Ersek ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \ 16923858f40SLaszlo Ersek -exec rm {} + 170c3a0ee84SPaolo Bonzini rm -f TAGS cscope.* *.pod *~ */*~ 171b855f8d1SPaolo Bonzini rm -f fsdev/*.pod scsi/*.pod 17231e31b8aSbellard 173859aef02SPaolo BonziniVERSION = $(shell cat $(SRC_PATH)/VERSION) 17434bb443eSAnthony Liguori 17534bb443eSAnthony Liguoridist: qemu-$(VERSION).tar.bz2 17634bb443eSAnthony Liguori 17734bb443eSAnthony Liguoriqemu-%.tar.bz2: 17834bb443eSAnthony Liguori $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)" 17934bb443eSAnthony Liguori 180a5665051SPaolo Bonzinidistclean: clean ninja-distclean 181a5665051SPaolo Bonzini -test -f ninjatool && ./ninjatool $(if $(V),-v,) -t clean -g 182acfdaac5SPaolo Bonzini rm -f config-host.mak config-host.h* 1832038f8c8SPaolo Bonzini rm -f tests/tcg/config-*.mak 1842becc36aSPaolo Bonzini rm -f config-all-disas.mak config.status 185e8f3bd71SMarc-André Lureau rm -f tests/qemu-iotests/common.env 186fc8e320eSMagnus Damm rm -f roms/seabios/config.mak roms/vgabios/config.mak 18726fffe29SEmilio G. Cota rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols 18864ed6f92SPaolo Bonzini rm -f *-config-target.h *-config-devices.mak *-config-devices.h 189a5665051SPaolo Bonzini rm -rf meson-private meson-logs meson-info compile_commands.json 190245dac4aSPaolo Bonzini rm -f Makefile.ninja ninjatool ninjatool.stamp Makefile.mtest 191793553acSAlexandre Raymond rm -f config.log 19267ed96f9SPeter Maydell rm -f linux-headers/asm 193d9840e25STomoki Sekiyama rm -Rf .sdk 1947d13299dSbellard 195c857f905SGreg Kurzfind-src-path = find "$(SRC_PATH)/" -path "$(SRC_PATH)/meson" -prune -o -name "*.[chsS]" 196c857f905SGreg Kurz 197d7986405SGreg Kurz.PHONY: ctags 198d7986405SGreg Kurzctags: 199e90df5eaSGreg Kurz rm -f "$(SRC_PATH)/"tags 200e90df5eaSGreg Kurz $(find-src-path) -exec ctags -f "$(SRC_PATH)/"tags --append {} + 201d7986405SGreg Kurz 202d7986405SGreg Kurz.PHONY: TAGS 203d7986405SGreg KurzTAGS: 204e90df5eaSGreg Kurz rm -f "$(SRC_PATH)/"TAGS 205e90df5eaSGreg Kurz $(find-src-path) -exec etags -f "$(SRC_PATH)/"TAGS --append {} + 206d7986405SGreg Kurz 207d7986405SGreg Kurz.PHONY: cscope 208d7986405SGreg Kurzcscope: 209d7986405SGreg Kurz rm -f "$(SRC_PATH)"/cscope.* 210c857f905SGreg Kurz $(find-src-path) -print | sed -e 's,^\./,,' > "$(SRC_PATH)/cscope.files" 211e90df5eaSGreg Kurz cscope -b -i"$(SRC_PATH)/cscope.files" -f"$(SRC_PATH)"/cscope.out 212d7986405SGreg Kurz 213a5665051SPaolo Bonzini# Needed by "meson install" 214a5665051SPaolo Bonziniexport DESTDIR 215612384d7Sbellard 216324027c2SFam Zhenginclude $(SRC_PATH)/tests/docker/Makefile.include 217b1fb9a63SFam Zhenginclude $(SRC_PATH)/tests/vm/Makefile.include 2180d8e065fSMarc-André Lureau 219c355de59SPhilippe Mathieu-Daudéprint-help-run = printf " %-30s - %s\\n" "$1" "$2" 220c355de59SPhilippe Mathieu-Daudéprint-help = $(quiet-@)$(call print-help-run,$1,$2) 221c355de59SPhilippe Mathieu-Daudé 2220d8e065fSMarc-André Lureau.PHONY: help 2230d8e065fSMarc-André Lureauhelp: 2240d8e065fSMarc-André Lureau @echo 'Generic targets:' 225c355de59SPhilippe Mathieu-Daudé $(call print-help,all,Build all) 226c355de59SPhilippe Mathieu-Daudé $(call print-help,dir/file.o,Build specified target only) 227c355de59SPhilippe Mathieu-Daudé $(call print-help,install,Install QEMU, documentation and tools) 228c355de59SPhilippe Mathieu-Daudé $(call print-help,ctags/TAGS,Generate tags file for editors) 229c355de59SPhilippe Mathieu-Daudé $(call print-help,cscope,Generate cscope index) 230968b4db3SPaolo Bonzini $(call print-help,sparse,Run sparse on the QEMU source) 2310d8e065fSMarc-André Lureau @echo '' 232c17a386bSAlex Bennéeifeq ($(CONFIG_PLUGIN),y) 233c17a386bSAlex Bennée @echo 'Plugin targets:' 234c17a386bSAlex Bennée $(call print-help,plugins,Build the example TCG plugins) 235c17a386bSAlex Bennée @echo '' 236c17a386bSAlex Bennéeendif 2370d8e065fSMarc-André Lureau @echo 'Cleaning targets:' 238c355de59SPhilippe Mathieu-Daudé $(call print-help,clean,Remove most generated files but keep the config) 239c355de59SPhilippe Mathieu-Daudé $(call print-help,distclean,Remove all generated files) 240c355de59SPhilippe Mathieu-Daudé $(call print-help,dist,Build a distributable tarball) 2410d8e065fSMarc-André Lureau @echo '' 2420d8e065fSMarc-André Lureau @echo 'Test targets:' 243c355de59SPhilippe Mathieu-Daudé $(call print-help,check,Run all tests (check-help for details)) 2449ed7247aSPaolo Bonzini $(call print-help,bench,Run all benchmarks) 245c355de59SPhilippe Mathieu-Daudé $(call print-help,docker,Help about targets running tests inside containers) 246c355de59SPhilippe Mathieu-Daudé $(call print-help,vm-help,Help about targets running tests inside VM) 2470d8e065fSMarc-André Lureau @echo '' 2480d8e065fSMarc-André Lureau @echo 'Documentation targets:' 2494ac2ee19SPeter Maydell $(call print-help,html man,Build documentation in specified format) 2500d8e065fSMarc-André Lureau @echo '' 2510d8e065fSMarc-André Lureauifdef CONFIG_WIN32 2520d8e065fSMarc-André Lureau @echo 'Windows targets:' 253c355de59SPhilippe Mathieu-Daudé $(call print-help,installer,Build NSIS-based installer for QEMU) 2544bad7c3bSStefan Hajnocziifdef CONFIG_QGA_MSI 255c355de59SPhilippe Mathieu-Daudé $(call print-help,msi,Build MSI-based installer for qemu-ga) 2560d8e065fSMarc-André Lureauendif 2570d8e065fSMarc-André Lureau @echo '' 2580d8e065fSMarc-André Lureauendif 259c355de59SPhilippe Mathieu-Daudé $(call print-help,$(MAKE) [targets],(quiet build, default)) 260c355de59SPhilippe Mathieu-Daudé $(call print-help,$(MAKE) V=1 [targets],(verbose build)) 261660f7930SPaolo Bonzini 262660f7930SPaolo Bonzini# will delete the target of a rule if commands exit with a nonzero exit status 263660f7930SPaolo Bonzini.DELETE_ON_ERROR: 264660f7930SPaolo Bonzini 265660f7930SPaolo Bonziniprint-%: 266660f7930SPaolo Bonzini @echo '$*=$($*)' 267