3 # Always point to the root of the build tree (needs GNU make).
6 # All following code might depend on configuration variables
7 ifneq ($(wildcard config-host.mak
),)
8 # Put the all: rule here so that config-host.mak can contain dependencies.
10 include config-host.mak
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
)
22 CONFIG_SOFTMMU
:= $(if
$(filter %-softmmu
,$(TARGET_DIRS
)),y
)
23 CONFIG_USER_ONLY
:= $(if
$(filter %-user
,$(TARGET_DIRS
)),y
)
25 -include config-all-devices.mak
26 -include config-all-disas.mak
28 include $(SRC_PATH
)/rules.mak
29 config-host.mak
: $(SRC_PATH
)/configure
30 @echo
$@ is out-of-date
, running configure
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 \
37 sed
-n
"/.*Configured with/s/[^:]*: //p" $@ | sh
; \
41 ifneq ($(filter-out %clean,$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
42 @echo
"Please call configure before running make!"
47 GENERATED_HEADERS
= config-host.h qemu-options.def
48 GENERATED_HEADERS
+= qmp-commands.h qapi-types.h qapi-visit.h
49 GENERATED_SOURCES
+= qmp-marshal.c qapi-types.c qapi-visit.c
51 GENERATED_HEADERS
+= trace
/generated-events.h
52 GENERATED_SOURCES
+= trace
/generated-events.c
54 GENERATED_HEADERS
+= trace
/generated-tracers.h
55 ifeq ($(TRACE_BACKEND
),dtrace
)
56 GENERATED_HEADERS
+= trace
/generated-tracers-dtrace.h
58 GENERATED_SOURCES
+= trace
/generated-tracers.c
60 ifeq ($(TRACE_BACKEND
),ust
)
61 GENERATED_HEADERS
+= trace
/generated-ust-provider.h
62 GENERATED_SOURCES
+= trace
/generated-ust.c
65 # Don't try to regenerate Makefile or configure
66 # We don't generate any of them
70 .PHONY
: all clean cscope
distclean dvi html
info install install-doc \
71 pdf recurse-all speed
test dist
73 $(call set-vpath
, $(SRC_PATH
))
75 LIBS
+=-lz
$(LIBS_TOOLS
)
77 HELPERS-
$(CONFIG_LINUX
) = qemu-bridge-helper
$(EXESUF
)
80 DOCS
=qemu-doc.html qemu-tech.html qemu
.1 qemu-img
.1 qemu-nbd
.8 qmp-commands.txt
82 DOCS
+=fsdev
/virtfs-proxy-helper
.1
88 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
) BUILD_DIR
=$(BUILD_DIR
)
89 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(TARGET_DIRS
))
90 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %-config-devices.mak.d
, $(TARGET_DIRS
))
92 ifeq ($(SUBDIR_DEVICES_MAK
),)
93 config-all-devices.mak
:
94 $(call quiet-command
,echo
'# no devices' > $@
," GEN $@")
96 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
)
97 $(call quiet-command
, sed
-n \
98 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
99 $(SUBDIR_DEVICES_MAK
) |
sort -u
> $@
, \
103 -include $(SUBDIR_DEVICES_MAK_DEP
)
105 %/config-devices.mak
: default-configs
/%.mak
106 $(call quiet-command
,$(SHELL
) $(SRC_PATH
)/scripts
/make_device_config.sh
$@
$<, " GEN $@")
107 @if
test -f
$@
; then \
108 if cmp
-s
$@.old
$@
; then \
112 if
test -f
$@.old
; then \
113 echo
"WARNING: $@ (user modified) out of date.";\
115 echo
"WARNING: $@ out of date.";\
117 echo
"Run \"make defconfig\" to regenerate."; \
126 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
128 ifneq ($(wildcard config-host.mak
),)
129 include $(SRC_PATH
)/Makefile.objs
132 dummy
:= $(call unnest-vars
,, \
141 ifneq ($(wildcard config-host.mak
),)
142 include $(SRC_PATH
)/tests
/Makefile
144 ifeq ($(CONFIG_SMARTCARD_NSS
),y
)
145 include $(SRC_PATH
)/libcacard
/Makefile
148 all: $(DOCS
) $(TOOLS
) $(HELPERS-y
) recurse-all modules
150 vl.o
: QEMU_CFLAGS
+=$(GPROF_CFLAGS
)
152 vl.o
: QEMU_CFLAGS
+=$(SDL_CFLAGS
)
154 config-host.h
: config-host.h-timestamp
155 config-host.h-timestamp
: config-host.mak
156 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
157 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
," GEN $@")
159 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
160 SOFTMMU_SUBDIR_RULES
=$(filter %-softmmu
,$(SUBDIR_RULES
))
162 $(SOFTMMU_SUBDIR_RULES
): $(block-obj-y
)
163 $(SOFTMMU_SUBDIR_RULES
): config-all-devices.mak
166 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
168 subdir-pixman
: pixman
/Makefile
169 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pixman V
="$(V)" all,)
171 pixman
/Makefile
: $(SRC_PATH
)/pixman
/configure
172 (cd pixman
; CFLAGS
="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH
)/pixman
/configure
$(AUTOCONF_HOST
) --disable-gtk
--disable-shared
--enable-static
)
174 $(SRC_PATH
)/pixman
/configure
:
175 (cd
$(SRC_PATH
)/pixman
; autoreconf
-v
--install)
177 DTC_MAKE_ARGS
=-I
$(SRC_PATH
)/dtc VPATH
=$(SRC_PATH
)/dtc
-C dtc V
="$(V)" LIBFDT_srcdir
=$(SRC_PATH
)/dtc
/libfdt
178 DTC_CFLAGS
=$(CFLAGS
) $(QEMU_CFLAGS
)
179 DTC_CPPFLAGS
=-I
$(BUILD_DIR
)/dtc
-I
$(SRC_PATH
)/dtc
-I
$(SRC_PATH
)/dtc
/libfdt
181 subdir-dtc
:dtc
/libfdt dtc
/tests
182 $(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
,)
187 $(SUBDIR_RULES
): libqemuutil.a libqemustub.a
$(common-obj-y
)
189 ROMSUBDIR_RULES
=$(patsubst %,romsubdir-
%, $(ROMS
))
191 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pc-bios
/$* V
="$(V)" TARGET_DIR
="$*/",)
193 ALL_SUBDIRS
=$(TARGET_DIRS
) $(patsubst %,pc-bios
/%, $(ROMS
))
195 recurse-all
: $(SUBDIR_RULES
) $(ROMSUBDIR_RULES
)
197 bt-host.o
: QEMU_CFLAGS
+= $(BLUEZ_CFLAGS
)
199 $(BUILD_DIR
)/version.o
: $(SRC_PATH
)/version.rc
$(BUILD_DIR
)/config-host.h |
$(BUILD_DIR
)/version.lo
200 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<," RC version.o")
201 $(BUILD_DIR
)/version.lo
: $(SRC_PATH
)/version.rc
$(BUILD_DIR
)/config-host.h
202 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<," RC version.lo")
204 Makefile
: $(version-obj-y
) $(version-lobj-y
)
206 ######################################################################
209 libqemustub.a
: $(stub-obj-y
)
210 libqemuutil.a
: $(util-obj-y
) qapi-types.o qapi-visit.o
212 block-modules
= $(foreach o
,$(block-obj-m
),"$(basename $(subst /,-,$o))",) NULL
213 util
/module.o-cflags
= -D
'CONFIG_BLOCK_MODULES=$(block-modules)'
215 ######################################################################
217 qemu-img.o
: qemu-img-cmds.h
219 qemu-img
$(EXESUF
): qemu-img.o
$(block-obj-y
) libqemuutil.a libqemustub.a
220 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(block-obj-y
) libqemuutil.a libqemustub.a
221 qemu-io
$(EXESUF
): qemu-io.o
$(block-obj-y
) libqemuutil.a libqemustub.a
223 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
225 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/virtio-9p-marshal.o libqemuutil.a libqemustub.a
226 fsdev
/virtfs-proxy-helper
$(EXESUF
): LIBS
+= -lcap
228 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
229 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
," GEN $@")
231 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
232 qemu-ga
$(EXESUF
): QEMU_CFLAGS
+= -I qga
/qapi-generated
234 gen-out-type
= $(subst .
,-,$(suffix $@
))
236 qapi-py
= $(SRC_PATH
)/scripts
/qapi.py
$(SRC_PATH
)/scripts
/ordereddict.py
238 qga
/qapi-generated
/qga-qapi-types.c qga
/qapi-generated
/qga-qapi-types.h
:\
239 $(SRC_PATH
)/qga
/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-types.py
$(qapi-py
)
240 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-types.py
$(gen-out-type
) -o qga
/qapi-generated
-p
"qga-" < $<, " GEN $@")
241 qga
/qapi-generated
/qga-qapi-visit.c qga
/qapi-generated
/qga-qapi-visit.h
:\
242 $(SRC_PATH
)/qga
/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-visit.py
$(qapi-py
)
243 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-visit.py
$(gen-out-type
) -o qga
/qapi-generated
-p
"qga-" < $<, " GEN $@")
244 qga
/qapi-generated
/qga-qmp-commands.h qga
/qapi-generated
/qga-qmp-marshal.c
:\
245 $(SRC_PATH
)/qga
/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-commands.py
$(qapi-py
)
246 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-commands.py
$(gen-out-type
) -o qga
/qapi-generated
-p
"qga-" < $<, " GEN $@")
248 qapi-types.c qapi-types.h
:\
249 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-types.py
$(qapi-py
)
250 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-types.py
$(gen-out-type
) -o
"." -b
< $<, " GEN $@")
251 qapi-visit.c qapi-visit.h
:\
252 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-visit.py
$(qapi-py
)
253 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-visit.py
$(gen-out-type
) -o
"." -b
< $<, " GEN $@")
254 qmp-commands.h qmp-marshal.c
:\
255 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-commands.py
$(qapi-py
)
256 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-commands.py
$(gen-out-type
) -m
-o
"." < $<, " GEN $@")
258 QGALIB_GEN
=$(addprefix qga
/qapi-generated
/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h
)
259 $(qga-obj-y
) qemu-ga.o
: $(QGALIB_GEN
)
261 qemu-ga
$(EXESUF
): $(qga-obj-y
) libqemuutil.a libqemustub.a
265 # avoid old build problems by removing potentially incorrect old files
266 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
267 rm -f qemu-options.def
268 find .
-name
'*.[oda]' -type f
-exec
rm -f
{} +
269 find .
-name
'*.l[oa]' -type f
-exec
rm -f
{} +
270 find .
-name
'*$(DSOSUF)' -type f
-exec
rm -f
{} +
271 find .
-name
'*.mo' -type f
-exec
rm -f
{} +
272 rm -f
$(filter-out %.tlb
,$(TOOLS
)) $(HELPERS-y
) qemu-ga TAGS cscope.
* *.pod
*~
*/*~
275 rm -f qemu-img-cmds.h
276 @
# May not be present in GENERATED_HEADERS
277 rm -f trace
/generated-tracers-dtrace.dtrace
*
278 rm -f trace
/generated-tracers-dtrace.h
*
279 rm -f
$(foreach f
,$(GENERATED_HEADERS
),$(f
) $(f
)-timestamp
)
280 rm -f
$(foreach f
,$(GENERATED_SOURCES
),$(f
) $(f
)-timestamp
)
281 rm -rf qapi-generated
282 rm -rf qga
/qapi-generated
283 for d in
$(ALL_SUBDIRS
); do \
284 if
test -d
$$d; then
$(MAKE
) -C
$$d $@ || exit
1; fi
; \
285 rm -f
$$d/qemu-options.def
; \
288 VERSION ?
= $(shell cat VERSION
)
290 dist: qemu-
$(VERSION
).
tar.bz2
293 $(SRC_PATH
)/scripts
/make-release
"$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
296 rm -f config-host.mak config-host.h
* config-host.
ld $(DOCS
) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
297 rm -f config-all-devices.mak config-all-disas.mak
299 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
300 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.
dvi
301 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
302 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
305 rm -f linux-headers
/asm
306 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
307 for d in
$(TARGET_DIRS
); do \
308 rm -rf
$$d || exit
1 ; \
311 if
test -f pixman
/config.log
; then make
-C pixman
distclean; fi
312 if
test -f dtc
/version_gen.h
; then make
$(DTC_MAKE_ARGS
) clean; fi
314 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
315 ar de en-us fi fr-be hr it lv nl pl ru th \
316 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \
320 BLOBS
=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
321 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
322 acpi-dsdt.aml q35-acpi-dsdt.aml \
323 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU
,tcx.bin QEMU
,cgthree.bin \
324 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
325 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
326 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
327 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
328 qemu-icon.bmp qemu_logo_no_text.svg \
329 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
330 multiboot.bin linuxboot.bin kvmvapic.bin \
333 spapr-rtas.bin slof.bin \
340 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)"
341 $(INSTALL_DATA
) qemu-doc.html qemu-tech.html
"$(DESTDIR)$(qemu_docdir)"
342 $(INSTALL_DATA
) qmp-commands.txt
"$(DESTDIR)$(qemu_docdir)"
344 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
345 $(INSTALL_DATA
) qemu
.1 "$(DESTDIR)$(mandir)/man1"
347 $(INSTALL_DATA
) qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
348 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
349 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
353 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
354 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
358 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)"
360 install-localstatedir
:
362 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
363 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_localstatedir)"/run
368 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_confdir)"
370 install-sysconfig
: install-datadir install-confdir
371 $(INSTALL_DATA
) $(SRC_PATH
)/sysconfigs
/target
/target-x86_64.conf
"$(DESTDIR)$(qemu_confdir)"
373 install: all $(if
$(BUILD_DOCS
),install-doc
) install-sysconfig \
374 install-datadir install-localstatedir
375 $(INSTALL_DIR
) "$(DESTDIR)$(bindir)"
377 $(INSTALL_PROG
) $(STRIP_OPT
) $(TOOLS
) "$(DESTDIR)$(bindir)"
379 ifneq ($(CONFIG_MODULES
),)
380 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_moddir)"
381 for s in
$(patsubst %.mo
,%$(DSOSUF
),$(modules-m
)); do \
382 $(INSTALL_PROG
) $(STRIP_OPT
) $$s "$(DESTDIR)$(qemu_moddir)/$${s//\//-}"; \
385 ifneq ($(HELPERS-y
),)
386 $(INSTALL_DIR
) "$(DESTDIR)$(libexecdir)"
387 $(INSTALL_PROG
) $(STRIP_OPT
) $(HELPERS-y
) "$(DESTDIR)$(libexecdir)"
390 set
-e
; for x in
$(BLOBS
); do \
391 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(qemu_datadir)"; \
394 ifeq ($(CONFIG_GTK
),y
)
397 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/keymaps"
398 set
-e
; for x in
$(KEYMAPS
); do \
399 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
401 for d in
$(TARGET_DIRS
); do \
402 $(MAKE
) $(SUBDIR_MAKEFLAGS
) TARGET_DIR
=$$d/ -C
$$d $@ || exit
1 ; \
405 # various test targets
407 $(MAKE
) -C tests
/tcg
$@
412 find
"$(SRC_PATH)" -name
'*.[hc]' -exec etags
--append
{} +
416 find
"$(SRC_PATH)" -name
"*.[chsS]" -print | sed
's,^\./,,' > .
/cscope.files
421 MAKEINFOFLAGS
=--no-headers
--no-split
--number-sections
422 TEXIFLAG
=$(if
$(V
),,--quiet
)
424 $(call quiet-command
,texi2dvi $(TEXIFLAG
) -I .
$<," GEN $@")
427 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --html
$< -o
$@
, \
431 $(call quiet-command
,$(MAKEINFO
) $< -o
$@
," GEN $@")
434 $(call quiet-command
,texi2pdf
$(TEXIFLAG
) -I .
$<," GEN $@")
436 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
437 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
439 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
440 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
442 qmp-commands.txt
: $(SRC_PATH
)/qmp-commands.hx
443 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-q
< $< > $@
," GEN $@")
445 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
446 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
448 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
449 $(call quiet-command
, \
450 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu.pod
&& \
451 $(POD2MAN
) --section
=1 --center
=" " --release
=" " qemu.pod
> $@
, \
454 qemu-img
.1: qemu-img.texi qemu-img-cmds.texi
455 $(call quiet-command
, \
456 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu-img.pod
&& \
457 $(POD2MAN
) --section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
, \
460 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
461 $(call quiet-command
, \
462 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< fsdev
/virtfs-proxy-helper.pod
&& \
463 $(POD2MAN
) --section
=1 --center
=" " --release
=" " fsdev
/virtfs-proxy-helper.pod
> $@
, \
466 qemu-nbd
.8: qemu-nbd.texi
467 $(call quiet-command
, \
468 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu-nbd.pod
&& \
469 $(POD2MAN
) --section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
, \
472 dvi: qemu-doc.
dvi qemu-tech.
dvi
473 html
: qemu-doc.html qemu-tech.html
474 info: qemu-doc.
info qemu-tech.
info
475 pdf
: qemu-doc.pdf qemu-tech.pdf
477 qemu-doc.
dvi qemu-doc.html qemu-doc.
info qemu-doc.pdf
: \
478 qemu-img.texi qemu-nbd.texi qemu-options.texi \
479 qemu-monitor.texi qemu-img-cmds.texi
483 INSTALLER
= qemu-setup-
$(VERSION
)$(EXESUF
)
485 nsisflags
= -V2
-NOCD
487 ifneq ($(wildcard $(SRC_PATH
)/dll
),)
488 ifeq ($(ARCH
),x86_64
)
490 DLL_PATH
= $(SRC_PATH
)/dll
/w64
494 DLL_PATH
= $(SRC_PATH
)/dll
/w32
499 installer
: $(INSTALLER
)
501 INSTDIR
=/tmp
/qemu-nsis
503 $(INSTALLER
): $(SRC_PATH
)/qemu.nsi
504 make
install prefix=${INSTDIR}
513 for i in qemu-system-
*.exe
; do \
515 arch
=$${arch
#qemu-system-}; \
516 echo Section
\"$$arch\" Section_
$$arch; \
517 echo SetOutPath
\"\
$$INSTDIR\"; \
518 echo File
\"\
$${BINDIR}\\$$i\"; \
521 ) >${INSTDIR}/system-emulations.nsh
522 makensis
$(nsisflags
) \
523 $(if
$(BUILD_DOCS
),-DCONFIG_DOCUMENTATION
="y") \
524 $(if
$(CONFIG_GTK
),-DCONFIG_GTK
="y") \
525 -DBINDIR
="${INSTDIR}" \
526 $(if
$(DLL_PATH
),-DDLLDIR
="$(DLL_PATH)") \
527 -DSRCDIR
="$(SRC_PATH)" \
528 -DOUTFILE
="$(INSTALLER)" \
532 $(SIGNCODE
) $(INSTALLER
)
536 # Add a dependency on the generated files, so that they are always
537 # rebuilt before other object files
538 ifneq ($(filter-out %clean,$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
539 Makefile
: $(GENERATED_HEADERS
)
542 # Include automatically generated dependency files
543 # Dependencies in Makefile.objs files come from our recursive subdir rules
544 -include $(wildcard *.d tests
/*.d
)