]> git.proxmox.com Git - qemu.git/blame_incremental - Makefile
tests: mv tests/* -> tests/tcg
[qemu.git] / Makefile
... / ...
CommitLineData
1# Makefile for QEMU.
2
3# Always point to the root of the build tree (needs GNU make).
4BUILD_DIR=$(CURDIR)
5
6GENERATED_HEADERS = config-host.h trace.h qemu-options.def
7ifeq ($(TRACE_BACKEND),dtrace)
8GENERATED_HEADERS += trace-dtrace.h
9endif
10GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h
11GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c
12
13ifneq ($(wildcard config-host.mak),)
14# Put the all: rule here so that config-host.mak can contain dependencies.
15all: build-all
16include config-host.mak
17include $(SRC_PATH)/rules.mak
18config-host.mak: $(SRC_PATH)/configure
19 @echo $@ is out-of-date, running configure
20 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
21else
22config-host.mak:
23 @echo "Please call configure before running make!"
24 @exit 1
25endif
26
27# Don't try to regenerate Makefile or configure
28# We don't generate any of them
29Makefile: ;
30configure: ;
31
32.PHONY: all clean cscope distclean dvi html info install install-doc \
33 pdf recurse-all speed tar tarbin test build-all
34
35$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
36
37LIBS+=-lz $(LIBS_TOOLS)
38
39ifdef BUILD_DOCS
40DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
41DOCS+=fsdev/virtfs-proxy-helper.1
42else
43DOCS=
44endif
45
46SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
47SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
48SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS))
49
50config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
51 $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@")
52
53-include $(SUBDIR_DEVICES_MAK_DEP)
54
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 \
59 mv $@.tmp $@; \
60 cp -p $@ $@.old; \
61 else \
62 if test -f $@.old; then \
63 echo "WARNING: $@ (user modified) out of date.";\
64 else \
65 echo "WARNING: $@ out of date.";\
66 fi; \
67 echo "Run \"make defconfig\" to regenerate."; \
68 rm $@.tmp; \
69 fi; \
70 else \
71 mv $@.tmp $@; \
72 cp -p $@ $@.old; \
73 fi
74
75defconfig:
76 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
77
78-include config-all-devices.mak
79
80build-all: $(DOCS) $(TOOLS) $(CHECKS) recurse-all
81
82config-host.h: config-host.h-timestamp
83config-host.h-timestamp: config-host.mak
84qemu-options.def: $(SRC_PATH)/qemu-options.hx
85 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
86
87SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
88
89subdir-%: $(GENERATED_HEADERS)
90 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
91
92ifneq ($(wildcard config-host.mak),)
93include $(SRC_PATH)/Makefile.objs
94endif
95
96$(common-obj-y): $(GENERATED_HEADERS)
97subdir-libcacard: $(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
98
99$(filter %-softmmu,$(SUBDIR_RULES)): $(trace-obj-y) $(common-obj-y) subdir-libdis
100
101$(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) $(trace-obj-y) subdir-libdis-user subdir-libuser
102
103ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
104romsubdir-%:
105 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
106
107ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
108
109recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
110
111audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
112
113QEMU_CFLAGS+=$(CURL_CFLAGS)
114
115QEMU_CFLAGS+=$(GLIB_CFLAGS)
116
117ui/cocoa.o: ui/cocoa.m
118
119ui/sdl.o audio/sdlaudio.o ui/sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
120
121ui/vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
122
123bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
124
125version.o: $(SRC_PATH)/version.rc config-host.h
126 $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@")
127
128version-obj-$(CONFIG_WIN32) += version.o
129######################################################################
130# Support building shared library libcacard
131
132.PHONY: libcacard.la install-libcacard
133ifeq ($(LIBTOOL),)
134libcacard.la:
135 @echo "libtool is missing, please install and rerun configure"; exit 1
136
137install-libcacard:
138 @echo "libtool is missing, please install and rerun configure"; exit 1
139else
140libcacard.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,)
142
143install-libcacard: libcacard.la
144 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,)
145endif
146######################################################################
147
148qemu-img.o: qemu-img-cmds.h
149qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o cmd.o qemu-ga.o: $(GENERATED_HEADERS)
150
151tools-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
153tools-obj-$(CONFIG_POSIX) += compatfd.o
154
155qemu-img$(EXESUF): qemu-img.o $(tools-obj-y) $(block-obj-y)
156qemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y) $(block-obj-y)
157qemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y) $(block-obj-y)
158
159fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y)
160fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
161
162qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
163 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
164
165check-qint.o check-qstring.o check-qdict.o check-qlist.o check-qfloat.o check-qjson.o test-coroutine.o: $(GENERATED_HEADERS)
166
167check-qint: check-qint.o qint.o $(tools-obj-y)
168check-qstring: check-qstring.o qstring.o $(tools-obj-y)
169check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qlist.o $(tools-obj-y)
170check-qlist: check-qlist.o qlist.o qint.o $(tools-obj-y)
171check-qfloat: check-qfloat.o qfloat.o $(tools-obj-y)
172check-qjson: check-qjson.o $(qobject-obj-y) $(tools-obj-y)
173test-coroutine: test-coroutine.o qemu-timer-common.o async.o $(coroutine-obj-y) $(tools-obj-y)
174
175$(qapi-obj-y): $(GENERATED_HEADERS)
176qapi-dir := $(BUILD_DIR)/qapi-generated
177test-qmp-input-visitor.o test-qmp-output-visitor.o test-qmp-commands.o qemu-ga$(EXESUF): QEMU_CFLAGS += -I $(qapi-dir)
178qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
179
180gen-out-type = $(subst .,-,$(suffix $@))
181
182$(qapi-dir)/test-qapi-types.c $(qapi-dir)/test-qapi-types.h :\
183$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py
184 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "$(qapi-dir)" -p "test-" < $<, " GEN $@")
185$(qapi-dir)/test-qapi-visit.c $(qapi-dir)/test-qapi-visit.h :\
186$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py
187 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "$(qapi-dir)" -p "test-" < $<, " GEN $@")
188$(qapi-dir)/test-qmp-commands.h $(qapi-dir)/test-qmp-marshal.c :\
189$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py
190 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o "$(qapi-dir)" -p "test-" < $<, " GEN $@")
191
192$(qapi-dir)/qga-qapi-types.c $(qapi-dir)/qga-qapi-types.h :\
193$(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-types.py
194 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "$(qapi-dir)" -p "qga-" < $<, " GEN $@")
195$(qapi-dir)/qga-qapi-visit.c $(qapi-dir)/qga-qapi-visit.h :\
196$(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-visit.py
197 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "$(qapi-dir)" -p "qga-" < $<, " GEN $@")
198$(qapi-dir)/qga-qmp-commands.h $(qapi-dir)/qga-qmp-marshal.c :\
199$(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-commands.py
200 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o "$(qapi-dir)" -p "qga-" < $<, " GEN $@")
201
202qapi-types.c qapi-types.h :\
203$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py
204 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@")
205qapi-visit.c qapi-visit.h :\
206$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py
207 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@")
208qmp-commands.h qmp-marshal.c :\
209$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py
210 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@")
211
212test-qmp-output-visitor.o: $(addprefix $(qapi-dir)/, test-qapi-types.c test-qapi-types.h test-qapi-visit.c test-qapi-visit.h) $(qapi-obj-y)
213test-qmp-output-visitor: test-qmp-output-visitor.o $(qobject-obj-y) $(qapi-obj-y) $(tools-obj-y) $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o
214
215test-qmp-input-visitor.o: $(addprefix $(qapi-dir)/, test-qapi-types.c test-qapi-types.h test-qapi-visit.c test-qapi-visit.h) $(qapi-obj-y)
216test-qmp-input-visitor: test-qmp-input-visitor.o $(qobject-obj-y) $(qapi-obj-y) $(tools-obj-y) $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o
217
218test-qmp-commands.o: $(addprefix $(qapi-dir)/, test-qapi-types.c test-qapi-types.h test-qapi-visit.c test-qapi-visit.h test-qmp-marshal.c test-qmp-commands.h) $(qapi-obj-y)
219test-qmp-commands: test-qmp-commands.o $(qobject-obj-y) $(qapi-obj-y) $(tools-obj-y) $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o $(qapi-dir)/test-qmp-marshal.o module.o
220
221QGALIB_OBJ=$(addprefix $(qapi-dir)/, qga-qapi-types.o qga-qapi-visit.o qga-qmp-marshal.o)
222QGALIB_GEN=$(addprefix $(qapi-dir)/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
223$(QGALIB_OBJ): $(QGALIB_GEN) $(GENERATED_HEADERS)
224$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN) $(GENERATED_HEADERS)
225
226qemu-ga$(EXESUF): qemu-ga.o $(qga-obj-y) $(qapi-obj-y) $(tools-obj-y) $(qobject-obj-y) $(version-obj-y) $(QGALIB_OBJ)
227
228QEMULIBS=libhw32 libhw64 libuser libdis libdis-user
229
230clean:
231# avoid old build problems by removing potentially incorrect old files
232 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
233 rm -f qemu-options.def
234 rm -f *.o *.d *.a *.lo $(TOOLS) $(CHECKS) qemu-ga TAGS cscope.* *.pod *~ */*~
235 rm -Rf .libs
236 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
237 rm -f qemu-img-cmds.h
238 rm -f trace/*.o trace/*.d
239 rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
240 rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
241 rm -f trace-dtrace.h trace-dtrace.h-timestamp
242 rm -f $(GENERATED_SOURCES)
243 rm -rf $(qapi-dir)
244 $(MAKE) -C tests/tcg clean
245 for d in $(ALL_SUBDIRS) $(QEMULIBS) libcacard; do \
246 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
247 rm -f $$d/qemu-options.def; \
248 done
249
250distclean: clean
251 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
252 rm -f config-all-devices.mak
253 rm -f roms/seabios/config.mak roms/vgabios/config.mak
254 rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
255 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
256 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
257 rm -f qemu-doc.vr
258 rm -f config.log
259 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
260 for d in $(TARGET_DIRS) $(QEMULIBS); do \
261 rm -rf $$d || exit 1 ; \
262 done
263
264KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
265ar de en-us fi fr-be hr it lv nl pl ru th \
266common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
267
268ifdef INSTALL_BLOBS
269BLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
270vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
271ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
272pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
273pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
274bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
275mpc8544ds.dtb \
276multiboot.bin linuxboot.bin \
277s390-zipl.rom \
278spapr-rtas.bin slof.bin \
279palcode-clipper
280else
281BLOBS=
282endif
283
284install-doc: $(DOCS)
285 $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
286 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
287ifdef CONFIG_POSIX
288 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
289 $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
290 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
291 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
292endif
293ifdef CONFIG_VIRTFS
294 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
295 $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
296endif
297install-sysconfig:
298 $(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
299 $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
300
301install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
302 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
303ifneq ($(TOOLS),)
304 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
305endif
306ifneq ($(BLOBS),)
307 $(INSTALL_DIR) "$(DESTDIR)$(datadir)"
308 set -e; for x in $(BLOBS); do \
309 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
310 done
311endif
312 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
313 set -e; for x in $(KEYMAPS); do \
314 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
315 done
316 for d in $(TARGET_DIRS); do \
317 $(MAKE) -C $$d $@ || exit 1 ; \
318 done
319
320# various test targets
321test speed: all
322 $(MAKE) -C tests/tcg $@
323
324.PHONY: check
325check: $(patsubst %,run-check-%,$(CHECKS))
326
327run-check-%: %
328 ./$<
329
330.PHONY: TAGS
331TAGS:
332 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
333
334cscope:
335 rm -f ./cscope.*
336 find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
337 cscope -b
338
339# documentation
340MAKEINFO=makeinfo
341MAKEINFOFLAGS=--no-headers --no-split --number-sections
342TEXIFLAG=$(if $(V),,--quiet)
343%.dvi: %.texi
344 $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@")
345
346%.html: %.texi
347 $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
348 " GEN $@")
349
350%.info: %.texi
351 $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@")
352
353%.pdf: %.texi
354 $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@")
355
356qemu-options.texi: $(SRC_PATH)/qemu-options.hx
357 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
358
359qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
360 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
361
362QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
363 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@")
364
365qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
366 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
367
368qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
369 $(call quiet-command, \
370 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
371 pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
372 " GEN $@")
373
374qemu-img.1: qemu-img.texi qemu-img-cmds.texi
375 $(call quiet-command, \
376 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
377 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
378 " GEN $@")
379
380fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
381 $(call quiet-command, \
382 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
383 pod2man --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
384 " GEN $@")
385
386qemu-nbd.8: qemu-nbd.texi
387 $(call quiet-command, \
388 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
389 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
390 " GEN $@")
391
392dvi: qemu-doc.dvi qemu-tech.dvi
393html: qemu-doc.html qemu-tech.html
394info: qemu-doc.info qemu-tech.info
395pdf: qemu-doc.pdf qemu-tech.pdf
396
397qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
398 qemu-img.texi qemu-nbd.texi qemu-options.texi \
399 qemu-monitor.texi qemu-img-cmds.texi
400
401VERSION ?= $(shell cat VERSION)
402FILE = qemu-$(VERSION)
403
404# tar release (use 'make -k tar' on a checkouted tree)
405tar:
406 rm -rf /tmp/$(FILE)
407 cp -r . /tmp/$(FILE)
408 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
409 rm -rf /tmp/$(FILE)
410
411# Include automatically generated dependency files
412-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d ui/*.d qapi/*.d qga/*.d)