3 # Always point to the root of the build tree (needs GNU make).
6 GENERATED_HEADERS
= config-host.h trace.h qemu-options.def
7 ifeq ($(TRACE_BACKEND
),dtrace
)
8 GENERATED_HEADERS
+= trace-dtrace.h
10 GENERATED_HEADERS
+= qmp-commands.h qapi-types.h qapi-visit.h
11 GENERATED_SOURCES
+= qmp-marshal.c qapi-types.c qapi-visit.c
13 ifneq ($(wildcard config-host.mak
),)
14 # Put the all: rule here so that config-host.mak can contain dependencies.
16 include config-host.mak
17 include $(SRC_PATH
)/rules.mak
18 config-host.mak
: $(SRC_PATH
)/configure
19 @echo
$@ is out-of-date
, running configure
20 @sed
-n
"/.*Configured with/s/[^:]*: //p" $@ | sh
23 @echo
"Please call configure before running make!"
27 # Don't try to regenerate Makefile or configure
28 # We don't generate any of them
32 .PHONY
: all clean cscope
distclean dvi html
info install install-doc \
33 pdf recurse-all speed
tar tarbin
test build-all
35 $(call set-vpath
, $(SRC_PATH
):$(SRC_PATH
)/hw
)
37 LIBS
+=-lz
$(LIBS_TOOLS
)
40 DOCS
=qemu-doc.html qemu-tech.html qemu
.1 qemu-img
.1 qemu-nbd
.8 QMP
/qmp-commands.txt
41 DOCS
+=fsdev
/virtfs-proxy-helper
.1
46 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
) BUILD_DIR
=$(BUILD_DIR
)
47 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(TARGET_DIRS
))
48 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %/config-devices.mak.d
, $(TARGET_DIRS
))
50 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
)
51 $(call quiet-command
,cat
$(SUBDIR_DEVICES_MAK
) | grep
=y |
sort -u
> $@
," GEN $@")
53 -include $(SUBDIR_DEVICES_MAK_DEP
)
55 %/config-devices.mak
: default-configs
/%.mak
56 $(call quiet-command
,$(SHELL
) $(SRC_PATH
)/scripts
/make_device_config.sh
$@
$<, " GEN $@")
57 @if
test -f
$@
; then \
58 if cmp
-s
$@.old
$@
; then \
62 if
test -f
$@.old
; then \
63 echo
"WARNING: $@ (user modified) out of date.";\
65 echo
"WARNING: $@ out of date.";\
67 echo
"Run \"make defconfig\" to regenerate."; \
76 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
78 -include config-all-devices.mak
80 build-all
: $(DOCS
) $(TOOLS
) recurse-all
82 config-host.h
: config-host.h-timestamp
83 config-host.h-timestamp
: config-host.mak
84 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
85 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
," GEN $@")
87 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
89 subdir-
%: $(GENERATED_HEADERS
)
90 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
92 ifneq ($(wildcard config-host.mak
),)
93 include $(SRC_PATH
)/Makefile.objs
96 $(common-obj-y
): $(GENERATED_HEADERS
)
97 subdir-libcacard
: $(oslib-obj-y
) $(trace-obj-y
) qemu-timer-common.o
99 $(filter %-softmmu
,$(SUBDIR_RULES
)): $(trace-obj-y
) $(common-obj-y
) subdir-libdis
101 $(filter %-user
,$(SUBDIR_RULES
)): $(GENERATED_HEADERS
) $(trace-obj-y
) subdir-libdis-user subdir-libuser
103 ROMSUBDIR_RULES
=$(patsubst %,romsubdir-
%, $(ROMS
))
105 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pc-bios
/$* V
="$(V)" TARGET_DIR
="$*/",)
107 ALL_SUBDIRS
=$(TARGET_DIRS
) $(patsubst %,pc-bios
/%, $(ROMS
))
109 recurse-all
: $(SUBDIR_RULES
) $(ROMSUBDIR_RULES
)
111 audio
/audio.o audio
/fmodaudio.o
: QEMU_CFLAGS
+= $(FMOD_CFLAGS
)
113 QEMU_CFLAGS
+=$(CURL_CFLAGS
)
115 QEMU_CFLAGS
+=$(GLIB_CFLAGS
)
117 ui
/cocoa.o
: ui
/cocoa.m
119 ui
/sdl.o audio
/sdlaudio.o ui
/sdl_zoom.o baum.o
: QEMU_CFLAGS
+= $(SDL_CFLAGS
)
121 ui
/vnc.o
: QEMU_CFLAGS
+= $(VNC_TLS_CFLAGS
)
123 bt-host.o
: QEMU_CFLAGS
+= $(BLUEZ_CFLAGS
)
125 version.o
: $(SRC_PATH
)/version.rc config-host.h
126 $(call quiet-command
,$(WINDRES
) -I.
-o
$@
$<," RC $(TARGET_DIR)$@")
128 version-obj-
$(CONFIG_WIN32
) += version.o
129 ######################################################################
130 # Support building shared library libcacard
132 .PHONY
: libcacard.la install-libcacard
135 @echo
"libtool is missing, please install and rerun configure"; exit
1
138 @echo
"libtool is missing, please install and rerun configure"; exit
1
140 libcacard.la
: $(GENERATED_HEADERS
) $(oslib-obj-y
) qemu-timer-common.o
$(addsuffix .lo
, $(basename $(trace-obj-y
)))
141 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C libcacard V
="$(V)" TARGET_DIR
="$*/" libcacard.la
,)
143 install-libcacard
: libcacard.la
144 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C libcacard V
="$(V)" TARGET_DIR
="$*/" install-libcacard
,)
146 ######################################################################
148 qemu-img.o
: qemu-img-cmds.h
149 qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o cmd.o qemu-ga.o
: $(GENERATED_HEADERS
)
151 tools-obj-y
= $(oslib-obj-y
) $(trace-obj-y
) qemu-tool.o qemu-timer.o \
152 qemu-timer-common.o main-loop.o notify.o iohandler.o cutils.o async.o
153 tools-obj-
$(CONFIG_POSIX
) += compatfd.o
155 qemu-img
$(EXESUF
): qemu-img.o
$(tools-obj-y
) $(block-obj-y
)
156 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(tools-obj-y
) $(block-obj-y
)
157 qemu-io
$(EXESUF
): qemu-io.o cmd.o
$(tools-obj-y
) $(block-obj-y
)
159 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/virtio-9p-marshal.o oslib-posix.o
$(trace-obj-y
)
160 fsdev
/virtfs-proxy-helper
$(EXESUF
): LIBS
+= -lcap
162 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
163 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
," GEN $@")
165 $(qapi-obj-y
): $(GENERATED_HEADERS
)
166 qapi-dir
:= $(BUILD_DIR
)/qapi-generated
167 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
169 gen-out-type
= $(subst .
,-,$(suffix $@
))
171 include $(SRC_PATH
)/tests
/Makefile
173 $(qapi-dir
)/qga-qapi-types.c
$(qapi-dir
)/qga-qapi-types.h
:\
174 $(SRC_PATH
)/qapi-schema-guest.json
$(SRC_PATH
)/scripts
/qapi-types.py
175 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-types.py
$(gen-out-type
) -o
"$(qapi-dir)" -p
"qga-" < $<, " GEN $@")
176 $(qapi-dir
)/qga-qapi-visit.c
$(qapi-dir
)/qga-qapi-visit.h
:\
177 $(SRC_PATH
)/qapi-schema-guest.json
$(SRC_PATH
)/scripts
/qapi-visit.py
178 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-visit.py
$(gen-out-type
) -o
"$(qapi-dir)" -p
"qga-" < $<, " GEN $@")
179 $(qapi-dir
)/qga-qmp-commands.h
$(qapi-dir
)/qga-qmp-marshal.c
:\
180 $(SRC_PATH
)/qapi-schema-guest.json
$(SRC_PATH
)/scripts
/qapi-commands.py
181 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-commands.py
$(gen-out-type
) -o
"$(qapi-dir)" -p
"qga-" < $<, " GEN $@")
183 qapi-types.c qapi-types.h
:\
184 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-types.py
185 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-types.py
$(gen-out-type
) -o
"." < $<, " GEN $@")
186 qapi-visit.c qapi-visit.h
:\
187 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-visit.py
188 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-visit.py
$(gen-out-type
) -o
"." < $<, " GEN $@")
189 qmp-commands.h qmp-marshal.c
:\
190 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-commands.py
191 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-commands.py
$(gen-out-type
) -m
-o
"." < $<, " GEN $@")
193 QGALIB_OBJ
=$(addprefix $(qapi-dir
)/, qga-qapi-types.o qga-qapi-visit.o qga-qmp-marshal.o
)
194 QGALIB_GEN
=$(addprefix $(qapi-dir
)/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h
)
195 $(QGALIB_OBJ
): $(QGALIB_GEN
) $(GENERATED_HEADERS
)
196 $(qga-obj-y
) qemu-ga.o
: $(QGALIB_GEN
) $(GENERATED_HEADERS
)
198 qemu-ga
$(EXESUF
): qemu-ga.o
$(qga-obj-y
) $(qapi-obj-y
) $(tools-obj-y
) $(qobject-obj-y
) $(version-obj-y
) $(QGALIB_OBJ
)
200 QEMULIBS
=libhw32 libhw64 libuser libdis libdis-user
203 # avoid old build problems by removing potentially incorrect old files
204 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
205 rm -f qemu-options.def
206 rm -f
*.o
*.d
*.a
*.lo
$(TOOLS
) qemu-ga TAGS cscope.
* *.pod
*~
*/*~
208 rm -f slirp
/*.o slirp
/*.d audio
/*.o audio
/*.d block
/*.o block
/*.d net
/*.o net
/*.d fsdev
/*.o fsdev
/*.d ui
/*.o ui
/*.d qapi
/*.o qapi
/*.d qga
/*.o qga
/*.d
209 rm -f qemu-img-cmds.h
210 rm -f trace
/*.o trace
/*.d
211 rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
212 rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
213 rm -f trace-dtrace.h trace-dtrace.h-timestamp
214 rm -f
$(GENERATED_SOURCES
)
216 $(MAKE
) -C tests
/tcg
clean
217 for d in
$(ALL_SUBDIRS
) $(QEMULIBS
) libcacard
; do \
218 if
test -d
$$d; then
$(MAKE
) -C
$$d $@ || exit
1; fi
; \
219 rm -f
$$d/qemu-options.def
; \
223 rm -f config-host.mak config-host.h
* config-host.
ld $(DOCS
) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
224 rm -f config-all-devices.mak
225 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
226 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.
dvi
227 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
228 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
231 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
232 for d in
$(TARGET_DIRS
) $(QEMULIBS
); do \
233 rm -rf
$$d || exit
1 ; \
236 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
237 ar de en-us fi fr-be hr it lv nl pl ru th \
238 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
241 BLOBS
=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
242 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
243 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
244 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
245 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
246 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
248 multiboot.bin linuxboot.bin \
250 spapr-rtas.bin slof.bin \
257 $(INSTALL_DIR
) "$(DESTDIR)$(docdir)"
258 $(INSTALL_DATA
) qemu-doc.html qemu-tech.html
"$(DESTDIR)$(docdir)"
260 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
261 $(INSTALL_DATA
) qemu
.1 qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
262 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
263 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
266 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
267 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
270 $(INSTALL_DIR
) "$(DESTDIR)$(sysconfdir)/qemu"
271 $(INSTALL_DATA
) $(SRC_PATH
)/sysconfigs
/target
/target-x86_64.conf
"$(DESTDIR)$(sysconfdir)/qemu"
273 install: all $(if
$(BUILD_DOCS
),install-doc
) install-sysconfig
274 $(INSTALL_DIR
) "$(DESTDIR)$(bindir)"
276 $(INSTALL_PROG
) $(STRIP_OPT
) $(TOOLS
) "$(DESTDIR)$(bindir)"
279 $(INSTALL_DIR
) "$(DESTDIR)$(datadir)"
280 set
-e
; for x in
$(BLOBS
); do \
281 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
284 $(INSTALL_DIR
) "$(DESTDIR)$(datadir)/keymaps"
285 set
-e
; for x in
$(KEYMAPS
); do \
286 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
288 for d in
$(TARGET_DIRS
); do \
289 $(MAKE
) -C
$$d $@ || exit
1 ; \
292 # various test targets
294 $(MAKE
) -C tests
/tcg
$@
298 find
"$(SRC_PATH)" -name
'*.[hc]' -print0 | xargs
-0 etags
302 find
"$(SRC_PATH)" -name
"*.[chsS]" -print | sed
's,^\./,,' > .
/cscope.files
307 MAKEINFOFLAGS
=--no-headers
--no-split
--number-sections
308 TEXIFLAG
=$(if
$(V
),,--quiet
)
310 $(call quiet-command
,texi2dvi $(TEXIFLAG
) -I .
$<," GEN $@")
313 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) --html
$< -o
$@
, \
317 $(call quiet-command
,$(MAKEINFO
) $< -o
$@
," GEN $@")
320 $(call quiet-command
,texi2pdf
$(TEXIFLAG
) -I .
$<," GEN $@")
322 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
323 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
325 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
326 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
328 QMP
/qmp-commands.txt
: $(SRC_PATH
)/qmp-commands.hx
329 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-q
< $< > $@
," GEN $@")
331 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
332 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
334 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
335 $(call quiet-command
, \
336 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu.pod
&& \
337 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
, \
340 qemu-img
.1: qemu-img.texi qemu-img-cmds.texi
341 $(call quiet-command
, \
342 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu-img.pod
&& \
343 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
, \
346 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
347 $(call quiet-command
, \
348 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< fsdev
/virtfs-proxy-helper.pod
&& \
349 pod2man
--section
=1 --center
=" " --release
=" " fsdev
/virtfs-proxy-helper.pod
> $@
, \
352 qemu-nbd
.8: qemu-nbd.texi
353 $(call quiet-command
, \
354 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu-nbd.pod
&& \
355 pod2man
--section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
, \
358 dvi: qemu-doc.
dvi qemu-tech.
dvi
359 html
: qemu-doc.html qemu-tech.html
360 info: qemu-doc.
info qemu-tech.
info
361 pdf
: qemu-doc.pdf qemu-tech.pdf
363 qemu-doc.
dvi qemu-doc.html qemu-doc.
info qemu-doc.pdf
: \
364 qemu-img.texi qemu-nbd.texi qemu-options.texi \
365 qemu-monitor.texi qemu-img-cmds.texi
367 VERSION ?
= $(shell cat VERSION
)
368 FILE
= qemu-
$(VERSION
)
370 # tar release (use 'make -k tar' on a checkouted tree)
374 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
--exclude .git
--exclude .svn
377 # Include automatically generated dependency files
378 -include $(wildcard *.d audio
/*.d slirp
/*.d block
/*.d net
/*.d ui
/*.d qapi
/*.d qga
/*.d
)