Makefile 14.7 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
J
Juan Quintela 已提交
11

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

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

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

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

J
Juan Quintela 已提交
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 41 42
else
DOCS=
endif
B
bellard 已提交
43

44
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
45
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
P
Paul Brook 已提交
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

P
Paul Brook 已提交
51 52
-include $(SUBDIR_DEVICES_MAK_DEP)

53
%/config-devices.mak: default-configs/%.mak
B
Blue Swirl 已提交
54
	$(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, "  GEN   $@")
55
	@if test -f $@; then \
56
	  if cmp -s $@.old $@; then \
P
Paul Brook 已提交
57 58
	    mv $@.tmp $@; \
	    cp -p $@ $@.old; \
59 60 61 62 63 64 65 66 67
	  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; \
68
	 else \
69 70
	  mv $@.tmp $@; \
	  cp -p $@ $@.old; \
71 72 73 74 75
	 fi

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

76
-include config-all-devices.mak
77

J
Juan Quintela 已提交
78
build-all: $(DOCS) $(TOOLS) recurse-all
P
pbrook 已提交
79

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

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

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

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

$(common-obj-y): $(GENERATED_HEADERS)
A
Anthony Liguori 已提交
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
P
Paul Brook 已提交
98

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

P
Paul Brook 已提交
101 102 103 104 105 106 107
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 已提交
108

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

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

113 114
QEMU_CFLAGS+=$(GLIB_CFLAGS)

115
ui/cocoa.o: ui/cocoa.m
B
bellard 已提交
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)
B
balrog 已提交
120

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

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

version-obj-$(CONFIG_WIN32) += version.o
B
bellard 已提交
127
######################################################################
A
Alon Levy 已提交
128 129 130 131 132 133 134 135 136 137
# 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
138
libcacard.la: $(GENERATED_HEADERS) $(oslib-obj-y) qemu-timer-common.o $(addsuffix .lo, $(basename $(trace-obj-y)))
A
Alon Levy 已提交
139 140 141 142 143 144
	$(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 已提交
145

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

149 150
tools-obj-y = qemu-tool.o $(oslib-obj-y) $(trace-obj-y) \
	qemu-timer-common.o cutils.o
151

152 153 154
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)
155

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

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

161 162 163 164 165 166 167
check-qint: check-qint.o qint.o $(tools-obj-y)
check-qstring: check-qstring.o qstring.o $(tools-obj-y)
check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qlist.o $(tools-obj-y)
check-qlist: check-qlist.o qlist.o qint.o $(tools-obj-y)
check-qfloat: check-qfloat.o qfloat.o $(tools-obj-y)
check-qjson: check-qjson.o $(qobject-obj-y) $(tools-obj-y)
test-coroutine: test-coroutine.o qemu-timer-common.o async.o $(coroutine-obj-y) $(tools-obj-y)
L
Luiz Capitulino 已提交
168

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

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

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

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

204
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)
205
test-visitor: test-visitor.o $(qobject-obj-y) $(qapi-obj-y) $(tools-obj-y) $(qapi-dir)/test-qapi-visit.o $(qapi-dir)/test-qapi-types.o
206

207
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)
208
test-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
209

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

214
qemu-ga$(EXESUF): qemu-ga.o $(qga-obj-y) $(qapi-obj-y) $(tools-obj-y) $(qobject-obj-y) $(version-obj-y) $(addprefix $(qapi-dir)/, qga-qapi-visit.o qga-qapi-types.o qga-qmp-marshal.o)
M
Michael Roth 已提交
215

R
Robert Relyea 已提交
216 217
QEMULIBS=libhw32 libhw64 libuser libdis libdis-user

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

B
bellard 已提交
237
distclean: clean
M
Magnus Damm 已提交
238
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
239
	rm -f config-all-devices.mak
M
Magnus Damm 已提交
240
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
B
Brad Hards 已提交
241 242 243 244
	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
245
	rm -f config.log
246
	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 已提交
247
	for d in $(TARGET_DIRS) $(QEMULIBS); do \
B
bellard 已提交
248
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
249
        done
B
bellard 已提交
250

B
bellard 已提交
251 252 253 254
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 已提交
255
ifdef INSTALL_BLOBS
256
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin \
G
Gerd Hoffmann 已提交
257
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
258
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
259 260
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
261
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
A
Alexander Graf 已提交
262
mpc8544ds.dtb \
A
Alexander Graf 已提交
263
multiboot.bin linuxboot.bin \
264
s390-zipl.rom \
265 266
spapr-rtas.bin slof.bin \
palcode-clipper
T
ths 已提交
267 268 269 270
else
BLOBS=
endif

271
install-doc: $(DOCS)
272 273
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
274
ifdef CONFIG_POSIX
275 276 277 278
	$(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"
279 280
endif

281
install-sysconfig:
282 283
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
	$(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
T
ths 已提交
290
ifneq ($(BLOBS),)
291
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
T
ths 已提交
292
	set -e; for x in $(BLOBS); do \
293
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
P
pbrook 已提交
294
	done
T
ths 已提交
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"; \
P
pbrook 已提交
299
	done
B
bellard 已提交
300
	for d in $(TARGET_DIRS); do \
B
bellard 已提交
301
	$(MAKE) -C $$d $@ || exit 1 ; \
B
bellard 已提交
302
        done
B
bellard 已提交
303

B
bellard 已提交
304
# various test targets
B
bellard 已提交
305
test speed: all
B
bellard 已提交
306
	$(MAKE) -C tests $@
307

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

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

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

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

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

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

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

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

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

343
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
B
Blue Swirl 已提交
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, \
B
Blue Swirl 已提交
348
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
349 350
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
	  "  GEN   $@")
351

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

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

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

369 370 371
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
372

373 374
VERSION ?= $(shell cat VERSION)
FILE = qemu-$(VERSION)
B
bellard 已提交
375

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

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