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