Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / Makefile
blob44f3bb77d202af9ceea719a3cb44002464b85935
1 # Makefile for QEMU.
3 # Always point to the root of the build tree (needs GNU make).
4 BUILD_DIR=$(CURDIR)
6 # Before including a proper config-host.mak, assume we are in the source tree
7 SRC_PATH=.
9 UNCHECKED_GOALS := %clean TAGS cscope ctags docker docker-%
11 # All following code might depend on configuration variables
12 ifneq ($(wildcard config-host.mak),)
13 # Put the all: rule here so that config-host.mak can contain dependencies.
14 all:
15 include config-host.mak
17 # Check that we're not trying to do an out-of-tree build from
18 # a tree that's been used for an in-tree build.
19 ifneq ($(realpath $(SRC_PATH)),$(realpath .))
20 ifneq ($(wildcard $(SRC_PATH)/config-host.mak),)
21 $(error This is an out of tree build but your source tree ($(SRC_PATH)) \
22 seems to have been used for an in-tree build. You can fix this by running \
23 "make distclean && rm -rf *-linux-user *-softmmu" in your source tree)
24 endif
25 endif
27 CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
28 CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
29 CONFIG_XEN := $(CONFIG_XEN_BACKEND)
30 CONFIG_ALL=y
31 -include config-all-devices.mak
32 -include config-all-disas.mak
34 config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios
35 @echo $@ is out-of-date, running configure
36 @# TODO: The next lines include code which supports a smooth
37 @# transition from old configurations without config.status.
38 @# This code can be removed after QEMU 1.7.
39 @if test -x config.status; then \
40 ./config.status; \
41 else \
42 sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh; \
44 else
45 config-host.mak:
46 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
47 @echo "Please call configure before running make!"
48 @exit 1
49 endif
50 endif
52 include $(SRC_PATH)/rules.mak
54 GENERATED_FILES = qemu-version.h config-host.h qemu-options.def
55 GENERATED_FILES += qmp-commands.h qapi-types.h qapi-visit.h qapi-event.h
56 GENERATED_FILES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c
57 GENERATED_FILES += qmp-introspect.h
58 GENERATED_FILES += qmp-introspect.c
60 GENERATED_FILES += trace/generated-tcg-tracers.h
62 GENERATED_FILES += trace/generated-helpers-wrappers.h
63 GENERATED_FILES += trace/generated-helpers.h
64 GENERATED_FILES += trace/generated-helpers.c
66 ifdef CONFIG_TRACE_UST
67 GENERATED_FILES += trace-ust-all.h
68 GENERATED_FILES += trace-ust-all.c
69 endif
71 GENERATED_FILES += module_block.h
73 TRACE_HEADERS = trace-root.h $(trace-events-subdirs:%=%/trace.h)
74 TRACE_SOURCES = trace-root.c $(trace-events-subdirs:%=%/trace.c)
75 TRACE_DTRACE =
76 ifdef CONFIG_TRACE_DTRACE
77 TRACE_HEADERS += trace-dtrace-root.h $(trace-events-subdirs:%=%/trace-dtrace.h)
78 TRACE_DTRACE += trace-dtrace-root.dtrace $(trace-events-subdirs:%=%/trace-dtrace.dtrace)
79 endif
80 ifdef CONFIG_TRACE_UST
81 TRACE_HEADERS += trace-ust-root.h $(trace-events-subdirs:%=%/trace-ust.h)
82 endif
84 GENERATED_FILES += $(TRACE_HEADERS)
85 GENERATED_FILES += $(TRACE_SOURCES)
86 GENERATED_FILES += $(BUILD_DIR)/trace-events-all
88 trace-group-name = $(shell dirname $1 | sed -e 's/[^a-zA-Z0-9]/_/g')
90 tracetool-y = $(SRC_PATH)/scripts/tracetool.py
91 tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py")
93 %/trace.h: %/trace.h-timestamp
94 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
95 %/trace.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y)
96 $(call quiet-command,$(TRACETOOL) \
97 --group=$(call trace-group-name,$@) \
98 --format=h \
99 --backends=$(TRACE_BACKENDS) \
100 $< > $@,"GEN","$(@:%-timestamp=%)")
102 %/trace.c: %/trace.c-timestamp
103 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
104 %/trace.c-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y)
105 $(call quiet-command,$(TRACETOOL) \
106 --group=$(call trace-group-name,$@) \
107 --format=c \
108 --backends=$(TRACE_BACKENDS) \
109 $< > $@,"GEN","$(@:%-timestamp=%)")
111 %/trace-ust.h: %/trace-ust.h-timestamp
112 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
113 %/trace-ust.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y)
114 $(call quiet-command,$(TRACETOOL) \
115 --group=$(call trace-group-name,$@) \
116 --format=ust-events-h \
117 --backends=$(TRACE_BACKENDS) \
118 $< > $@,"GEN","$(@:%-timestamp=%)")
120 %/trace-dtrace.dtrace: %/trace-dtrace.dtrace-timestamp
121 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
122 %/trace-dtrace.dtrace-timestamp: $(SRC_PATH)/%/trace-events $(BUILD_DIR)/config-host.mak $(tracetool-y)
123 $(call quiet-command,$(TRACETOOL) \
124 --group=$(call trace-group-name,$@) \
125 --format=d \
126 --backends=$(TRACE_BACKENDS) \
127 $< > $@,"GEN","$(@:%-timestamp=%)")
129 %/trace-dtrace.h: %/trace-dtrace.dtrace $(tracetool-y)
130 $(call quiet-command,dtrace -o $@ -h -s $<, "GEN","$@")
132 %/trace-dtrace.o: %/trace-dtrace.dtrace $(tracetool-y)
135 trace-root.h: trace-root.h-timestamp
136 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
137 trace-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y)
138 $(call quiet-command,$(TRACETOOL) \
139 --group=root \
140 --format=h \
141 --backends=$(TRACE_BACKENDS) \
142 $< > $@,"GEN","$(@:%-timestamp=%)")
144 trace-root.c: trace-root.c-timestamp
145 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
146 trace-root.c-timestamp: $(SRC_PATH)/trace-events $(tracetool-y)
147 $(call quiet-command,$(TRACETOOL) \
148 --group=root \
149 --format=c \
150 --backends=$(TRACE_BACKENDS) \
151 $< > $@,"GEN","$(@:%-timestamp=%)")
153 trace-ust-root.h: trace-ust-root.h-timestamp
154 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
155 trace-ust-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y)
156 $(call quiet-command,$(TRACETOOL) \
157 --group=root \
158 --format=ust-events-h \
159 --backends=$(TRACE_BACKENDS) \
160 $< > $@,"GEN","$(@:%-timestamp=%)")
162 trace-ust-all.h: trace-ust-all.h-timestamp
163 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
164 trace-ust-all.h-timestamp: $(trace-events-files) $(tracetool-y)
165 $(call quiet-command,$(TRACETOOL) \
166 --group=all \
167 --format=ust-events-h \
168 --backends=$(TRACE_BACKENDS) \
169 $(trace-events-files) > $@,"GEN","$(@:%-timestamp=%)")
171 trace-ust-all.c: trace-ust-all.c-timestamp
172 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
173 trace-ust-all.c-timestamp: $(trace-events-files) $(tracetool-y)
174 $(call quiet-command,$(TRACETOOL) \
175 --group=all \
176 --format=ust-events-c \
177 --backends=$(TRACE_BACKENDS) \
178 $(trace-events-files) > $@,"GEN","$(@:%-timestamp=%)")
180 trace-dtrace-root.dtrace: trace-dtrace-root.dtrace-timestamp
181 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
182 trace-dtrace-root.dtrace-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak $(tracetool-y)
183 $(call quiet-command,$(TRACETOOL) \
184 --group=root \
185 --format=d \
186 --backends=$(TRACE_BACKENDS) \
187 $< > $@,"GEN","$(@:%-timestamp=%)")
189 trace-dtrace-root.h: trace-dtrace-root.dtrace
190 $(call quiet-command,dtrace -o $@ -h -s $<, "GEN","$@")
192 trace-dtrace-root.o: trace-dtrace-root.dtrace
194 # Don't try to regenerate Makefile or configure
195 # We don't generate any of them
196 Makefile: ;
197 configure: ;
199 .PHONY: all clean cscope dist distclean doc dvi html \
200 info install install-doc install-tools msi \
201 pdf txt recurse-all speed test tools FORCE
203 $(call set-vpath, $(SRC_PATH))
205 LIBS+=-lz $(LIBS_TOOLS)
207 HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
209 DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
210 DOCS+=docs/interop/qemu-qmp-ref.html docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7
211 DOCS+=docs/interop/qemu-ga-ref.html docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7
212 ifdef CONFIG_VIRTFS
213 DOCS+=fsdev/virtfs-proxy-helper.1
214 endif
216 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
217 SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
218 SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
220 ifeq ($(SUBDIR_DEVICES_MAK),)
221 config-all-devices.mak:
222 $(call quiet-command,echo '# no devices' > $@,"GEN","$@")
223 else
224 config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
225 $(call quiet-command, sed -n \
226 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
227 $(SUBDIR_DEVICES_MAK) | sort -u > $@, \
228 "GEN","$@")
229 endif
231 -include $(SUBDIR_DEVICES_MAK_DEP)
233 %/config-devices.mak: default-configs/%.mak $(SRC_PATH)/scripts/make_device_config.sh
234 $(call quiet-command, \
235 $(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp,"GEN","$@.tmp")
236 $(call quiet-command, if test -f $@; then \
237 if cmp -s $@.old $@; then \
238 mv $@.tmp $@; \
239 cp -p $@ $@.old; \
240 else \
241 if test -f $@.old; then \
242 echo "WARNING: $@ (user modified) out of date.";\
243 else \
244 echo "WARNING: $@ out of date.";\
245 fi; \
246 echo "Run \"make defconfig\" to regenerate."; \
247 rm $@.tmp; \
248 fi; \
249 else \
250 mv $@.tmp $@; \
251 cp -p $@ $@.old; \
252 fi,"GEN","$@");
254 defconfig:
255 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
257 ifneq ($(wildcard config-host.mak),)
258 include $(SRC_PATH)/Makefile.objs
259 endif
261 dummy := $(call unnest-vars,, \
262 stub-obj-y \
263 chardev-obj-y \
264 util-obj-y \
265 qga-obj-y \
266 ivshmem-client-obj-y \
267 ivshmem-server-obj-y \
268 libvhost-user-obj-y \
269 vhost-user-scsi-obj-y \
270 qga-vss-dll-obj-y \
271 block-obj-y \
272 block-obj-m \
273 crypto-obj-y \
274 crypto-aes-obj-y \
275 qom-obj-y \
276 io-obj-y \
277 common-obj-y \
278 common-obj-m \
279 trace-obj-y)
281 ifneq ($(wildcard config-host.mak),)
282 include $(SRC_PATH)/tests/Makefile.include
283 endif
285 all: recurse-all
287 ifdef BUILD_DOCS
288 all: doc
289 endif
291 ifdef BUILD_TOOLS
292 all: tools
293 endif
295 all: $(HELPERS-y)
296 all: modules
298 doc: $(DOCS)
299 tools: $(TOOLS)
301 qemu-version.h: FORCE
302 $(call quiet-command, \
303 (cd $(SRC_PATH); \
304 printf '#define QEMU_PKGVERSION '; \
305 if test -n "$(PKGVERSION)"; then \
306 printf '"$(PKGVERSION)"\n'; \
307 else \
308 if test -d .git; then \
309 printf '" ('; \
310 git describe --match 'v*' 2>/dev/null | tr -d '\n'; \
311 if ! git diff-index --quiet HEAD &>/dev/null; then \
312 printf -- '-dirty'; \
313 fi; \
314 printf ')"\n'; \
315 else \
316 printf '""\n'; \
317 fi; \
318 fi) > $@.tmp)
319 $(call quiet-command, if ! cmp -s $@ $@.tmp; then \
320 mv $@.tmp $@; \
321 else \
322 rm $@.tmp; \
325 config-host.h: config-host.h-timestamp
326 config-host.h-timestamp: config-host.mak
327 qemu-options.def: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
328 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
330 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
331 SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))
333 $(SOFTMMU_SUBDIR_RULES): $(block-obj-y)
334 $(SOFTMMU_SUBDIR_RULES): $(crypto-obj-y)
335 $(SOFTMMU_SUBDIR_RULES): $(io-obj-y)
336 $(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
338 subdir-%:
339 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
341 subdir-pixman: pixman/Makefile
342 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,)
344 pixman/Makefile: $(SRC_PATH)/pixman/configure
345 (cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static)
347 $(SRC_PATH)/pixman/configure:
348 (cd $(SRC_PATH)/pixman; autoreconf -v --install)
350 DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
351 DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
352 DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
354 subdir-dtc:dtc/libfdt dtc/tests
355 $(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,)
357 dtc/%:
358 mkdir -p $@
360 $(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) $(chardev-obj-y) \
361 $(qom-obj-y) $(crypto-aes-obj-$(CONFIG_USER_ONLY))
363 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
364 # Only keep -O and -g cflags
365 romsubdir-%:
366 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/" CFLAGS="$(filter -O% -g%,$(CFLAGS))",)
368 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
370 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
372 $(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
373 $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
375 Makefile: $(version-obj-y)
377 ######################################################################
378 # Build libraries
380 libqemustub.a: $(stub-obj-y)
381 libqemuutil.a: $(util-obj-y) $(trace-obj-y)
383 ######################################################################
385 COMMON_LDADDS = libqemuutil.a libqemustub.a
387 qemu-img.o: qemu-img-cmds.h
389 qemu-img$(EXESUF): qemu-img.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
390 qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
391 qemu-io$(EXESUF): qemu-io.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
393 qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
395 fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o $(COMMON_LDADDS)
396 fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
398 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
399 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
401 qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
402 qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
404 gen-out-type = $(subst .,-,$(suffix $@))
406 qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
408 qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
409 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
410 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
411 $(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
412 "GEN","$@")
413 qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
414 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
415 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
416 $(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
417 "GEN","$@")
418 qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
419 $(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
420 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
421 $(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
422 "GEN","$@")
424 qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \
425 $(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \
426 $(SRC_PATH)/qapi/event.json $(SRC_PATH)/qapi/introspect.json \
427 $(SRC_PATH)/qapi/crypto.json $(SRC_PATH)/qapi/rocker.json \
428 $(SRC_PATH)/qapi/trace.json
430 qapi-types.c qapi-types.h :\
431 $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
432 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
433 $(gen-out-type) -o "." -b $<, \
434 "GEN","$@")
435 qapi-visit.c qapi-visit.h :\
436 $(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
437 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
438 $(gen-out-type) -o "." -b $<, \
439 "GEN","$@")
440 qapi-event.c qapi-event.h :\
441 $(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
442 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
443 $(gen-out-type) -o "." $<, \
444 "GEN","$@")
445 qmp-commands.h qmp-marshal.c :\
446 $(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
447 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
448 $(gen-out-type) -o "." $<, \
449 "GEN","$@")
450 qmp-introspect.h qmp-introspect.c :\
451 $(qapi-modules) $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py)
452 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \
453 $(gen-out-type) -o "." $<, \
454 "GEN","$@")
456 QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
457 $(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
459 qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
460 $(call LINK, $^)
462 ifdef QEMU_GA_MSI_ENABLED
463 QEMU_GA_MSI=qemu-ga-$(ARCH).msi
465 msi: $(QEMU_GA_MSI)
467 $(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
469 $(QEMU_GA_MSI): config-host.mak
471 $(QEMU_GA_MSI): $(SRC_PATH)/qga/installer/qemu-ga.wxs
472 $(call quiet-command,QEMU_GA_VERSION="$(QEMU_GA_VERSION)" QEMU_GA_MANUFACTURER="$(QEMU_GA_MANUFACTURER)" QEMU_GA_DISTRO="$(QEMU_GA_DISTRO)" BUILD_DIR="$(BUILD_DIR)" \
473 wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
474 else
475 msi:
476 @echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
477 endif
479 ifneq ($(EXESUF),)
480 .PHONY: qemu-ga
481 qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
482 endif
484 ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
485 $(call LINK, $^)
486 ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
487 $(call LINK, $^)
488 vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y)
489 $(call LINK, $^)
491 module_block.h: $(SRC_PATH)/scripts/modules/module_block.py config-host.mak
492 $(call quiet-command,$(PYTHON) $< $@ \
493 $(addprefix $(SRC_PATH)/,$(patsubst %.mo,%.c,$(block-obj-m))), \
494 "GEN","$@")
496 clean:
497 # avoid old build problems by removing potentially incorrect old files
498 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
499 rm -f qemu-options.def
500 rm -f *.msi
501 find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f -exec rm {} +
502 rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
503 rm -f fsdev/*.pod
504 rm -f qemu-img-cmds.h
505 rm -f ui/shader/*-vert.h ui/shader/*-frag.h
506 @# May not be present in GENERATED_FILES
507 rm -f trace/generated-tracers-dtrace.dtrace*
508 rm -f trace/generated-tracers-dtrace.h*
509 rm -f $(foreach f,$(GENERATED_FILES),$(f) $(f)-timestamp)
510 rm -rf qapi-generated
511 rm -rf qga/qapi-generated
512 for d in $(ALL_SUBDIRS); do \
513 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
514 rm -f $$d/qemu-options.def; \
515 done
516 rm -f $(SUBDIR_DEVICES_MAK) config-all-devices.mak
518 VERSION ?= $(shell cat VERSION)
520 dist: qemu-$(VERSION).tar.bz2
522 qemu-%.tar.bz2:
523 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
525 distclean: clean
526 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi qemu-monitor-info.texi
527 rm -f config-all-devices.mak config-all-disas.mak config.status
528 rm -f po/*.mo tests/qemu-iotests/common.env
529 rm -f roms/seabios/config.mak roms/vgabios/config.mak
530 rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps
531 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
532 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
533 rm -f qemu-doc.vr qemu-doc.txt
534 rm -f config.log
535 rm -f linux-headers/asm
536 rm -f docs/version.texi
537 rm -f docs/interop/qemu-ga-qapi.texi docs/interop/qemu-qmp-qapi.texi
538 rm -f docs/interop/qemu-qmp-ref.7 docs/interop/qemu-ga-ref.7
539 rm -f docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
540 rm -f docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
541 rm -f docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
542 for d in $(TARGET_DIRS); do \
543 rm -rf $$d || exit 1 ; \
544 done
545 rm -Rf .sdk
546 if test -f pixman/config.log; then $(MAKE) -C pixman distclean; fi
547 if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
549 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
550 ar de en-us fi fr-be hr it lv nl pl ru th \
551 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \
552 bepo cz
554 ifdef INSTALL_BLOBS
555 BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
556 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
557 acpi-dsdt.aml \
558 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
559 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
560 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
561 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
562 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
563 efi-e1000e.rom efi-vmxnet3.rom \
564 qemu-icon.bmp qemu_logo_no_text.svg \
565 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
566 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin \
567 s390-ccw.img \
568 spapr-rtas.bin slof.bin skiboot.lid \
569 palcode-clipper \
570 u-boot.e500 \
571 qemu_vga.ndrv
572 else
573 BLOBS=
574 endif
576 install-doc: doc
577 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
578 $(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
579 $(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
580 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
581 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
582 ifdef CONFIG_POSIX
583 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
584 $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
585 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
586 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
587 ifneq ($(TOOLS),)
588 $(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
589 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
590 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
591 endif
592 ifneq (,$(findstring qemu-ga,$(TOOLS)))
593 $(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
594 $(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)"
595 $(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)"
596 $(INSTALL_DATA) docs/interop/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7"
597 endif
598 endif
599 ifdef CONFIG_VIRTFS
600 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
601 $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
602 endif
604 install-datadir:
605 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
607 install-localstatedir:
608 ifdef CONFIG_POSIX
609 ifneq (,$(findstring qemu-ga,$(TOOLS)))
610 $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
611 endif
612 endif
615 install-tools: tools
616 $(call install-prog,$(filter-out qemu-ga,$(TOOLS)),$(DESTDIR)$(bindir))
617 # qemu-ga is included in TOOLS, but we need special install rules for w32
619 install: all $(if $(BUILD_DOCS),install-doc) $(if $(BUILD_TOOLS),install-tools) \
620 install-datadir install-localstatedir
621 ifneq ($(TOOLS),)
622 $(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(TOOLS)),$(DESTDIR)$(bindir))
623 endif
624 ifneq ($(CONFIG_MODULES),)
625 $(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
626 for s in $(modules-m:.mo=$(DSOSUF)); do \
627 t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
628 $(INSTALL_LIB) $$s "$$t"; \
629 test -z "$(STRIP)" || $(STRIP) "$$t"; \
630 done
631 endif
632 ifneq ($(HELPERS-y),)
633 $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
634 endif
635 ifneq ($(BLOBS),)
636 set -e; for x in $(BLOBS); do \
637 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
638 done
639 endif
640 ifeq ($(CONFIG_GTK),y)
641 $(MAKE) -C po $@
642 endif
643 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
644 set -e; for x in $(KEYMAPS); do \
645 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
646 done
647 $(INSTALL_DATA) $(BUILD_DIR)/trace-events-all "$(DESTDIR)$(qemu_datadir)/trace-events-all"
648 for d in $(TARGET_DIRS); do \
649 $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
650 done
652 # various test targets
653 test speed: all
654 $(MAKE) -C tests/tcg $@
656 .PHONY: ctags
657 ctags:
658 rm -f tags
659 find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +
661 .PHONY: TAGS
662 TAGS:
663 rm -f TAGS
664 find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
666 cscope:
667 rm -f "$(SRC_PATH)"/cscope.*
668 find "$(SRC_PATH)/" -name "*.[chsS]" -print | sed 's,^\./,,' > "$(SRC_PATH)/cscope.files"
669 cscope -b -i"$(SRC_PATH)/cscope.files"
671 # opengl shader programs
672 ui/shader/%-vert.h: $(SRC_PATH)/ui/shader/%.vert $(SRC_PATH)/scripts/shaderinclude.pl
673 @mkdir -p $(dir $@)
674 $(call quiet-command,\
675 perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
676 "VERT","$@")
678 ui/shader/%-frag.h: $(SRC_PATH)/ui/shader/%.frag $(SRC_PATH)/scripts/shaderinclude.pl
679 @mkdir -p $(dir $@)
680 $(call quiet-command,\
681 perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
682 "FRAG","$@")
684 ui/console-gl.o: $(SRC_PATH)/ui/console-gl.c \
685 ui/shader/texture-blit-vert.h ui/shader/texture-blit-frag.h
687 # documentation
688 MAKEINFO=makeinfo
689 MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
690 MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
691 TEXI2PODFLAGS=$(MAKEINFOINCLUDES) "-DVERSION=$(VERSION)"
692 TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
694 docs/version.texi: $(SRC_PATH)/VERSION
695 $(call quiet-command,echo "@set VERSION $(VERSION)" > $@,"GEN","$@")
697 %.html: %.texi docs/version.texi
698 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
699 --html $< -o $@,"GEN","$@")
701 %.info: %.texi docs/version.texi
702 $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
704 %.txt: %.texi docs/version.texi
705 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
706 --plaintext $< -o $@,"GEN","$@")
708 %.pdf: %.texi docs/version.texi
709 $(call quiet-command,texi2pdf $(TEXI2PDFFLAGS) $< -o $@,"GEN","$@")
711 qemu-options.texi: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
712 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
714 qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
715 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
717 qemu-monitor-info.texi: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
718 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
720 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
721 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
723 docs/interop/qemu-qmp-qapi.texi docs/interop/qemu-ga-qapi.texi: $(SRC_PATH)/scripts/qapi2texi.py $(qapi-py)
725 docs/interop/qemu-qmp-qapi.texi: $(qapi-modules)
726 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
728 docs/interop/qemu-ga-qapi.texi: $(SRC_PATH)/qga/qapi-schema.json
729 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
731 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
732 qemu.1: qemu-option-trace.texi
733 qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
734 fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
735 qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
736 qemu-ga.8: qemu-ga.texi
738 html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
739 info: qemu-doc.info docs/interop/qemu-qmp-ref.info docs/interop/qemu-ga-ref.info
740 pdf: qemu-doc.pdf docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
741 txt: qemu-doc.txt docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
743 qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
744 qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
745 qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
746 qemu-monitor-info.texi
748 docs/interop/qemu-ga-ref.dvi docs/interop/qemu-ga-ref.html \
749 docs/interop/qemu-ga-ref.info docs/interop/qemu-ga-ref.pdf \
750 docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7: \
751 docs/interop/qemu-ga-ref.texi docs/interop/qemu-ga-qapi.texi
753 docs/interop/qemu-qmp-ref.dvi docs/interop/qemu-qmp-ref.html \
754 docs/interop/qemu-qmp-ref.info docs/interop/qemu-qmp-ref.pdf \
755 docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7: \
756 docs/interop/qemu-qmp-ref.texi docs/interop/qemu-qmp-qapi.texi
759 ifdef CONFIG_WIN32
761 INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
763 nsisflags = -V2 -NOCD
765 ifneq ($(wildcard $(SRC_PATH)/dll),)
766 ifeq ($(ARCH),x86_64)
767 # 64 bit executables
768 DLL_PATH = $(SRC_PATH)/dll/w64
769 nsisflags += -DW64
770 else
771 # 32 bit executables
772 DLL_PATH = $(SRC_PATH)/dll/w32
773 endif
774 endif
776 .PHONY: installer
777 installer: $(INSTALLER)
779 INSTDIR=/tmp/qemu-nsis
781 $(INSTALLER): $(SRC_PATH)/qemu.nsi
782 $(MAKE) install prefix=${INSTDIR}
783 ifdef SIGNCODE
784 (cd ${INSTDIR}; \
785 for i in *.exe; do \
786 $(SIGNCODE) $${i}; \
787 done \
789 endif # SIGNCODE
790 (cd ${INSTDIR}; \
791 for i in qemu-system-*.exe; do \
792 arch=$${i%.exe}; \
793 arch=$${arch#qemu-system-}; \
794 echo Section \"$$arch\" Section_$$arch; \
795 echo SetOutPath \"\$$INSTDIR\"; \
796 echo File \"\$${BINDIR}\\$$i\"; \
797 echo SectionEnd; \
798 done \
799 ) >${INSTDIR}/system-emulations.nsh
800 makensis $(nsisflags) \
801 $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
802 $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
803 -DBINDIR="${INSTDIR}" \
804 $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
805 -DSRCDIR="$(SRC_PATH)" \
806 -DOUTFILE="$(INSTALLER)" \
807 -DDISPLAYVERSION="$(VERSION)" \
808 $(SRC_PATH)/qemu.nsi
809 rm -r ${INSTDIR}
810 ifdef SIGNCODE
811 $(SIGNCODE) $(INSTALLER)
812 endif # SIGNCODE
813 endif # CONFIG_WIN
815 # Add a dependency on the generated files, so that they are always
816 # rebuilt before other object files
817 ifneq ($(wildcard config-host.mak),)
818 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
819 Makefile: $(GENERATED_FILES)
820 endif
821 endif
823 .SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
824 $(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
825 $(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)
827 # Include automatically generated dependency files
828 # Dependencies in Makefile.objs files come from our recursive subdir rules
829 -include $(wildcard *.d tests/*.d)
831 include $(SRC_PATH)/tests/docker/Makefile.include
833 .PHONY: help
834 help:
835 @echo 'Generic targets:'
836 @echo ' all - Build all'
837 @echo ' dir/file.o - Build specified target only'
838 @echo ' install - Install QEMU, documentation and tools'
839 @echo ' ctags/TAGS - Generate tags file for editors'
840 @echo ' cscope - Generate cscope index'
841 @echo ''
842 @$(if $(TARGET_DIRS), \
843 echo 'Architecture specific targets:'; \
844 $(foreach t, $(TARGET_DIRS), \
845 printf " %-30s - Build for %s\\n" $(patsubst %,subdir-%,$(t)) $(t);) \
846 echo '')
847 @echo 'Cleaning targets:'
848 @echo ' clean - Remove most generated files but keep the config'
849 @echo ' distclean - Remove all generated files'
850 @echo ' dist - Build a distributable tarball'
851 @echo ''
852 @echo 'Test targets:'
853 @echo ' check - Run all tests (check-help for details)'
854 @echo ' docker - Help about targets running tests inside Docker containers'
855 @echo ''
856 @echo 'Documentation targets:'
857 @echo ' html info pdf txt'
858 @echo ' - Build documentation in specified format'
859 @echo ''
860 ifdef CONFIG_WIN32
861 @echo 'Windows targets:'
862 @echo ' installer - Build NSIS-based installer for QEMU'
863 ifdef QEMU_GA_MSI_ENABLED
864 @echo ' msi - Build MSI-based installer for qemu-ga'
865 endif
866 @echo ''
867 endif
868 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'