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