3 GENERATED_HEADERS
= config-host.h trace.h
5 ifneq ($(wildcard config-host.mak
),)
6 # Put the all: rule here so that config-host.mak can contain dependencies.
8 include config-host.mak
9 include $(SRC_PATH
)/rules.mak
10 config-host.mak
: $(SRC_PATH
)/configure
11 @echo
$@ is out-of-date
, running configure
12 @sed
-n
"/.*Configured with/s/[^:]*: //p" $@ | sh
15 @echo
"Please call configure before running make!"
19 # Don't try to regenerate Makefile or configure
20 # We don't generate any of them
24 .PHONY
: all clean cscope
distclean dvi html
info install install-doc \
25 pdf recurse-all speed
tar tarbin
test build-all
27 $(call set-vpath
, $(SRC_PATH
):$(SRC_PATH
)/hw
)
29 LIBS
+=-lz
$(LIBS_TOOLS
)
32 DOCS
=qemu-doc.html qemu-tech.html qemu
.1 qemu-img
.1 qemu-nbd
.8 QMP
/qmp-commands.txt
37 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
)
38 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(TARGET_DIRS
))
40 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
)
41 $(call quiet-command
,cat
$(SUBDIR_DEVICES_MAK
) | grep
=y |
sort -u
> $@
," GEN $@")
43 %/config-devices.mak
: default-configs
/%.mak
44 $(call quiet-command
,cat
$< > $@.tmp
, " GEN $@")
45 @if
test -f
$@
; then \
46 if cmp
-s
$@.old
$@
; then \
47 if
! cmp
-s
$@
$@.tmp
; then \
52 if
test -f
$@.old
; then \
53 echo
"WARNING: $@ (user modified) out of date.";\
55 echo
"WARNING: $@ out of date.";\
57 echo
"Run \"make defconfig\" to regenerate."; \
66 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
68 -include config-all-devices.mak
70 build-all
: $(DOCS
) $(TOOLS
) recurse-all
72 config-host.h
: config-host.h-timestamp
73 config-host.h-timestamp
: config-host.mak
75 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
77 subdir-
%: $(GENERATED_HEADERS
)
78 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
80 ifneq ($(wildcard config-host.mak
),)
81 include $(SRC_PATH
)/Makefile.objs
84 $(common-obj-y
): $(GENERATED_HEADERS
)
85 $(filter %-softmmu
,$(SUBDIR_RULES
)): $(trace-obj-y
) $(common-obj-y
) subdir-libdis
87 $(filter %-user
,$(SUBDIR_RULES
)): $(GENERATED_HEADERS
) $(trace-obj-y
) subdir-libdis-user subdir-libuser
89 ROMSUBDIR_RULES
=$(patsubst %,romsubdir-
%, $(ROMS
))
91 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pc-bios
/$* V
="$(V)" TARGET_DIR
="$*/",)
93 ALL_SUBDIRS
=$(TARGET_DIRS
) $(patsubst %,pc-bios
/%, $(ROMS
))
95 recurse-all
: $(SUBDIR_RULES
) $(ROMSUBDIR_RULES
)
97 audio
/audio.o audio
/fmodaudio.o
: QEMU_CFLAGS
+= $(FMOD_CFLAGS
)
99 QEMU_CFLAGS
+=$(CURL_CFLAGS
)
101 ui
/cocoa.o
: ui
/cocoa.m
103 ui
/sdl.o audio
/sdlaudio.o ui
/sdl_zoom.o baum.o
: QEMU_CFLAGS
+= $(SDL_CFLAGS
)
105 ui
/vnc.o
: QEMU_CFLAGS
+= $(VNC_TLS_CFLAGS
)
107 bt-host.o
: QEMU_CFLAGS
+= $(BLUEZ_CFLAGS
)
109 trace.h
: trace.h-timestamp
110 trace.h-timestamp
: $(SRC_PATH
)/trace-events config-host.mak
111 $(call quiet-command
,sh
$(SRC_PATH
)/tracetool
--$(TRACE_BACKEND
) -h
< $< > $@
," GEN trace.h")
112 @cmp
-s
$@ trace.h || cp
$@ trace.h
114 trace.c
: trace.c-timestamp
115 trace.c-timestamp
: $(SRC_PATH
)/trace-events config-host.mak
116 $(call quiet-command
,sh
$(SRC_PATH
)/tracetool
--$(TRACE_BACKEND
) -c
< $< > $@
," GEN trace.c")
117 @cmp
-s
$@ trace.c || cp
$@ trace.c
119 trace.o
: trace.c
$(GENERATED_HEADERS
)
121 simpletrace.o
: simpletrace.c
$(GENERATED_HEADERS
)
123 version.o
: $(SRC_PATH
)/version.rc config-host.mak
124 $(call quiet-command
,$(WINDRES
) -I.
-o
$@
$<," RC $(TARGET_DIR)$@")
126 version-obj-
$(CONFIG_WIN32
) += version.o
127 ######################################################################
129 qemu-img.o
: qemu-img-cmds.h
130 qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o
: $(GENERATED_HEADERS
)
132 qemu-img
$(EXESUF
): qemu-img.o qemu-tool.o qemu-error.o
$(trace-obj-y
) $(block-obj-y
) $(qobject-obj-y
) $(version-obj-y
)
134 qemu-nbd
$(EXESUF
): qemu-nbd.o qemu-tool.o qemu-error.o
$(trace-obj-y
) $(block-obj-y
) $(qobject-obj-y
) $(version-obj-y
)
136 qemu-io
$(EXESUF
): qemu-io.o cmd.o qemu-tool.o qemu-error.o
$(trace-obj-y
) $(block-obj-y
) $(qobject-obj-y
) $(version-obj-y
)
138 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
139 $(call quiet-command
,sh
$(SRC_PATH
)/hxtool
-h
< $< > $@
," GEN $@")
141 check-qint.o check-qstring.o check-qdict.o check-qlist.o check-qfloat.o check-qjson.o
: $(GENERATED_HEADERS
)
143 check-qint
: check-qint.o qint.o qemu-malloc.o
144 check-qstring
: check-qstring.o qstring.o qemu-malloc.o
145 check-qdict
: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
146 check-qlist
: check-qlist.o qlist.o qint.o qemu-malloc.o
147 check-qfloat
: check-qfloat.o qfloat.o qemu-malloc.o
148 check-qjson
: check-qjson.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o qjson.o json-streamer.o json-lexer.o json-parser.o qemu-malloc.o
151 # avoid old build problems by removing potentially incorrect old files
152 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
153 rm -f
*.o
*.d
*.a
$(TOOLS
) TAGS cscope.
* *.pod
*~
*/*~
154 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
155 rm -f qemu-img-cmds.h
156 rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
157 $(MAKE
) -C tests
clean
158 for d in
$(ALL_SUBDIRS
) libhw32 libhw64 libuser libdis libdis-user
; do \
159 if
test -d
$$d; then
$(MAKE
) -C
$$d $@ || exit
1; fi
; \
163 rm -f config-host.mak config-host.h
* config-host.
ld $(DOCS
) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
164 rm -f qemu-options.def
165 rm -f config-all-devices.mak
166 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
167 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.
dvi qemu-doc.fn qemu-doc.
info qemu-doc.ky qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp qemu-doc.vr
168 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
169 for d in
$(TARGET_DIRS
) libhw32 libhw64 libuser libdis libdis-user
; do \
170 rm -rf
$$d || exit
1 ; \
173 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
174 ar de en-us fi fr-be hr it lv nl pl ru th \
175 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
178 BLOBS
=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
179 openbios-sparc32 openbios-sparc64 openbios-ppc \
180 gpxe-eepro100-80861209.rom \
181 gpxe-eepro100-80861229.rom \
183 pxe-ne2k_pci.bin pxe-pcnet.bin \
184 pxe-rtl8139.bin pxe-virtio.bin \
185 bamboo.dtb petalogix-s3adsp1800.dtb \
186 multiboot.bin linuxboot.bin \
193 $(INSTALL_DIR
) "$(DESTDIR)$(docdir)"
194 $(INSTALL_DATA
) qemu-doc.html qemu-tech.html
"$(DESTDIR)$(docdir)"
196 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
197 $(INSTALL_DATA
) qemu
.1 qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
198 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
199 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
203 $(INSTALL_DIR
) "$(DESTDIR)$(sysconfdir)/qemu"
204 $(INSTALL_DATA
) $(SRC_PATH
)/sysconfigs
/target
/target-x86_64.conf
"$(DESTDIR)$(sysconfdir)/qemu"
206 install: all $(if
$(BUILD_DOCS
),install-doc
) install-sysconfig
207 $(INSTALL_DIR
) "$(DESTDIR)$(bindir)"
209 $(INSTALL_PROG
) $(STRIP_OPT
) $(TOOLS
) "$(DESTDIR)$(bindir)"
212 $(INSTALL_DIR
) "$(DESTDIR)$(datadir)"
213 set
-e
; for x in
$(BLOBS
); do \
214 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
217 $(INSTALL_DIR
) "$(DESTDIR)$(datadir)/keymaps"
218 set
-e
; for x in
$(KEYMAPS
); do \
219 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
221 for d in
$(TARGET_DIRS
); do \
222 $(MAKE
) -C
$$d $@ || exit
1 ; \
225 # various test targets
231 find
"$(SRC_PATH)" -name
'*.[hc]' -print0 | xargs
-0 etags
235 find .
-name
"*.[ch]" -print | sed
's,^\./,,' > .
/cscope.files
240 MAKEINFOFLAGS
=--no-headers
--no-split
--number-sections
241 TEXIFLAG
=$(if
$(V
),,--quiet
)
243 $(call quiet-command
,texi2dvi $(TEXIFLAG
) -I .
$<," GEN $@")
246 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) --html
$< -o
$@
, \
250 $(call quiet-command
,$(MAKEINFO
) $< -o
$@
," GEN $@")
253 $(call quiet-command
,texi2pdf
$(TEXIFLAG
) -I .
$<," GEN $@")
255 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
256 $(call quiet-command
,sh
$(SRC_PATH
)/hxtool
-t
< $< > $@
," GEN $@")
258 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
259 $(call quiet-command
,sh
$(SRC_PATH
)/hxtool
-t
< $< > $@
," GEN $@")
261 QMP
/qmp-commands.txt
: $(SRC_PATH
)/qmp-commands.hx
262 $(call quiet-command
,sh
$(SRC_PATH
)/hxtool
-q
< $< > $@
," GEN $@")
264 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
265 $(call quiet-command
,sh
$(SRC_PATH
)/hxtool
-t
< $< > $@
," GEN $@")
267 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
268 $(call quiet-command
, \
269 perl
-Ww
-- $(SRC_PATH
)/texi2pod.pl
$< qemu.pod
&& \
270 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
, \
273 qemu-img
.1: qemu-img.texi qemu-img-cmds.texi
274 $(call quiet-command
, \
275 perl
-Ww
-- $(SRC_PATH
)/texi2pod.pl
$< qemu-img.pod
&& \
276 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
, \
279 qemu-nbd
.8: qemu-nbd.texi
280 $(call quiet-command
, \
281 perl
-Ww
-- $(SRC_PATH
)/texi2pod.pl
$< qemu-nbd.pod
&& \
282 pod2man
--section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
, \
285 dvi: qemu-doc.
dvi qemu-tech.
dvi
286 html
: qemu-doc.html qemu-tech.html
287 info: qemu-doc.
info qemu-tech.
info
288 pdf
: qemu-doc.pdf qemu-tech.pdf
290 qemu-doc.
dvi qemu-doc.html qemu-doc.
info qemu-doc.pdf
: \
291 qemu-img.texi qemu-nbd.texi qemu-options.texi \
292 qemu-monitor.texi qemu-img-cmds.texi
294 VERSION ?
= $(shell cat VERSION
)
295 FILE
= qemu-
$(VERSION
)
297 # tar release (use 'make -k tar' on a checkouted tree)
301 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
--exclude .git
--exclude .svn
304 SYSTEM_TARGETS
=$(filter %-softmmu
,$(TARGET_DIRS
))
305 SYSTEM_PROGS
=$(patsubst qemu-system-i386
,qemu
, \
306 $(patsubst %-softmmu
,qemu-system-
%, \
309 USER_TARGETS
=$(filter %-user
,$(TARGET_DIRS
))
310 USER_PROGS
=$(patsubst %-bsd-user
,qemu-
%, \
311 $(patsubst %-darwin-user
,qemu-
%, \
312 $(patsubst %-linux-user
,qemu-
%, \
315 # generate a binary distribution
317 cd
/ && tar zcvf ~
/qemu-
$(VERSION
)-$(ARCH
).
tar.gz \
318 $(patsubst %,$(bindir)/%, $(SYSTEM_PROGS
)) \
319 $(patsubst %,$(bindir)/%, $(USER_PROGS
)) \
322 $(datadir)/bios.bin \
323 $(datadir)/vgabios.bin \
324 $(datadir)/vgabios-cirrus.bin \
325 $(datadir)/ppc_rom.bin \
326 $(datadir)/openbios-sparc32 \
327 $(datadir)/openbios-sparc64 \
328 $(datadir)/openbios-ppc \
329 $(datadir)/pxe-ne2k_pci.bin \
330 $(datadir)/pxe-rtl8139.bin \
331 $(datadir)/pxe-pcnet.bin \
332 $(datadir)/pxe-e1000.bin \
333 $(docdir
)/qemu-doc.html \
334 $(docdir
)/qemu-tech.html \
335 $(mandir)/man1
/qemu
.1 \
336 $(mandir)/man1
/qemu-img
.1 \
337 $(mandir)/man8
/qemu-nbd
.8
339 # Include automatically generated dependency files
340 -include $(wildcard *.d audio
/*.d slirp
/*.d block
/*.d net
/*.d ui
/*.d
)