Statistics
| Branch: | Revision:

root / Makefile @ e3193601

History | View | Annotate | Download (15.3 kB)

1
# Makefile for QEMU.
2

    
3
# Always point to the root of the build tree (needs GNU make).
4
BUILD_DIR=$(CURDIR)
5

    
6
GENERATED_HEADERS = config-host.h trace.h qemu-options.def
7
ifeq ($(TRACE_BACKEND),dtrace)
8
GENERATED_HEADERS += trace-dtrace.h
9
endif
10
GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h
11

    
12
ifneq ($(wildcard config-host.mak),)
13
# Put the all: rule here so that config-host.mak can contain dependencies.
14
all: build-all
15
include config-host.mak
16
include $(SRC_PATH)/rules.mak
17
config-host.mak: $(SRC_PATH)/configure
18
	@echo $@ is out-of-date, running configure
19
	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
20
else
21
config-host.mak:
22
	@echo "Please call configure before running make!"
23
	@exit 1
24
endif
25

    
26
# Don't try to regenerate Makefile or configure
27
# We don't generate any of them
28
Makefile: ;
29
configure: ;
30

    
31
.PHONY: all clean cscope distclean dvi html info install install-doc \
32
	pdf recurse-all speed tar tarbin test build-all
33

    
34
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
35

    
36
LIBS+=-lz $(LIBS_TOOLS)
37

    
38
ifdef BUILD_DOCS
39
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
40
else
41
DOCS=
42
endif
43

    
44
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
45
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
46
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS))
47

    
48
config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
49
	$(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@,"  GEN   $@")
50

    
51
-include $(SUBDIR_DEVICES_MAK_DEP)
52

    
53
%/config-devices.mak: default-configs/%.mak
54
	$(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, "  GEN   $@")
55
	@if test -f $@; then \
56
	  if cmp -s $@.old $@; then \
57
	    mv $@.tmp $@; \
58
	    cp -p $@ $@.old; \
59
	  else \
60
	    if test -f $@.old; then \
61
	      echo "WARNING: $@ (user modified) out of date.";\
62
	    else \
63
	      echo "WARNING: $@ out of date.";\
64
	    fi; \
65
	    echo "Run \"make defconfig\" to regenerate."; \
66
	    rm $@.tmp; \
67
	  fi; \
68
	 else \
69
	  mv $@.tmp $@; \
70
	  cp -p $@ $@.old; \
71
	 fi
72

    
73
defconfig:
74
	rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
75

    
76
-include config-all-devices.mak
77

    
78
build-all: $(DOCS) $(TOOLS) recurse-all
79

    
80
config-host.h: config-host.h-timestamp
81
config-host.h-timestamp: config-host.mak
82
qemu-options.def: $(SRC_PATH)/qemu-options.hx
83
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $@")
84

    
85
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
86

    
87
subdir-%: $(GENERATED_HEADERS)
88
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
89

    
90
ifneq ($(wildcard config-host.mak),)
91
include $(SRC_PATH)/Makefile.objs
92
endif
93

    
94
$(common-obj-y): $(GENERATED_HEADERS)
95
subdir-libcacard: $(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
96

    
97
$(filter %-softmmu,$(SUBDIR_RULES)): $(trace-obj-y) $(common-obj-y) subdir-libdis
98

    
99
$(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) $(trace-obj-y) subdir-libdis-user subdir-libuser
100

    
101
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
102
romsubdir-%:
103
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
104

    
105
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
106

    
107
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
108

    
109
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
110

    
111
QEMU_CFLAGS+=$(CURL_CFLAGS)
112

    
113
QEMU_CFLAGS+=$(GLIB_CFLAGS)
114

    
115
ui/cocoa.o: ui/cocoa.m
116

    
117
ui/sdl.o audio/sdlaudio.o ui/sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
118

    
119
ui/vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
120

    
121
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
122

    
123
version.o: $(SRC_PATH)/version.rc config-host.h
124
	$(call quiet-command,$(WINDRES) -I. -o $@ $<,"  RC    $(TARGET_DIR)$@")
125

    
126
version-obj-$(CONFIG_WIN32) += version.o
127
######################################################################
128
# Support building shared library libcacard
129

    
130
.PHONY: libcacard.la install-libcacard
131
ifeq ($(LIBTOOL),)
132
libcacard.la:
133
	@echo "libtool is missing, please install and rerun configure"; exit 1
134

    
135
install-libcacard:
136
	@echo "libtool is missing, please install and rerun configure"; exit 1
137
else
138
libcacard.la: $(GENERATED_HEADERS) $(oslib-obj-y) qemu-timer-common.o $(addsuffix .lo, $(basename $(trace-obj-y)))
139
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,)
140

    
141
install-libcacard: libcacard.la
142
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,)
143
endif
144
######################################################################
145

    
146
qemu-img.o: qemu-img-cmds.h
147
qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o cmd.o qemu-ga.o: $(GENERATED_HEADERS)
148

    
149
qemu-img$(EXESUF): qemu-img.o qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
150

    
151
qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
152

    
153
qemu-io$(EXESUF): qemu-io.o cmd.o qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
154

    
155
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
156
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $@")
157

    
158
check-qint.o check-qstring.o check-qdict.o check-qlist.o check-qfloat.o check-qjson.o test-coroutine.o: $(GENERATED_HEADERS)
159

    
160
CHECK_PROG_DEPS = $(oslib-obj-y) $(trace-obj-y) qemu-tool.o
161

    
162
check-qint: check-qint.o qint.o $(CHECK_PROG_DEPS)
163
check-qstring: check-qstring.o qstring.o $(CHECK_PROG_DEPS)
164
check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qlist.o $(CHECK_PROG_DEPS)
165
check-qlist: check-qlist.o qlist.o qint.o $(CHECK_PROG_DEPS)
166
check-qfloat: check-qfloat.o qfloat.o $(CHECK_PROG_DEPS)
167
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 error.o qerror.o qemu-error.o $(CHECK_PROG_DEPS)
168
test-coroutine: test-coroutine.o qemu-timer-common.o async.o $(coroutine-obj-y) $(CHECK_PROG_DEPS)
169

    
170
$(qapi-obj-y): $(GENERATED_HEADERS)
171
qapi-dir := qapi-generated
172
test-visitor.o test-qmp-commands.o qemu-ga$(EXESUF): QEMU_CFLAGS += -I $(qapi-dir)
173
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
174

    
175
$(qapi-dir)/test-qapi-types.c: $(qapi-dir)/test-qapi-types.h
176
$(qapi-dir)/test-qapi-types.h: $(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py
177
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py -o "$(qapi-dir)" -p "test-" < $<, "  GEN   $@")
178
$(qapi-dir)/test-qapi-visit.c: $(qapi-dir)/test-qapi-visit.h
179
$(qapi-dir)/test-qapi-visit.h: $(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py
180
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py -o "$(qapi-dir)" -p "test-" < $<, "  GEN   $@")
181
$(qapi-dir)/test-qmp-commands.h: $(qapi-dir)/test-qmp-marshal.c
182
$(qapi-dir)/test-qmp-marshal.c: $(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py
183
	    $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py -o "$(qapi-dir)" -p "test-" < $<, "  GEN   $@")
184

    
185
$(qapi-dir)/qga-qapi-types.c: $(qapi-dir)/qga-qapi-types.h
186
$(qapi-dir)/qga-qapi-types.h: $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-types.py
187
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py -o "$(qapi-dir)" -p "qga-" < $<, "  GEN   $@")
188
$(qapi-dir)/qga-qapi-visit.c: $(qapi-dir)/qga-qapi-visit.h
189
$(qapi-dir)/qga-qapi-visit.h: $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-visit.py
190
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py -o "$(qapi-dir)" -p "qga-" < $<, "  GEN   $@")
191
$(qapi-dir)/qga-qmp-commands.h: $(qapi-dir)/qga-qmp-marshal.c
192
$(qapi-dir)/qga-qmp-marshal.c: $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-commands.py
193
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py -o "$(qapi-dir)" -p "qga-" < $<, "  GEN   $@")
194

    
195
qapi-types.c: qapi-types.h
196
qapi-types.h: $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py
197
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py -o "." < $<, "  GEN   $@")
198
qapi-visit.c: qapi-visit.h
199
qapi-visit.h: $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py
200
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py -o "."  < $<, "  GEN   $@")
201
qmp-commands.h: qmp-marshal.c
202
qmp-marshal.c: $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py
203
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py -m -o "." < $<, "  GEN   $@")
204

    
205
test-visitor.o: $(addprefix $(qapi-dir)/, test-qapi-types.c test-qapi-types.h test-qapi-visit.c test-qapi-visit.h) $(qapi-obj-y)
206
test-visitor: test-visitor.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o $(qapi-obj-y) error.o osdep.o $(oslib-obj-y) qjson.o json-streamer.o json-lexer.o json-parser.o qerror.o qemu-error.o qemu-tool.o $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o
207

    
208
test-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)
209
test-qmp-commands: test-qmp-commands.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o $(qapi-obj-y) error.o osdep.o $(oslib-obj-y) qjson.o json-streamer.o json-lexer.o json-parser.o qerror.o qemu-error.o qemu-tool.o $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o $(qapi-dir)/test-qmp-marshal.o module.o
210

    
211
QGALIB_GEN=$(addprefix $(qapi-dir)/, qga-qapi-types.c qga-qapi-types.h qga-qapi-visit.c qga-qmp-marshal.c)
212
$(QGALIB_GEN): $(GENERATED_HEADERS)
213
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
214

    
215
qemu-ga$(EXESUF): qemu-ga.o $(qga-obj-y) $(qapi-obj-y) $(trace-obj-y) $(qobject-obj-y) $(version-obj-y) $(addprefix $(qapi-dir)/, qga-qapi-visit.o qga-qapi-types.o qga-qmp-marshal.o)
216

    
217
QEMULIBS=libhw32 libhw64 libuser libdis libdis-user
218

    
219
clean:
220
# avoid old build problems by removing potentially incorrect old files
221
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
222
	rm -f qemu-options.def
223
	rm -f *.o *.d *.a *.lo $(TOOLS) qemu-ga TAGS cscope.* *.pod *~ */*~
224
	rm -Rf .libs
225
	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
226
	rm -f qemu-img-cmds.h
227
	rm -f trace/*.o trace/*.d
228
	rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
229
	rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
230
	rm -f trace-dtrace.h trace-dtrace.h-timestamp
231
	rm -rf $(qapi-dir)
232
	$(MAKE) -C tests clean
233
	for d in $(ALL_SUBDIRS) $(QEMULIBS) libcacard; do \
234
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
235
	rm -f $$d/qemu-options.def; \
236
        done
237

    
238
distclean: clean
239
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
240
	rm -f config-all-devices.mak
241
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
242
	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
243
	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
244
	rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
245
	rm -f qemu-doc.vr
246
	rm -f config.log
247
	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
248
	for d in $(TARGET_DIRS) $(QEMULIBS); do \
249
	rm -rf $$d || exit 1 ; \
250
        done
251

    
252
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
253
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
254
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
255

    
256
ifdef INSTALL_BLOBS
257
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin \
258
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
259
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
260
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
261
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
262
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
263
mpc8544ds.dtb \
264
multiboot.bin linuxboot.bin \
265
s390-zipl.rom \
266
spapr-rtas.bin slof.bin
267
else
268
BLOBS=
269
endif
270

    
271
install-doc: $(DOCS)
272
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
273
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
274
ifdef CONFIG_POSIX
275
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
276
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
277
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
278
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
279
endif
280

    
281
install-sysconfig:
282
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
283
	$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
284

    
285
install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
286
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
287
ifneq ($(TOOLS),)
288
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
289
endif
290
ifneq ($(BLOBS),)
291
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
292
	set -e; for x in $(BLOBS); do \
293
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
294
	done
295
endif
296
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
297
	set -e; for x in $(KEYMAPS); do \
298
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
299
	done
300
	for d in $(TARGET_DIRS); do \
301
	$(MAKE) -C $$d $@ || exit 1 ; \
302
        done
303

    
304
# various test targets
305
test speed: all
306
	$(MAKE) -C tests $@
307

    
308
.PHONY: TAGS
309
TAGS:
310
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
311

    
312
cscope:
313
	rm -f ./cscope.*
314
	find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
315
	cscope -b
316

    
317
# documentation
318
MAKEINFO=makeinfo
319
MAKEINFOFLAGS=--no-headers --no-split --number-sections
320
TEXIFLAG=$(if $(V),,--quiet)
321
%.dvi: %.texi
322
	$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")
323

    
324
%.html: %.texi
325
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
326
	"  GEN   $@")
327

    
328
%.info: %.texi
329
	$(call quiet-command,$(MAKEINFO) $< -o $@,"  GEN   $@")
330

    
331
%.pdf: %.texi
332
	$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"  GEN   $@")
333

    
334
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
335
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
336

    
337
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
338
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
339

    
340
QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
341
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@,"  GEN   $@")
342

    
343
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
344
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
345

    
346
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
347
	$(call quiet-command, \
348
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
349
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
350
	  "  GEN   $@")
351

    
352
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
353
	$(call quiet-command, \
354
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
355
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
356
	  "  GEN   $@")
357

    
358
qemu-nbd.8: qemu-nbd.texi
359
	$(call quiet-command, \
360
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
361
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
362
	  "  GEN   $@")
363

    
364
dvi: qemu-doc.dvi qemu-tech.dvi
365
html: qemu-doc.html qemu-tech.html
366
info: qemu-doc.info qemu-tech.info
367
pdf: qemu-doc.pdf qemu-tech.pdf
368

    
369
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
370
	qemu-img.texi qemu-nbd.texi qemu-options.texi \
371
	qemu-monitor.texi qemu-img-cmds.texi
372

    
373
VERSION ?= $(shell cat VERSION)
374
FILE = qemu-$(VERSION)
375

    
376
# tar release (use 'make -k tar' on a checkouted tree)
377
tar:
378
	rm -rf /tmp/$(FILE)
379
	cp -r . /tmp/$(FILE)
380
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
381
	rm -rf /tmp/$(FILE)
382

    
383
# Include automatically generated dependency files
384
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d ui/*.d qapi/*.d qga/*.d)