Makefile 14.0 KB
Newer Older
1 2
# Makefile for QEMU.

S
Stefan Weil 已提交
3 4
# Always point to the root of the build tree (needs GNU make).
BUILD_DIR=$(CURDIR)
5

6
GENERATED_HEADERS = config-host.h trace.h qemu-options.def
7 8 9
ifeq ($(TRACE_BACKEND),dtrace)
GENERATED_HEADERS += trace-dtrace.h
endif
10
GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h
11
GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c
J
Juan Quintela 已提交
12

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

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

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

P
Paolo Bonzini 已提交
35
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
P
pbrook 已提交
36

J
Juan Quintela 已提交
37
LIBS+=-lz $(LIBS_TOOLS)
38

39 40
HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)

41
ifdef BUILD_DOCS
42
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
43
ifdef CONFIG_VIRTFS
44
DOCS+=fsdev/virtfs-proxy-helper.1
45
endif
46 47 48
else
DOCS=
endif
B
bellard 已提交
49

50
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
51
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
P
Paul Brook 已提交
52
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS))
53 54

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

P
Paul Brook 已提交
57 58
-include $(SUBDIR_DEVICES_MAK_DEP)

59
%/config-devices.mak: default-configs/%.mak
B
Blue Swirl 已提交
60
	$(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, "  GEN   $@")
61
	@if test -f $@; then \
62
	  if cmp -s $@.old $@; then \
P
Paul Brook 已提交
63 64
	    mv $@.tmp $@; \
	    cp -p $@ $@.old; \
65 66 67 68 69 70 71 72 73
	  else \
	    if test -f $@.old; then \
	      echo "WARNING: $@ (user modified) out of date.";\
	    else \
	      echo "WARNING: $@ out of date.";\
	    fi; \
	    echo "Run \"make defconfig\" to regenerate."; \
	    rm $@.tmp; \
	  fi; \
74
	 else \
75 76
	  mv $@.tmp $@; \
	  cp -p $@ $@.old; \
77 78 79 80 81
	 fi

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

82
-include config-all-devices.mak
83

84
build-all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all
P
pbrook 已提交
85

86 87
config-host.h: config-host.h-timestamp
config-host.h-timestamp: config-host.mak
B
Blue Swirl 已提交
88
qemu-options.def: $(SRC_PATH)/qemu-options.hx
B
Blue Swirl 已提交
89
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $@")
90

91 92
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))

J
Juan Quintela 已提交
93
subdir-%: $(GENERATED_HEADERS)
P
Paul Brook 已提交
94
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
P
pbrook 已提交
95

96
ifneq ($(wildcard config-host.mak),)
97
include $(SRC_PATH)/Makefile.objs
98
endif
99 100

$(common-obj-y): $(GENERATED_HEADERS)
A
Anthony Liguori 已提交
101
subdir-libcacard: $(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
102

103
$(filter %-softmmu,$(SUBDIR_RULES)): $(trace-obj-y) $(common-obj-y) subdir-libdis
P
Paul Brook 已提交
104

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

P
Paul Brook 已提交
107 108 109 110 111 112 113
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
romsubdir-%:
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)

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

recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
B
bellard 已提交
114

115
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
116

J
Juan Quintela 已提交
117
QEMU_CFLAGS+=$(CURL_CFLAGS)
A
Alexander Graf 已提交
118

119 120
QEMU_CFLAGS += -I$(SRC_PATH)/include

121
ui/cocoa.o: ui/cocoa.m
B
bellard 已提交
122

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

125
ui/vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
B
balrog 已提交
126

J
Juan Quintela 已提交
127
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
B
bellard 已提交
128

B
Blue Swirl 已提交
129
version.o: $(SRC_PATH)/version.rc config-host.h
130 131 132
	$(call quiet-command,$(WINDRES) -I. -o $@ $<,"  RC    $(TARGET_DIR)$@")

version-obj-$(CONFIG_WIN32) += version.o
B
bellard 已提交
133
######################################################################
A
Alon Levy 已提交
134 135 136 137 138 139 140 141 142 143
# Support building shared library libcacard

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

install-libcacard:
	@echo "libtool is missing, please install and rerun configure"; exit 1
else
144
libcacard.la: $(GENERATED_HEADERS) $(oslib-obj-y) qemu-timer-common.o $(addsuffix .lo, $(basename $(trace-obj-y)))
A
Alon Levy 已提交
145 146 147 148 149 150
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,)

install-libcacard: libcacard.la
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,)
endif
######################################################################
B
bellard 已提交
151

J
Juan Quintela 已提交
152
qemu-img.o: qemu-img-cmds.h
M
Michael Roth 已提交
153
qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o cmd.o qemu-ga.o: $(GENERATED_HEADERS)
154

155 156 157
tools-obj-y = $(oslib-obj-y) $(trace-obj-y) qemu-tool.o qemu-timer.o \
	qemu-timer-common.o main-loop.o notify.o iohandler.o cutils.o async.o
tools-obj-$(CONFIG_POSIX) += compatfd.o
158

159 160 161
qemu-img$(EXESUF): qemu-img.o $(tools-obj-y) $(block-obj-y)
qemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y) $(block-obj-y)
qemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y) $(block-obj-y)
162

163
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o
164
qemu-bridge-helper.o: $(GENERATED_HEADERS)
165

166
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y)
167 168
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap

169
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
B
Blue Swirl 已提交
170
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $@")
171

172
$(qapi-obj-y): $(GENERATED_HEADERS)
173
qapi-dir := $(BUILD_DIR)/qapi-generated
174
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
175

A
Avi Kivity 已提交
176
gen-out-type = $(subst .,-,$(suffix $@))
177

178
ifneq ($(wildcard config-host.mak),)
179
include $(SRC_PATH)/tests/Makefile
180
endif
181

182 183
$(qapi-dir)/qga-qapi-types.c $(qapi-dir)/qga-qapi-types.h :\
$(SRC_PATH)/qapi-schema-guest.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 "qga-" < $<, "  GEN   $@")
185 186
$(qapi-dir)/qga-qapi-visit.c $(qapi-dir)/qga-qapi-visit.h :\
$(SRC_PATH)/qapi-schema-guest.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 "qga-" < $<, "  GEN   $@")
188 189
$(qapi-dir)/qga-qmp-commands.h $(qapi-dir)/qga-qmp-marshal.c :\
$(SRC_PATH)/qapi-schema-guest.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 "qga-" < $<, "  GEN   $@")
191

192 193
qapi-types.c qapi-types.h :\
$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py
194
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, "  GEN   $@")
195 196
qapi-visit.c qapi-visit.h :\
$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py
197
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "."  < $<, "  GEN   $@")
198 199
qmp-commands.h qmp-marshal.c :\
$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py
200
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, "  GEN   $@")
201

202 203 204 205
QGALIB_OBJ=$(addprefix $(qapi-dir)/, qga-qapi-types.o qga-qapi-visit.o qga-qmp-marshal.o)
QGALIB_GEN=$(addprefix $(qapi-dir)/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
$(QGALIB_OBJ): $(QGALIB_GEN) $(GENERATED_HEADERS)
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN) $(GENERATED_HEADERS)
206

207
qemu-ga$(EXESUF): qemu-ga.o $(qga-obj-y) $(tools-obj-y) $(qapi-obj-y) $(qobject-obj-y) $(version-obj-y) $(QGALIB_OBJ)
M
Michael Roth 已提交
208

R
Robert Relyea 已提交
209 210
QEMULIBS=libhw32 libhw64 libuser libdis libdis-user

211
clean:
212
# avoid old build problems by removing potentially incorrect old files
213
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
214
	rm -f qemu-options.def
215
	rm -f *.o *.d *.a *.lo $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
A
Alon Levy 已提交
216
	rm -Rf .libs
M
Michael Roth 已提交
217
	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
B
Blue Swirl 已提交
218
	rm -f qemu-img-cmds.h
219
	rm -f trace/*.o trace/*.d
220
	rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
221 222
	rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
	rm -f trace-dtrace.h trace-dtrace.h-timestamp
223
	rm -f $(GENERATED_HEADERS)
224
	rm -f $(GENERATED_SOURCES)
225
	rm -rf $(qapi-dir)
A
Anthony Liguori 已提交
226
	$(MAKE) -C tests/tcg clean
R
Robert Relyea 已提交
227
	for d in $(ALL_SUBDIRS) $(QEMULIBS) libcacard; do \
M
Magnus Damm 已提交
228
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
229
	rm -f $$d/qemu-options.def; \
B
bellard 已提交
230
        done
231

B
bellard 已提交
232
distclean: clean
M
Magnus Damm 已提交
233
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
234
	rm -f config-all-devices.mak
M
Magnus Damm 已提交
235
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
B
Brad Hards 已提交
236 237 238 239
	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
	rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
	rm -f qemu-doc.vr
240
	rm -f config.log
241
	rm -f linux-headers/asm
242
	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
R
Robert Relyea 已提交
243
	for d in $(TARGET_DIRS) $(QEMULIBS); do \
B
bellard 已提交
244
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
245
        done
B
bellard 已提交
246

B
bellard 已提交
247 248 249 250
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr

T
ths 已提交
251
ifdef INSTALL_BLOBS
P
Paolo Bonzini 已提交
252
BLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
G
Gerd Hoffmann 已提交
253
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
254
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
255 256
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
257
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
A
Alexander Graf 已提交
258
mpc8544ds.dtb \
J
Jan Kiszka 已提交
259
multiboot.bin linuxboot.bin kvmvapic.bin \
260
s390-zipl.rom \
261 262
spapr-rtas.bin slof.bin \
palcode-clipper
T
ths 已提交
263 264 265 266
else
BLOBS=
endif

267
install-doc: $(DOCS)
268 269
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
270
ifdef CONFIG_POSIX
271 272 273 274
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
275
endif
276 277 278 279
ifdef CONFIG_VIRTFS
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
endif
280
install-sysconfig:
281 282
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
	$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
283 284

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

B
bellard 已提交
307
# various test targets
B
bellard 已提交
308
test speed: all
A
Anthony Liguori 已提交
309
	$(MAKE) -C tests/tcg $@
310

A
Alexandre Bique 已提交
311
.PHONY: TAGS
312
TAGS:
A
Alexandre Bique 已提交
313
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
314

B
bellard 已提交
315 316
cscope:
	rm -f ./cscope.*
317
	find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
B
bellard 已提交
318 319
	cscope -b

B
bellard 已提交
320
# documentation
321 322
MAKEINFO=makeinfo
MAKEINFOFLAGS=--no-headers --no-split --number-sections
323 324 325 326
TEXIFLAG=$(if $(V),,--quiet)
%.dvi: %.texi
	$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")

B
bellard 已提交
327
%.html: %.texi
328 329
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
	"  GEN   $@")
B
bellard 已提交
330

B
bellard 已提交
331
%.info: %.texi
332
	$(call quiet-command,$(MAKEINFO) $< -o $@,"  GEN   $@")
B
bellard 已提交
333

334 335
%.pdf: %.texi
	$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"  GEN   $@")
336 337

qemu-options.texi: $(SRC_PATH)/qemu-options.hx
B
Blue Swirl 已提交
338
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
B
bellard 已提交
339

340
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
B
Blue Swirl 已提交
341
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
342

343
QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
B
Blue Swirl 已提交
344
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@,"  GEN   $@")
345

346
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
B
Blue Swirl 已提交
347
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN   $@")
348

349
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
350
	$(call quiet-command, \
B
Blue Swirl 已提交
351
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
352 353
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
	  "  GEN   $@")
354

355
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
356
	$(call quiet-command, \
B
Blue Swirl 已提交
357
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
358 359
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
	  "  GEN   $@")
B
bellard 已提交
360

361 362 363 364 365 366
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
	$(call quiet-command, \
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
	  pod2man --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
	  "  GEN   $@")

B
bellard 已提交
367
qemu-nbd.8: qemu-nbd.texi
368
	$(call quiet-command, \
B
Blue Swirl 已提交
369
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
370 371
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
	  "  GEN   $@")
B
bellard 已提交
372

373 374
dvi: qemu-doc.dvi qemu-tech.dvi
html: qemu-doc.html qemu-tech.html
375 376
info: qemu-doc.info qemu-tech.info
pdf: qemu-doc.pdf qemu-tech.pdf
377

378 379 380
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
	qemu-img.texi qemu-nbd.texi qemu-options.texi \
	qemu-monitor.texi qemu-img-cmds.texi
381

382 383
VERSION ?= $(shell cat VERSION)
FILE = qemu-$(VERSION)
B
bellard 已提交
384

385
# tar release (use 'make -k tar' on a checkouted tree)
B
bellard 已提交
386 387
tar:
	rm -rf /tmp/$(FILE)
388
	cp -r . /tmp/$(FILE)
389
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
B
bellard 已提交
390 391
	rm -rf /tmp/$(FILE)

B
bellard 已提交
392
# Include automatically generated dependency files
M
Michael Roth 已提交
393
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d ui/*.d qapi/*.d qga/*.d)