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

3
GENERATED_HEADERS = config-host.h trace.h qemu-options.def
4 5 6
ifeq ($(TRACE_BACKEND),dtrace)
GENERATED_HEADERS += trace-dtrace.h
endif
J
Juan Quintela 已提交
7

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

22 23 24 25 26
# Don't try to regenerate Makefile or configure
# We don't generate any of them
Makefile: ;
configure: ;

27
.PHONY: all clean cscope distclean dvi html info install install-doc \
28
	pdf recurse-all speed tar tarbin test build-all
29

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

J
Juan Quintela 已提交
32
LIBS+=-lz $(LIBS_TOOLS)
33

34
ifdef BUILD_DOCS
35
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
36 37 38
else
DOCS=
endif
B
bellard 已提交
39

40
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
41
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
P
Paul Brook 已提交
42
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS))
43 44

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

P
Paul Brook 已提交
47 48
-include $(SUBDIR_DEVICES_MAK_DEP)

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

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

72
-include config-all-devices.mak
73

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

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

81 82
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))

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

86
ifneq ($(wildcard config-host.mak),)
87
include $(SRC_PATH)/Makefile.objs
88
endif
89 90

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

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

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

P
Paul Brook 已提交
97 98 99 100 101 102 103
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 已提交
104

105
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
106

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

109 110
QEMU_CFLAGS+=$(GLIB_CFLAGS)

111
ui/cocoa.o: ui/cocoa.m
B
bellard 已提交
112

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

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

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

119 120 121 122
version.o: $(SRC_PATH)/version.rc config-host.mak
	$(call quiet-command,$(WINDRES) -I. -o $@ $<,"  RC    $(TARGET_DIR)$@")

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

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

145
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
146

147
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
148

149
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
150

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

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

156
CHECK_PROG_DEPS = $(oslib-obj-y) $(trace-obj-y) qemu-tool.o
157 158 159 160 161 162

check-qint: check-qint.o qint.o $(CHECK_PROG_DEPS)
check-qstring: check-qstring.o qstring.o $(CHECK_PROG_DEPS)
check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qlist.o $(CHECK_PROG_DEPS)
check-qlist: check-qlist.o qlist.o qint.o $(CHECK_PROG_DEPS)
check-qfloat: check-qfloat.o qfloat.o $(CHECK_PROG_DEPS)
163
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)
164
test-coroutine: test-coroutine.o qemu-timer-common.o async.o $(coroutine-obj-y) $(CHECK_PROG_DEPS)
L
Luiz Capitulino 已提交
165

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

$(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 已提交
173
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py -o "$(qapi-dir)" -p "test-" < $<, "  GEN   $@")
174 175
$(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 已提交
176
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py -o "$(qapi-dir)" -p "test-" < $<, "  GEN   $@")
177 178
$(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 已提交
179
	    $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py -o "$(qapi-dir)" -p "test-" < $<, "  GEN   $@")
180

181 182
$(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 已提交
183
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py -o "$(qapi-dir)" -p "qga-" < $<, "  GEN   $@")
184 185
$(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 已提交
186
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py -o "$(qapi-dir)" -p "qga-" < $<, "  GEN   $@")
187
$(qapi-dir)/qga-qmp-marshal.c: $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-commands.py
B
Blue Swirl 已提交
188
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py -o "$(qapi-dir)" -p "qga-" < $<, "  GEN   $@")
189

190
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)
191
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
192

193
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)
194
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
195

196 197
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)
198 199 200
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)

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)
M
Michael Roth 已提交
201

R
Robert Relyea 已提交
202 203
QEMULIBS=libhw32 libhw64 libuser libdis libdis-user

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

B
bellard 已提交
222
distclean: clean
M
Magnus Damm 已提交
223
	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
224
	rm -f config-all-devices.mak
M
Magnus Damm 已提交
225
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
B
Brad Hards 已提交
226 227 228 229
	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
230
	rm -f config.log
231
	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 已提交
232
	for d in $(TARGET_DIRS) $(QEMULIBS); do \
B
bellard 已提交
233
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
234
        done
B
bellard 已提交
235

B
bellard 已提交
236 237 238 239
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 已提交
240
ifdef INSTALL_BLOBS
241
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin \
G
Gerd Hoffmann 已提交
242
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
243
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
244 245
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
246
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
A
Alexander Graf 已提交
247
mpc8544ds.dtb \
A
Alexander Graf 已提交
248
multiboot.bin linuxboot.bin \
249
s390-zipl.rom \
250
spapr-rtas.bin slof.bin
T
ths 已提交
251 252 253 254
else
BLOBS=
endif

255
install-doc: $(DOCS)
256 257
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
258
ifdef CONFIG_POSIX
259 260 261 262
	$(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"
263 264
endif

265
install-sysconfig:
266 267
	$(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
	$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
268 269

install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
270
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
271
ifneq ($(TOOLS),)
272
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
273
endif
T
ths 已提交
274
ifneq ($(BLOBS),)
275
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
T
ths 已提交
276
	set -e; for x in $(BLOBS); do \
277
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
P
pbrook 已提交
278
	done
T
ths 已提交
279
endif
280
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
281
	set -e; for x in $(KEYMAPS); do \
282
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
P
pbrook 已提交
283
	done
B
bellard 已提交
284
	for d in $(TARGET_DIRS); do \
B
bellard 已提交
285
	$(MAKE) -C $$d $@ || exit 1 ; \
B
bellard 已提交
286
        done
B
bellard 已提交
287

B
bellard 已提交
288
# various test targets
B
bellard 已提交
289
test speed: all
B
bellard 已提交
290
	$(MAKE) -C tests $@
291

A
Alexandre Bique 已提交
292
.PHONY: TAGS
293
TAGS:
A
Alexandre Bique 已提交
294
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
295

B
bellard 已提交
296 297
cscope:
	rm -f ./cscope.*
298
	find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
B
bellard 已提交
299 300
	cscope -b

B
bellard 已提交
301
# documentation
302 303
MAKEINFO=makeinfo
MAKEINFOFLAGS=--no-headers --no-split --number-sections
304 305 306 307
TEXIFLAG=$(if $(V),,--quiet)
%.dvi: %.texi
	$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"  GEN   $@")

B
bellard 已提交
308
%.html: %.texi
309 310
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
	"  GEN   $@")
B
bellard 已提交
311

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

315 316
%.pdf: %.texi
	$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"  GEN   $@")
317 318

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

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

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

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

330
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
331
	$(call quiet-command, \
B
Blue Swirl 已提交
332
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
333 334
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
	  "  GEN   $@")
335

336
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
337
	$(call quiet-command, \
B
Blue Swirl 已提交
338
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
339 340
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
	  "  GEN   $@")
B
bellard 已提交
341

B
bellard 已提交
342
qemu-nbd.8: qemu-nbd.texi
343
	$(call quiet-command, \
B
Blue Swirl 已提交
344
	  perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
345 346
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
	  "  GEN   $@")
B
bellard 已提交
347

348 349
dvi: qemu-doc.dvi qemu-tech.dvi
html: qemu-doc.html qemu-tech.html
350 351
info: qemu-doc.info qemu-tech.info
pdf: qemu-doc.pdf qemu-tech.pdf
352

353 354 355
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
356

357 358
VERSION ?= $(shell cat VERSION)
FILE = qemu-$(VERSION)
B
bellard 已提交
359

360
# tar release (use 'make -k tar' on a checkouted tree)
B
bellard 已提交
361 362
tar:
	rm -rf /tmp/$(FILE)
363
	cp -r . /tmp/$(FILE)
364
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
B
bellard 已提交
365 366
	rm -rf /tmp/$(FILE)

S
Stuart Brady 已提交
367 368 369 370 371 372 373 374 375 376 377
SYSTEM_TARGETS=$(filter %-softmmu,$(TARGET_DIRS))
SYSTEM_PROGS=$(patsubst qemu-system-i386,qemu, \
             $(patsubst %-softmmu,qemu-system-%, \
             $(SYSTEM_TARGETS)))

USER_TARGETS=$(filter %-user,$(TARGET_DIRS))
USER_PROGS=$(patsubst %-bsd-user,qemu-%, \
           $(patsubst %-darwin-user,qemu-%, \
           $(patsubst %-linux-user,qemu-%, \
           $(USER_TARGETS))))

B
bellard 已提交
378
# generate a binary distribution
379
tarbin:
380
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
S
Stuart Brady 已提交
381 382
	$(patsubst %,$(bindir)/%, $(SYSTEM_PROGS)) \
	$(patsubst %,$(bindir)/%, $(USER_PROGS)) \
383 384
	$(bindir)/qemu-img \
	$(bindir)/qemu-nbd \
B
bellard 已提交
385 386
	$(datadir)/bios.bin \
	$(datadir)/vgabios.bin \
B
bellard 已提交
387
	$(datadir)/vgabios-cirrus.bin \
B
bellard 已提交
388
	$(datadir)/ppc_rom.bin \
389
	$(datadir)/openbios-sparc32 \
390
	$(datadir)/openbios-sparc64 \
A
aurel32 已提交
391
	$(datadir)/openbios-ppc \
392 393 394 395 396 397
	$(datadir)/pxe-e1000.rom \
	$(datadir)/pxe-eepro100.rom \
	$(datadir)/pxe-ne2k_pci.rom \
	$(datadir)/pxe-pcnet.rom \
	$(datadir)/pxe-rtl8139.rom \
	$(datadir)/pxe-virtio.rom \
B
bellard 已提交
398 399
	$(docdir)/qemu-doc.html \
	$(docdir)/qemu-tech.html \
400 401
	$(mandir)/man1/qemu.1 \
	$(mandir)/man1/qemu-img.1 \
B
bellard 已提交
402
	$(mandir)/man8/qemu-nbd.8
403

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