pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 1 | # Makefile for QEMU. |
| 2 | |
Stefan Weil | 519e169 | 2011-09-16 21:50:43 +0200 | [diff] [blame] | 3 | # Always point to the root of the build tree (needs GNU make). |
| 4 | BUILD_DIR=$(CURDIR) |
Lluís Vilanova | 388d475 | 2011-09-15 22:45:35 +0200 | [diff] [blame] | 5 | |
Lluís Vilanova | 250b086 | 2012-03-06 19:50:38 +0100 | [diff] [blame] | 6 | # All following code might depend on configuration variables |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 7 | ifneq ($(wildcard config-host.mak),) |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 8 | # Put the all: rule here so that config-host.mak can contain dependencies. |
Stefan Weil | 8f67aa8 | 2012-07-09 20:36:36 +0200 | [diff] [blame] | 9 | all: |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 10 | include config-host.mak |
Peter Maydell | d1bd242 | 2012-10-19 14:54:23 +0100 | [diff] [blame] | 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. |
| 14 | ifneq ($(realpath $(SRC_PATH)),$(realpath .)) |
| 15 | ifneq ($(wildcard $(SRC_PATH)/config-host.mak),) |
| 16 | $(error This is an out of tree build but your source tree ($(SRC_PATH)) \ |
| 17 | seems 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) |
| 19 | endif |
| 20 | endif |
| 21 | |
Paolo Bonzini | f3aa844 | 2013-04-16 10:50:38 +0200 | [diff] [blame] | 22 | CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y) |
| 23 | CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y) |
| 24 | CONFIG_ALL=y |
| 25 | -include config-all-devices.mak |
| 26 | -include config-all-disas.mak |
| 27 | |
aliguori | 1775918 | 2009-01-21 18:12:52 +0000 | [diff] [blame] | 28 | include $(SRC_PATH)/rules.mak |
Paolo Bonzini | 59bc10e | 2010-01-04 11:02:28 +0100 | [diff] [blame] | 29 | config-host.mak: $(SRC_PATH)/configure |
Juan Quintela | e5efe7f | 2009-10-07 02:40:59 +0200 | [diff] [blame] | 30 | @echo $@ is out-of-date, running configure |
Stefan Weil | bdf523e | 2013-10-20 18:39:21 +0200 | [diff] [blame] | 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 |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 39 | else |
| 40 | config-host.mak: |
Mike Frysinger | 7748b8c | 2012-09-16 16:07:13 -0400 | [diff] [blame] | 41 | ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail)) |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 42 | @echo "Please call configure before running make!" |
| 43 | @exit 1 |
| 44 | endif |
Mike Frysinger | 7748b8c | 2012-09-16 16:07:13 -0400 | [diff] [blame] | 45 | endif |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 46 | |
Lluís Vilanova | eac236e | 2012-12-14 20:13:09 +0100 | [diff] [blame] | 47 | GENERATED_HEADERS = config-host.h qemu-options.def |
Wenchao Xia | 21cd70d | 2014-06-18 08:43:28 +0200 | [diff] [blame] | 48 | GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h qapi-event.h |
| 49 | GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c |
Lluís Vilanova | eac236e | 2012-12-14 20:13:09 +0100 | [diff] [blame] | 50 | |
Lluís Vilanova | 45be2f5 | 2013-03-05 14:47:32 +0100 | [diff] [blame] | 51 | GENERATED_HEADERS += trace/generated-events.h |
| 52 | GENERATED_SOURCES += trace/generated-events.c |
| 53 | |
Lluís Vilanova | eac236e | 2012-12-14 20:13:09 +0100 | [diff] [blame] | 54 | GENERATED_HEADERS += trace/generated-tracers.h |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 55 | ifeq ($(findstring dtrace,$(TRACE_BACKENDS)),dtrace) |
Lluís Vilanova | eac236e | 2012-12-14 20:13:09 +0100 | [diff] [blame] | 56 | GENERATED_HEADERS += trace/generated-tracers-dtrace.h |
| 57 | endif |
| 58 | GENERATED_SOURCES += trace/generated-tracers.c |
Lluís Vilanova | 250b086 | 2012-03-06 19:50:38 +0100 | [diff] [blame] | 59 | |
Lluís Vilanova | 465830f | 2014-05-30 14:12:13 +0200 | [diff] [blame] | 60 | GENERATED_HEADERS += trace/generated-tcg-tracers.h |
| 61 | |
Lluís Vilanova | f465422 | 2014-05-30 14:12:01 +0200 | [diff] [blame] | 62 | GENERATED_HEADERS += trace/generated-helpers-wrappers.h |
Lluís Vilanova | 707c8a9 | 2014-05-30 14:11:50 +0200 | [diff] [blame] | 63 | GENERATED_HEADERS += trace/generated-helpers.h |
Lluís Vilanova | 341ea69 | 2014-05-30 14:11:56 +0200 | [diff] [blame] | 64 | GENERATED_SOURCES += trace/generated-helpers.c |
Lluís Vilanova | 707c8a9 | 2014-05-30 14:11:50 +0200 | [diff] [blame] | 65 | |
Lluís Vilanova | 5b80827 | 2014-05-27 15:02:14 +0200 | [diff] [blame] | 66 | ifeq ($(findstring ust,$(TRACE_BACKENDS)),ust) |
Mohamad Gebai | e6bf23f | 2014-01-29 22:47:56 -0500 | [diff] [blame] | 67 | GENERATED_HEADERS += trace/generated-ust-provider.h |
| 68 | GENERATED_SOURCES += trace/generated-ust.c |
| 69 | endif |
| 70 | |
Juan Quintela | d9ace8b | 2009-10-06 21:11:15 +0200 | [diff] [blame] | 71 | # Don't try to regenerate Makefile or configure |
| 72 | # We don't generate any of them |
| 73 | Makefile: ; |
| 74 | configure: ; |
| 75 | |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 76 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
Anthony Liguori | 34bb443 | 2012-07-17 13:33:32 -0500 | [diff] [blame] | 77 | pdf recurse-all speed test dist |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 78 | |
Paolo Bonzini | fec90ff | 2012-05-29 11:49:50 +0200 | [diff] [blame] | 79 | $(call set-vpath, $(SRC_PATH)) |
pbrook | 8c462f8 | 2007-11-18 21:12:37 +0000 | [diff] [blame] | 80 | |
Juan Quintela | 3e2e0e6 | 2009-08-03 14:47:06 +0200 | [diff] [blame] | 81 | LIBS+=-lz $(LIBS_TOOLS) |
Juan Quintela | 67c0f08 | 2009-07-27 16:12:51 +0200 | [diff] [blame] | 82 | |
Corey Bryant | 7b93fad | 2012-01-26 09:42:24 -0500 | [diff] [blame] | 83 | HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) |
| 84 | |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 85 | ifdef BUILD_DOCS |
Luiz Capitulino | d076a2a | 2013-09-10 16:56:14 -0400 | [diff] [blame] | 86 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qmp-commands.txt |
Meador Inge | 983eef5 | 2012-02-24 14:00:42 +0530 | [diff] [blame] | 87 | ifdef CONFIG_VIRTFS |
M. Mohan Kumar | a2d8f1b | 2011-12-14 13:58:47 +0530 | [diff] [blame] | 88 | DOCS+=fsdev/virtfs-proxy-helper.1 |
Meador Inge | 983eef5 | 2012-02-24 14:00:42 +0530 | [diff] [blame] | 89 | endif |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 90 | else |
| 91 | DOCS= |
| 92 | endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 93 | |
Lluís Vilanova | 388d475 | 2011-09-15 22:45:35 +0200 | [diff] [blame] | 94 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR) |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 95 | SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) |
Andreas Färber | 8807080 | 2013-02-21 16:26:46 +0100 | [diff] [blame] | 96 | SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS)) |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 97 | |
Stefan Weil | 8bdd3d4 | 2012-09-14 19:02:30 +0200 | [diff] [blame] | 98 | ifeq ($(SUBDIR_DEVICES_MAK),) |
| 99 | config-all-devices.mak: |
| 100 | $(call quiet-command,echo '# no devices' > $@," GEN $@") |
| 101 | else |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 102 | config-all-devices.mak: $(SUBDIR_DEVICES_MAK) |
Paolo Bonzini | bb585a7 | 2013-04-03 17:53:21 +0200 | [diff] [blame] | 103 | $(call quiet-command, sed -n \ |
| 104 | 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \ |
| 105 | $(SUBDIR_DEVICES_MAK) | sort -u > $@, \ |
| 106 | " GEN $@") |
Stefan Weil | 8bdd3d4 | 2012-09-14 19:02:30 +0200 | [diff] [blame] | 107 | endif |
Juan Quintela | 1f3d3c8 | 2009-10-07 02:41:02 +0200 | [diff] [blame] | 108 | |
Paul Brook | bd9141b | 2010-11-26 18:47:45 +0000 | [diff] [blame] | 109 | -include $(SUBDIR_DEVICES_MAK_DEP) |
| 110 | |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 111 | %/config-devices.mak: default-configs/%.mak |
Michael S. Tsirkin | 12ccfec | 2015-02-19 08:48:46 +0100 | [diff] [blame] | 112 | $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@.tmp $<, " GEN $@.tmp") |
| 113 | $(call quiet-command, if test -f $@; then \ |
Blue Swirl | 904fe1f | 2010-10-02 14:28:08 +0000 | [diff] [blame] | 114 | if cmp -s $@.old $@; then \ |
Paul Brook | bd9141b | 2010-11-26 18:47:45 +0000 | [diff] [blame] | 115 | mv $@.tmp $@; \ |
| 116 | cp -p $@ $@.old; \ |
Stefan Weil | 012f087 | 2009-12-20 15:39:03 +0100 | [diff] [blame] | 117 | else \ |
| 118 | if test -f $@.old; then \ |
| 119 | echo "WARNING: $@ (user modified) out of date.";\ |
| 120 | else \ |
| 121 | echo "WARNING: $@ out of date.";\ |
| 122 | fi; \ |
| 123 | echo "Run \"make defconfig\" to regenerate."; \ |
| 124 | rm $@.tmp; \ |
| 125 | fi; \ |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 126 | else \ |
Stefan Weil | 012f087 | 2009-12-20 15:39:03 +0100 | [diff] [blame] | 127 | mv $@.tmp $@; \ |
| 128 | cp -p $@ $@.old; \ |
Michael S. Tsirkin | 12ccfec | 2015-02-19 08:48:46 +0100 | [diff] [blame] | 129 | fi, " GEN $@"); |
Paul Brook | a992fe3 | 2009-11-22 16:25:30 +0000 | [diff] [blame] | 130 | |
| 131 | defconfig: |
| 132 | rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) |
| 133 | |
Paolo Bonzini | 992aeb8 | 2012-12-21 08:34:49 +0100 | [diff] [blame] | 134 | ifneq ($(wildcard config-host.mak),) |
| 135 | include $(SRC_PATH)/Makefile.objs |
Fam Zheng | ba1183d | 2014-02-10 14:48:52 +0800 | [diff] [blame] | 136 | endif |
| 137 | |
| 138 | dummy := $(call unnest-vars,, \ |
| 139 | stub-obj-y \ |
| 140 | util-obj-y \ |
| 141 | qga-obj-y \ |
Tomoki Sekiyama | 577a672 | 2014-03-26 14:28:45 -0400 | [diff] [blame] | 142 | qga-vss-dll-obj-y \ |
Fam Zheng | ba1183d | 2014-02-10 14:48:52 +0800 | [diff] [blame] | 143 | block-obj-y \ |
Fam Zheng | cc47569 | 2014-02-10 14:48:59 +0800 | [diff] [blame] | 144 | block-obj-m \ |
| 145 | common-obj-y \ |
| 146 | common-obj-m) |
Fam Zheng | ba1183d | 2014-02-10 14:48:52 +0800 | [diff] [blame] | 147 | |
| 148 | ifneq ($(wildcard config-host.mak),) |
Paolo Bonzini | 992aeb8 | 2012-12-21 08:34:49 +0100 | [diff] [blame] | 149 | include $(SRC_PATH)/tests/Makefile |
| 150 | endif |
| 151 | ifeq ($(CONFIG_SMARTCARD_NSS),y) |
| 152 | include $(SRC_PATH)/libcacard/Makefile |
| 153 | endif |
| 154 | |
Fam Zheng | 1796926 | 2014-02-10 14:48:56 +0800 | [diff] [blame] | 155 | all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules |
pbrook | b9dea4f | 2006-05-13 16:54:03 +0000 | [diff] [blame] | 156 | |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 157 | config-host.h: config-host.h-timestamp |
| 158 | config-host.h-timestamp: config-host.mak |
Blue Swirl | e14056a | 2010-11-01 18:09:38 +0000 | [diff] [blame] | 159 | qemu-options.def: $(SRC_PATH)/qemu-options.hx |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 160 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 161 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 162 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
Andreas Färber | 916359f | 2013-02-21 16:26:47 +0100 | [diff] [blame] | 163 | SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES)) |
| 164 | |
Stefan Weil | 57f45b6 | 2014-02-27 21:28:03 +0100 | [diff] [blame] | 165 | $(SOFTMMU_SUBDIR_RULES): $(block-obj-y) |
Andreas Färber | 916359f | 2013-02-21 16:26:47 +0100 | [diff] [blame] | 166 | $(SOFTMMU_SUBDIR_RULES): config-all-devices.mak |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 167 | |
Paolo Bonzini | 4115852 | 2012-05-29 12:41:34 +0200 | [diff] [blame] | 168 | subdir-%: |
Paul Brook | 0087375 | 2009-05-07 02:00:31 +0100 | [diff] [blame] | 169 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
pbrook | 4aa4253 | 2006-05-13 13:55:08 +0000 | [diff] [blame] | 170 | |
Gerd Hoffmann | e2134eb | 2012-09-25 16:04:58 +0200 | [diff] [blame] | 171 | subdir-pixman: pixman/Makefile |
| 172 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,) |
| 173 | |
| 174 | pixman/Makefile: $(SRC_PATH)/pixman/configure |
Gerd Hoffmann | f9943cd | 2013-01-04 10:15:53 +0100 | [diff] [blame] | 175 | (cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static) |
Gerd Hoffmann | e2134eb | 2012-09-25 16:04:58 +0200 | [diff] [blame] | 176 | |
| 177 | $(SRC_PATH)/pixman/configure: |
| 178 | (cd $(SRC_PATH)/pixman; autoreconf -v --install) |
| 179 | |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 180 | DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt |
Peter Maydell | 965f486 | 2013-06-21 14:00:17 +0100 | [diff] [blame] | 181 | DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS) |
| 182 | DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 183 | |
| 184 | subdir-dtc:dtc/libfdt dtc/tests |
Peter Maydell | 965f486 | 2013-06-21 14:00:17 +0100 | [diff] [blame] | 185 | $(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,) |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 186 | |
| 187 | dtc/%: |
| 188 | mkdir -p $@ |
| 189 | |
Paolo Bonzini | 82cb6b0 | 2013-01-19 11:06:48 +0100 | [diff] [blame] | 190 | $(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) |
Blue Swirl | add1615 | 2009-09-27 16:26:02 +0000 | [diff] [blame] | 191 | |
Paul Brook | c05ac89 | 2009-07-31 13:18:32 +0100 | [diff] [blame] | 192 | ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) |
| 193 | romsubdir-%: |
| 194 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) |
| 195 | |
| 196 | ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) |
| 197 | |
| 198 | recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 199 | |
Vasily Efimov | 23cab7b | 2015-02-18 15:59:37 +0300 | [diff] [blame] | 200 | $(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h | $(BUILD_DIR)/version.lo |
Stefan Weil | 7e75e33 | 2013-08-16 21:51:53 +0200 | [diff] [blame] | 201 | $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<," RC version.o") |
Vasily Efimov | 23cab7b | 2015-02-18 15:59:37 +0300 | [diff] [blame] | 202 | $(BUILD_DIR)/version.lo: $(SRC_PATH)/version.rc config-host.h |
Stefan Weil | 7e75e33 | 2013-08-16 21:51:53 +0200 | [diff] [blame] | 203 | $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<," RC version.lo") |
Marc-André Lureau | 5354e4d | 2013-02-25 23:31:13 +0100 | [diff] [blame] | 204 | |
Paolo Bonzini | fba90ac | 2013-05-01 18:30:15 +0200 | [diff] [blame] | 205 | Makefile: $(version-obj-y) $(version-lobj-y) |
Paolo Bonzini | 3bc2f57 | 2012-11-16 18:35:27 +0100 | [diff] [blame] | 206 | |
| 207 | ###################################################################### |
Paolo Bonzini | 8a09070 | 2012-12-20 15:40:20 +0100 | [diff] [blame] | 208 | # Build libraries |
Paolo Bonzini | 3bc2f57 | 2012-11-16 18:35:27 +0100 | [diff] [blame] | 209 | |
| 210 | libqemustub.a: $(stub-obj-y) |
Fam Zheng | 169a24a | 2014-08-07 10:34:41 +0800 | [diff] [blame] | 211 | libqemuutil.a: $(util-obj-y) |
Paolo Bonzini | 3bc2f57 | 2012-11-16 18:35:27 +0100 | [diff] [blame] | 212 | |
Fam Zheng | e26110c | 2014-02-10 14:48:57 +0800 | [diff] [blame] | 213 | block-modules = $(foreach o,$(block-obj-m),"$(basename $(subst /,-,$o))",) NULL |
| 214 | util/module.o-cflags = -D'CONFIG_BLOCK_MODULES=$(block-modules)' |
| 215 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 216 | ###################################################################### |
| 217 | |
Juan Quintela | 3c089e1 | 2010-01-20 20:54:18 +0100 | [diff] [blame] | 218 | qemu-img.o: qemu-img-cmds.h |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 219 | |
Paolo Bonzini | ff667e2 | 2012-12-21 09:45:20 +0100 | [diff] [blame] | 220 | qemu-img$(EXESUF): qemu-img.o $(block-obj-y) libqemuutil.a libqemustub.a |
| 221 | qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) libqemuutil.a libqemustub.a |
Kevin Wolf | 587da2c | 2013-06-05 14:19:41 +0200 | [diff] [blame] | 222 | qemu-io$(EXESUF): qemu-io.o $(block-obj-y) libqemuutil.a libqemustub.a |
aliguori | 0a8e1ac | 2009-04-05 18:41:23 +0000 | [diff] [blame] | 223 | |
Corey Bryant | 7b93fad | 2012-01-26 09:42:24 -0500 | [diff] [blame] | 224 | qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o |
| 225 | |
Paolo Bonzini | ff667e2 | 2012-12-21 09:45:20 +0100 | [diff] [blame] | 226 | fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o libqemuutil.a libqemustub.a |
M. Mohan Kumar | 17bff52 | 2011-12-14 13:58:42 +0530 | [diff] [blame] | 227 | fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap |
| 228 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 229 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 230 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@") |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 231 | |
Michael Roth | 957f1f9 | 2011-08-11 15:38:12 -0500 | [diff] [blame] | 232 | qemu-ga$(EXESUF): LIBS = $(LIBS_QGA) |
Dunrong Huang | 54c2e50 | 2012-07-29 03:11:24 +0800 | [diff] [blame] | 233 | qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated |
Michael Roth | 640e540 | 2011-07-19 14:50:44 -0500 | [diff] [blame] | 234 | |
Avi Kivity | 19bf7c8 | 2011-12-28 12:26:58 +0200 | [diff] [blame] | 235 | gen-out-type = $(subst .,-,$(suffix $@)) |
Avi Kivity | 8d3bc51 | 2011-12-27 16:02:16 +0200 | [diff] [blame] | 236 | |
Stefan Hajnoczi | 0521d37 | 2012-08-10 14:08:42 +0100 | [diff] [blame] | 237 | qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py |
| 238 | |
Dunrong Huang | 54c2e50 | 2012-07-29 03:11:24 +0800 | [diff] [blame] | 239 | qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\ |
Paolo Bonzini | 2870dc3 | 2012-10-24 11:26:49 +0200 | [diff] [blame] | 240 | $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 241 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \ |
Lluís Vilanova | 33aaad5 | 2014-05-02 15:52:35 +0200 | [diff] [blame] | 242 | $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \ |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 243 | " GEN $@") |
Dunrong Huang | 54c2e50 | 2012-07-29 03:11:24 +0800 | [diff] [blame] | 244 | qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\ |
Paolo Bonzini | 2870dc3 | 2012-10-24 11:26:49 +0200 | [diff] [blame] | 245 | $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 246 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \ |
Lluís Vilanova | 33aaad5 | 2014-05-02 15:52:35 +0200 | [diff] [blame] | 247 | $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \ |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 248 | " GEN $@") |
Dunrong Huang | 54c2e50 | 2012-07-29 03:11:24 +0800 | [diff] [blame] | 249 | qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\ |
Paolo Bonzini | 2870dc3 | 2012-10-24 11:26:49 +0200 | [diff] [blame] | 250 | $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 251 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \ |
Lluís Vilanova | 33aaad5 | 2014-05-02 15:52:35 +0200 | [diff] [blame] | 252 | $(gen-out-type) -o qga/qapi-generated -p "qga-" -i $<, \ |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 253 | " GEN $@") |
Michael Roth | e3d4d25 | 2011-07-19 15:41:55 -0500 | [diff] [blame] | 254 | |
Max Reitz | be13d46 | 2014-06-18 08:43:26 +0200 | [diff] [blame] | 255 | qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \ |
Wenchao Xia | f668470 | 2014-06-18 08:43:32 +0200 | [diff] [blame] | 256 | $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \ |
Wenchao Xia | 82d72d9 | 2014-06-24 16:33:57 -0700 | [diff] [blame] | 257 | $(SRC_PATH)/qapi/event.json |
Max Reitz | be13d46 | 2014-06-18 08:43:26 +0200 | [diff] [blame] | 258 | |
Michael S. Tsirkin | 599825c | 2011-11-16 23:58:18 +0200 | [diff] [blame] | 259 | qapi-types.c qapi-types.h :\ |
Max Reitz | be13d46 | 2014-06-18 08:43:26 +0200 | [diff] [blame] | 260 | $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 261 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \ |
Lluís Vilanova | 33aaad5 | 2014-05-02 15:52:35 +0200 | [diff] [blame] | 262 | $(gen-out-type) -o "." -b -i $<, \ |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 263 | " GEN $@") |
Michael S. Tsirkin | 599825c | 2011-11-16 23:58:18 +0200 | [diff] [blame] | 264 | qapi-visit.c qapi-visit.h :\ |
Max Reitz | be13d46 | 2014-06-18 08:43:26 +0200 | [diff] [blame] | 265 | $(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 266 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \ |
Lluís Vilanova | 33aaad5 | 2014-05-02 15:52:35 +0200 | [diff] [blame] | 267 | $(gen-out-type) -o "." -b -i $<, \ |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 268 | " GEN $@") |
Wenchao Xia | 21cd70d | 2014-06-18 08:43:28 +0200 | [diff] [blame] | 269 | qapi-event.c qapi-event.h :\ |
| 270 | $(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py) |
| 271 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \ |
| 272 | $(gen-out-type) -o "." -b -i $<, \ |
| 273 | " GEN $@") |
Michael S. Tsirkin | 599825c | 2011-11-16 23:58:18 +0200 | [diff] [blame] | 274 | qmp-commands.h qmp-marshal.c :\ |
Max Reitz | be13d46 | 2014-06-18 08:43:26 +0200 | [diff] [blame] | 275 | $(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 276 | $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \ |
Lluís Vilanova | 33aaad5 | 2014-05-02 15:52:35 +0200 | [diff] [blame] | 277 | $(gen-out-type) -o "." -m -i $<, \ |
Lluís Vilanova | 0a60774 | 2014-05-02 15:52:24 +0200 | [diff] [blame] | 278 | " GEN $@") |
Anthony Liguori | e319360 | 2011-09-02 12:34:47 -0500 | [diff] [blame] | 279 | |
Dunrong Huang | 54c2e50 | 2012-07-29 03:11:24 +0800 | [diff] [blame] | 280 | QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h) |
Paolo Bonzini | 4115852 | 2012-05-29 12:41:34 +0200 | [diff] [blame] | 281 | $(qga-obj-y) qemu-ga.o: $(QGALIB_GEN) |
Michael Roth | 957f1f9 | 2011-08-11 15:38:12 -0500 | [diff] [blame] | 282 | |
Paolo Bonzini | ff667e2 | 2012-12-21 09:45:20 +0100 | [diff] [blame] | 283 | qemu-ga$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a |
Paolo Bonzini | 2870dc3 | 2012-10-24 11:26:49 +0200 | [diff] [blame] | 284 | $(call LINK, $^) |
Michael Roth | 48ff7a6 | 2011-07-20 15:19:37 -0500 | [diff] [blame] | 285 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 286 | clean: |
bellard | 2d80ae8 | 2003-08-11 23:01:33 +0000 | [diff] [blame] | 287 | # avoid old build problems by removing potentially incorrect old files |
Juan Quintela | 25be210f | 2009-10-07 02:41:00 +0200 | [diff] [blame] | 288 | rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h |
Michael S. Tsirkin | df2943b | 2010-10-26 17:53:41 +0200 | [diff] [blame] | 289 | rm -f qemu-options.def |
Fam Zheng | f4b11ee | 2014-03-17 09:35:22 +0800 | [diff] [blame] | 290 | find . \( -name '*.l[oa]' -o -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f -exec rm {} + |
Tomoki Sekiyama | b39297a | 2013-08-07 11:40:18 -0400 | [diff] [blame] | 291 | rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~ |
Stefan Weil | 8b6bfc7 | 2013-07-25 18:24:58 +0200 | [diff] [blame] | 292 | rm -f fsdev/*.pod |
| 293 | rm -rf .libs */.libs |
Blue Swirl | 07b44ce | 2009-06-09 18:45:16 +0000 | [diff] [blame] | 294 | rm -f qemu-img-cmds.h |
Lluís Vilanova | 19ac36b | 2012-04-18 20:15:39 +0200 | [diff] [blame] | 295 | @# May not be present in GENERATED_HEADERS |
Lluís Vilanova | eac236e | 2012-12-14 20:13:09 +0100 | [diff] [blame] | 296 | rm -f trace/generated-tracers-dtrace.dtrace* |
| 297 | rm -f trace/generated-tracers-dtrace.h* |
Lluís Vilanova | 19ac36b | 2012-04-18 20:15:39 +0200 | [diff] [blame] | 298 | rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp) |
| 299 | rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp) |
Stefan Weil | 8f0e5c6bb | 2012-06-09 09:08:39 +0200 | [diff] [blame] | 300 | rm -rf qapi-generated |
Dunrong Huang | 54c2e50 | 2012-07-29 03:11:24 +0800 | [diff] [blame] | 301 | rm -rf qga/qapi-generated |
Stefan Hajnoczi | 781c0c3 | 2013-01-15 08:47:26 +0100 | [diff] [blame] | 302 | for d in $(ALL_SUBDIRS); do \ |
Magnus Damm | fc8e320 | 2009-11-13 18:51:05 +0900 | [diff] [blame] | 303 | if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ |
Michael S. Tsirkin | df2943b | 2010-10-26 17:53:41 +0200 | [diff] [blame] | 304 | rm -f $$d/qemu-options.def; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 305 | done |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 306 | |
Anthony Liguori | 34bb443 | 2012-07-17 13:33:32 -0500 | [diff] [blame] | 307 | VERSION ?= $(shell cat VERSION) |
| 308 | |
| 309 | dist: qemu-$(VERSION).tar.bz2 |
| 310 | |
| 311 | qemu-%.tar.bz2: |
| 312 | $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)" |
| 313 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 314 | distclean: clean |
Magnus Damm | fc8e320 | 2009-11-13 18:51:05 +0900 | [diff] [blame] | 315 | rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi |
Thomas Huth | ae21935 | 2014-12-15 11:19:46 +0100 | [diff] [blame] | 316 | rm -f config-all-devices.mak config-all-disas.mak config.status |
| 317 | rm -f po/*.mo tests/qemu-iotests/common.env |
Magnus Damm | fc8e320 | 2009-11-13 18:51:05 +0900 | [diff] [blame] | 318 | rm -f roms/seabios/config.mak roms/vgabios/config.mak |
Brad Hards | 7a734b8 | 2011-04-13 16:42:16 +1000 | [diff] [blame] | 319 | rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi |
| 320 | rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys |
| 321 | rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp |
| 322 | rm -f qemu-doc.vr |
Alexandre Raymond | 793553a | 2011-07-25 23:56:02 -0400 | [diff] [blame] | 323 | rm -f config.log |
Peter Maydell | 67ed96f | 2012-02-01 18:50:42 +0000 | [diff] [blame] | 324 | rm -f linux-headers/asm |
Hidetoshi Seto | e1a068b | 2010-07-08 14:26:18 +0900 | [diff] [blame] | 325 | 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 |
Paolo Bonzini | 8e98e2e | 2012-10-24 11:16:01 +0200 | [diff] [blame] | 326 | for d in $(TARGET_DIRS); do \ |
bellard | bc1b050 | 2003-10-28 00:12:52 +0000 | [diff] [blame] | 327 | rm -rf $$d || exit 1 ; \ |
bellard | 76bc683 | 2003-08-10 23:41:46 +0000 | [diff] [blame] | 328 | done |
Tomoki Sekiyama | d9840e2 | 2013-08-07 11:40:03 -0400 | [diff] [blame] | 329 | rm -Rf .sdk |
Wenchao Xia | a85903f | 2012-11-24 17:27:18 +0800 | [diff] [blame] | 330 | if test -f pixman/config.log; then make -C pixman distclean; fi |
Peter Crosthwaite | a540f15 | 2013-04-18 14:47:31 +1000 | [diff] [blame] | 331 | if test -f dtc/version_gen.h; then make $(DTC_MAKE_ARGS) clean; fi |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 332 | |
bellard | fed4a9a | 2004-12-12 22:18:34 +0000 | [diff] [blame] | 333 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
| 334 | ar de en-us fi fr-be hr it lv nl pl ru th \ |
Frédéric Boiteux | 471fbf4 | 2012-06-08 20:06:25 +0200 | [diff] [blame] | 335 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \ |
Jan Krupa | 3751e72 | 2013-10-16 14:40:04 +0200 | [diff] [blame] | 336 | bepo cz |
bellard | fed4a9a | 2004-12-12 22:18:34 +0000 | [diff] [blame] | 337 | |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 338 | ifdef INSTALL_BLOBS |
Eduardo Habkost | bf2eaf7 | 2013-12-09 21:33:34 -0200 | [diff] [blame] | 339 | BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \ |
Gerd Hoffmann | 7943a2f | 2010-11-30 11:54:33 +0100 | [diff] [blame] | 340 | vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \ |
Laszlo Ersek | 7e973bb | 2013-01-08 19:52:20 +0100 | [diff] [blame] | 341 | acpi-dsdt.aml q35-acpi-dsdt.aml \ |
Mark Cave-Ayland | 9eb08a4 | 2013-10-15 21:03:04 +0100 | [diff] [blame] | 342 | ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \ |
Alex Williamson | 5ee8ad7 | 2011-04-18 11:46:01 -0600 | [diff] [blame] | 343 | pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \ |
| 344 | pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \ |
Sander Eikelenboom | 9fd0297 | 2013-04-08 23:08:13 +0200 | [diff] [blame] | 345 | efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \ |
| 346 | efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \ |
Anthony Liguori | f7da9c1 | 2013-06-07 13:24:17 -0500 | [diff] [blame] | 347 | qemu-icon.bmp qemu_logo_no_text.svg \ |
Michal Simek | 00914b7 | 2011-03-14 11:29:19 +0100 | [diff] [blame] | 348 | bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \ |
Jan Kiszka | 2a2af96 | 2012-02-17 18:31:18 +0100 | [diff] [blame] | 349 | multiboot.bin linuxboot.bin kvmvapic.bin \ |
David Gibson | 39ac845 | 2011-04-01 15:15:23 +1100 | [diff] [blame] | 350 | s390-zipl.rom \ |
Alexander Graf | 0c1fecdd | 2013-04-22 21:10:50 +0200 | [diff] [blame] | 351 | s390-ccw.img \ |
Richard Henderson | 753d11f | 2011-06-24 11:58:37 -0700 | [diff] [blame] | 352 | spapr-rtas.bin slof.bin \ |
Cole Robinson | 0c6ab8c | 2014-07-04 15:43:18 -0400 | [diff] [blame] | 353 | palcode-clipper \ |
| 354 | u-boot.e500 |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 355 | else |
| 356 | BLOBS= |
| 357 | endif |
| 358 | |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 359 | install-doc: $(DOCS) |
Eduardo Habkost | d7dd65b | 2012-04-18 16:55:44 -0300 | [diff] [blame] | 360 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)" |
| 361 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)" |
Luiz Capitulino | d076a2a | 2013-09-10 16:56:14 -0400 | [diff] [blame] | 362 | $(INSTALL_DATA) qmp-commands.txt "$(DESTDIR)$(qemu_docdir)" |
Juan Quintela | 96d409e | 2009-08-03 14:47:00 +0200 | [diff] [blame] | 363 | ifdef CONFIG_POSIX |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 364 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
Andreas Färber | 8a3e8f7 | 2013-06-11 13:13:58 +0200 | [diff] [blame] | 365 | $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1" |
| 366 | ifneq ($(TOOLS),) |
| 367 | $(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1" |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 368 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" |
| 369 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 370 | endif |
Andreas Färber | 8a3e8f7 | 2013-06-11 13:13:58 +0200 | [diff] [blame] | 371 | endif |
M. Mohan Kumar | a2d8f1b | 2011-12-14 13:58:47 +0530 | [diff] [blame] | 372 | ifdef CONFIG_VIRTFS |
| 373 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
| 374 | $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1" |
| 375 | endif |
john cooper | b5ec5ce | 2010-02-20 11:14:59 -0600 | [diff] [blame] | 376 | |
Eduardo Habkost | e2d87bf | 2012-05-02 13:07:30 -0300 | [diff] [blame] | 377 | install-datadir: |
| 378 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)" |
| 379 | |
Laszlo Ersek | f2e3978 | 2013-05-18 07:13:14 +0200 | [diff] [blame] | 380 | install-localstatedir: |
| 381 | ifdef CONFIG_POSIX |
| 382 | ifneq (,$(findstring qemu-ga,$(TOOLS))) |
| 383 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run |
| 384 | endif |
| 385 | endif |
| 386 | |
Eduardo Habkost | e2d87bf | 2012-05-02 13:07:30 -0300 | [diff] [blame] | 387 | install-confdir: |
| 388 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)" |
| 389 | |
| 390 | install-sysconfig: install-datadir install-confdir |
| 391 | $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)" |
Eduardo Habkost | e2d87bf | 2012-05-02 13:07:30 -0300 | [diff] [blame] | 392 | |
Laszlo Ersek | f2e3978 | 2013-05-18 07:13:14 +0200 | [diff] [blame] | 393 | install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \ |
| 394 | install-datadir install-localstatedir |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 395 | ifneq ($(TOOLS),) |
Michael Tokarev | 0d65942 | 2014-06-22 10:55:23 +0400 | [diff] [blame] | 396 | $(call install-prog,$(TOOLS),$(DESTDIR)$(bindir)) |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 397 | endif |
Fam Zheng | e3be6f0 | 2014-02-10 14:48:58 +0800 | [diff] [blame] | 398 | ifneq ($(CONFIG_MODULES),) |
| 399 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)" |
Michael Tokarev | 2115182 | 2014-05-08 14:56:58 +0400 | [diff] [blame] | 400 | for s in $(modules-m:.mo=$(DSOSUF)); do \ |
| 401 | t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \ |
Michael Tokarev | 264f8b4 | 2014-05-08 15:06:03 +0400 | [diff] [blame] | 402 | $(INSTALL_LIB) $$s "$$t"; \ |
Michael Tokarev | 2115182 | 2014-05-08 14:56:58 +0400 | [diff] [blame] | 403 | test -z "$(STRIP)" || $(STRIP) "$$t"; \ |
Fam Zheng | e3be6f0 | 2014-02-10 14:48:58 +0800 | [diff] [blame] | 404 | done |
| 405 | endif |
Corey Bryant | 7b93fad | 2012-01-26 09:42:24 -0500 | [diff] [blame] | 406 | ifneq ($(HELPERS-y),) |
Michael Tokarev | 0d65942 | 2014-06-22 10:55:23 +0400 | [diff] [blame] | 407 | $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir)) |
Corey Bryant | 7b93fad | 2012-01-26 09:42:24 -0500 | [diff] [blame] | 408 | endif |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 409 | ifneq ($(BLOBS),) |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 410 | set -e; for x in $(BLOBS); do \ |
Eduardo Habkost | 6aae2a2 | 2012-04-18 16:55:41 -0300 | [diff] [blame] | 411 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 412 | done |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 413 | endif |
Anthony Liguori | 834574e | 2013-02-20 07:43:24 -0600 | [diff] [blame] | 414 | ifeq ($(CONFIG_GTK),y) |
| 415 | $(MAKE) -C po $@ |
| 416 | endif |
Eduardo Habkost | 6aae2a2 | 2012-04-18 16:55:41 -0300 | [diff] [blame] | 417 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps" |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 418 | set -e; for x in $(KEYMAPS); do \ |
Eduardo Habkost | 6aae2a2 | 2012-04-18 16:55:41 -0300 | [diff] [blame] | 419 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 420 | done |
Stefan Hajnoczi | 89ae583 | 2014-09-23 16:29:35 +0100 | [diff] [blame] | 421 | $(INSTALL_DATA) $(SRC_PATH)/trace-events "$(DESTDIR)$(qemu_datadir)/trace-events" |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 422 | for d in $(TARGET_DIRS); do \ |
Lluís Vilanova | 6570025 | 2014-01-20 12:21:54 +0100 | [diff] [blame] | 423 | $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 424 | done |
bellard | 612384d | 2003-03-22 17:31:19 +0000 | [diff] [blame] | 425 | |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 426 | # various test targets |
bellard | 9b0b820 | 2007-11-14 10:34:57 +0000 | [diff] [blame] | 427 | test speed: all |
Anthony Liguori | c09015d | 2012-01-10 13:10:42 -0600 | [diff] [blame] | 428 | $(MAKE) -C tests/tcg $@ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 429 | |
Alexandre Bique | 21d4e8e | 2009-08-07 15:43:11 +0100 | [diff] [blame] | 430 | .PHONY: TAGS |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 431 | TAGS: |
David Gibson | b1999e8 | 2013-03-12 13:57:28 +1100 | [diff] [blame] | 432 | rm -f $@ |
| 433 | find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} + |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 434 | |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 435 | cscope: |
| 436 | rm -f ./cscope.* |
Alexandre Raymond | 45b75ae | 2011-07-20 23:12:15 -0400 | [diff] [blame] | 437 | find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 438 | cscope -b |
| 439 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 440 | # documentation |
Stefan Weil | 01668d9 | 2010-03-04 22:21:02 +0100 | [diff] [blame] | 441 | MAKEINFO=makeinfo |
| 442 | MAKEINFOFLAGS=--no-headers --no-split --number-sections |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 443 | TEXIFLAG=$(if $(V),,--quiet) |
| 444 | %.dvi: %.texi |
| 445 | $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@") |
| 446 | |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 447 | %.html: %.texi |
Stefan Weil | 952ef67 | 2012-03-27 19:15:27 +0200 | [diff] [blame] | 448 | $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ |
Stefan Weil | 01668d9 | 2010-03-04 22:21:02 +0100 | [diff] [blame] | 449 | " GEN $@") |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 450 | |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 451 | %.info: %.texi |
Stefan Weil | 01668d9 | 2010-03-04 22:21:02 +0100 | [diff] [blame] | 452 | $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 453 | |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 454 | %.pdf: %.texi |
| 455 | $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@") |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 456 | |
| 457 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 458 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 459 | |
Luiz Capitulino | acd0a09 | 2010-09-30 16:00:22 -0300 | [diff] [blame] | 460 | qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 461 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 462 | |
Luiz Capitulino | d076a2a | 2013-09-10 16:56:14 -0400 | [diff] [blame] | 463 | qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 464 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@") |
Jan Kiszka | b40292e | 2010-05-31 14:43:31 -0300 | [diff] [blame] | 465 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 466 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 467 | $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@") |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 468 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 469 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 470 | $(call quiet-command, \ |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 471 | perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \ |
Michael Tokarev | 3179d69 | 2012-03-20 02:25:57 +0400 | [diff] [blame] | 472 | $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \ |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 473 | " GEN $@") |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 474 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 475 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 476 | $(call quiet-command, \ |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 477 | perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \ |
Michael Tokarev | 3179d69 | 2012-03-20 02:25:57 +0400 | [diff] [blame] | 478 | $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \ |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 479 | " GEN $@") |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 480 | |
M. Mohan Kumar | a2d8f1b | 2011-12-14 13:58:47 +0530 | [diff] [blame] | 481 | fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi |
| 482 | $(call quiet-command, \ |
| 483 | perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \ |
Michael Tokarev | 3179d69 | 2012-03-20 02:25:57 +0400 | [diff] [blame] | 484 | $(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \ |
M. Mohan Kumar | a2d8f1b | 2011-12-14 13:58:47 +0530 | [diff] [blame] | 485 | " GEN $@") |
| 486 | |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 487 | qemu-nbd.8: qemu-nbd.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 488 | $(call quiet-command, \ |
Blue Swirl | 4c3b5a4 | 2011-01-20 20:54:21 +0000 | [diff] [blame] | 489 | perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \ |
Michael Tokarev | 3179d69 | 2012-03-20 02:25:57 +0400 | [diff] [blame] | 490 | $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 491 | " GEN $@") |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 492 | |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 493 | dvi: qemu-doc.dvi qemu-tech.dvi |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 494 | html: qemu-doc.html qemu-tech.html |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 495 | info: qemu-doc.info qemu-tech.info |
| 496 | pdf: qemu-doc.pdf qemu-tech.pdf |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 497 | |
Stefan Weil | 20cc999 | 2010-01-29 23:16:50 +0100 | [diff] [blame] | 498 | qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \ |
| 499 | qemu-img.texi qemu-nbd.texi qemu-options.texi \ |
| 500 | qemu-monitor.texi qemu-img-cmds.texi |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 501 | |
Stefan Weil | f53ec69 | 2013-07-15 23:49:57 +0200 | [diff] [blame] | 502 | ifdef CONFIG_WIN32 |
| 503 | |
| 504 | INSTALLER = qemu-setup-$(VERSION)$(EXESUF) |
| 505 | |
| 506 | nsisflags = -V2 -NOCD |
| 507 | |
| 508 | ifneq ($(wildcard $(SRC_PATH)/dll),) |
| 509 | ifeq ($(ARCH),x86_64) |
| 510 | # 64 bit executables |
| 511 | DLL_PATH = $(SRC_PATH)/dll/w64 |
| 512 | nsisflags += -DW64 |
| 513 | else |
| 514 | # 32 bit executables |
| 515 | DLL_PATH = $(SRC_PATH)/dll/w32 |
| 516 | endif |
| 517 | endif |
| 518 | |
| 519 | .PHONY: installer |
| 520 | installer: $(INSTALLER) |
| 521 | |
| 522 | INSTDIR=/tmp/qemu-nsis |
| 523 | |
| 524 | $(INSTALLER): $(SRC_PATH)/qemu.nsi |
| 525 | make install prefix=${INSTDIR} |
| 526 | ifdef SIGNCODE |
| 527 | (cd ${INSTDIR}; \ |
| 528 | for i in *.exe; do \ |
| 529 | $(SIGNCODE) $${i}; \ |
| 530 | done \ |
| 531 | ) |
| 532 | endif # SIGNCODE |
| 533 | (cd ${INSTDIR}; \ |
| 534 | for i in qemu-system-*.exe; do \ |
| 535 | arch=$${i%.exe}; \ |
| 536 | arch=$${arch#qemu-system-}; \ |
| 537 | echo Section \"$$arch\" Section_$$arch; \ |
| 538 | echo SetOutPath \"\$$INSTDIR\"; \ |
| 539 | echo File \"\$${BINDIR}\\$$i\"; \ |
| 540 | echo SectionEnd; \ |
| 541 | done \ |
| 542 | ) >${INSTDIR}/system-emulations.nsh |
| 543 | makensis $(nsisflags) \ |
| 544 | $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \ |
| 545 | $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \ |
| 546 | -DBINDIR="${INSTDIR}" \ |
| 547 | $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \ |
| 548 | -DSRCDIR="$(SRC_PATH)" \ |
| 549 | -DOUTFILE="$(INSTALLER)" \ |
| 550 | $(SRC_PATH)/qemu.nsi |
| 551 | rm -r ${INSTDIR} |
| 552 | ifdef SIGNCODE |
| 553 | $(SIGNCODE) $(INSTALLER) |
| 554 | endif # SIGNCODE |
| 555 | endif # CONFIG_WIN |
| 556 | |
Anthony Liguori | cb5fc67 | 2012-07-17 18:58:20 -0500 | [diff] [blame] | 557 | # Add a dependency on the generated files, so that they are always |
| 558 | # rebuilt before other object files |
Mike Frysinger | 7748b8c | 2012-09-16 16:07:13 -0400 | [diff] [blame] | 559 | ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail)) |
Anthony Liguori | cb5fc67 | 2012-07-17 18:58:20 -0500 | [diff] [blame] | 560 | Makefile: $(GENERATED_HEADERS) |
Mike Frysinger | 7748b8c | 2012-09-16 16:07:13 -0400 | [diff] [blame] | 561 | endif |
Anthony Liguori | cb5fc67 | 2012-07-17 18:58:20 -0500 | [diff] [blame] | 562 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 563 | # Include automatically generated dependency files |
Paolo Bonzini | 1435ddb | 2012-07-11 16:40:21 +0200 | [diff] [blame] | 564 | # Dependencies in Makefile.objs files come from our recursive subdir rules |
| 565 | -include $(wildcard *.d tests/*.d) |