]>
Commit | Line | Data |
---|---|---|
0cb3fb1e PB |
1 | # Makefile for QEMU. |
2 | ||
f527c579 | 3 | # This needs to be defined before rules.mak |
a992fe3d | 4 | GENERATED_HEADERS = config-host.h |
f527c579 | 5 | |
55d7e8f6 | 6 | ifneq ($(wildcard config-host.mak),) |
1ad2134f PB |
7 | # Put the all: rule here so that config-host.mak can contain dependencies. |
8 | all: build-all | |
ad064840 | 9 | include config-host.mak |
17759187 | 10 | include $(SRC_PATH)/rules.mak |
e5efe7f5 JQ |
11 | config-host.mak: configure |
12 | @echo $@ is out-of-date, running configure | |
13 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh | |
55d7e8f6 AJ |
14 | else |
15 | config-host.mak: | |
16 | @echo "Please call configure before running make!" | |
17 | @exit 1 | |
18 | endif | |
766a487a | 19 | |
d9ace8b3 JQ |
20 | # Don't try to regenerate Makefile or configure |
21 | # We don't generate any of them | |
22 | Makefile: ; | |
23 | configure: ; | |
24 | ||
818220f5 | 25 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
9c927650 | 26 | recurse-all speed tar tarbin test build-all |
0cb3fb1e | 27 | |
8c462f8f PB |
28 | VPATH=$(SRC_PATH):$(SRC_PATH)/hw |
29 | ||
3e2e0e6b | 30 | LIBS+=-lz $(LIBS_TOOLS) |
67c0f08d | 31 | |
cc8ae6de | 32 | ifdef BUILD_DOCS |
7a5ca864 | 33 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
cc8ae6de PB |
34 | else |
35 | DOCS= | |
36 | endif | |
aa05ae6f | 37 | |
1215c6e7 | 38 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) |
1f3d3c8f JQ |
39 | SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) |
40 | ||
41 | config-all-devices.mak: $(SUBDIR_DEVICES_MAK) | |
01d86a85 | 42 | $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@") |
1f3d3c8f | 43 | |
a992fe3d PB |
44 | %/config-devices.mak: default-configs/%.mak |
45 | $(call quiet-command,cat $< > $@.tmp, " GEN $@") | |
46 | @if test -f $@ ; then \ | |
47 | echo "WARNING: $@ out of date." ;\ | |
63e86b2e | 48 | echo "Run \"make defconfig\" to regenerate." ; \ |
a992fe3d PB |
49 | rm $@.tmp ; \ |
50 | else \ | |
51 | mv $@.tmp $@ ; \ | |
52 | fi | |
53 | ||
54 | defconfig: | |
55 | rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) | |
56 | ||
1f3d3c8f | 57 | -include config-all-devices.mak |
1215c6e7 | 58 | |
f527c579 | 59 | build-all: $(DOCS) $(TOOLS) recurse-all |
b9dea4fb | 60 | |
1215c6e7 JQ |
61 | config-host.h: config-host.h-timestamp |
62 | config-host.h-timestamp: config-host.mak | |
63 | ||
cec7d0b6 PB |
64 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
65 | ||
f527c579 | 66 | subdir-%: $(GENERATED_HEADERS) |
0087375e | 67 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
4aa42531 | 68 | |
cec7d0b6 | 69 | $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a |
c05ac895 | 70 | |
add16157 BS |
71 | $(filter %-user,$(SUBDIR_RULES)): libuser.a |
72 | ||
040093b1 | 73 | libuser.a: $(GENERATED_HEADERS) |
6a8a2803 | 74 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="libuser/" all,) |
add16157 | 75 | |
c05ac895 PB |
76 | ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) |
77 | romsubdir-%: | |
78 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) | |
79 | ||
80 | ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) | |
81 | ||
82 | recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) | |
83f64091 | 83 | |
61a606da LC |
84 | ####################################################################### |
85 | # QObject | |
86 | qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o | |
87 | qobject-obj-y += qjson.o json-lexer.o json-streamer.o json-parser.o | |
88 | qobject-obj-y += qerror.o | |
89 | ||
faf07963 | 90 | ####################################################################### |
319f08ea | 91 | # block-obj-y is code used by both qemu system emulation and qemu-img |
faf07963 | 92 | |
319f08ea | 93 | block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o |
a25a0ef5 | 94 | block-obj-y += nbd.o block.o aio.o aes.o osdep.o |
4dd75c70 | 95 | block-obj-$(CONFIG_POSIX) += posix-aio-compat.o |
5c6c3a6c | 96 | block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o |
1a65ba76 | 97 | |
9aebd98a | 98 | block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o |
1a65ba76 JQ |
99 | block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o |
100 | block-nested-y += parallels.o nbd.o | |
eeb6d45b JQ |
101 | block-nested-$(CONFIG_WIN32) += raw-win32.o |
102 | block-nested-$(CONFIG_POSIX) += raw-posix.o | |
1a65ba76 JQ |
103 | block-nested-$(CONFIG_CURL) += curl.o |
104 | ||
105 | block-obj-y += $(addprefix block/, $(block-nested-y)) | |
769ce76d | 106 | |
e1144d00 | 107 | net-obj-y = net.o |
f1d078c3 | 108 | net-nested-y = queue.o checksum.o util.o |
42281ac9 | 109 | net-nested-y += socket.o |
1abecf77 | 110 | net-nested-y += dump.o |
5281d757 | 111 | net-nested-$(CONFIG_POSIX) += tap.o |
c28b1c10 | 112 | net-nested-$(CONFIG_LINUX) += tap-linux.o |
33ad161a | 113 | net-nested-$(CONFIG_WIN32) += tap-win32.o |
e7e92325 | 114 | net-nested-$(CONFIG_BSD) += tap-bsd.o |
966ea5ec | 115 | net-nested-$(CONFIG_SOLARIS) += tap-solaris.o |
88b3ec02 | 116 | net-nested-$(CONFIG_AIX) += tap-aix.o |
68ac40d2 | 117 | net-nested-$(CONFIG_SLIRP) += slirp.o |
5c361cc3 | 118 | net-nested-$(CONFIG_VDE) += vde.o |
e1144d00 MM |
119 | net-obj-y += $(addprefix net/, $(net-nested-y)) |
120 | ||
4fb240a4 | 121 | ###################################################################### |
2e2ea909 | 122 | # libqemu_common.a: Target independent part of system emulation. The |
4fb240a4 FB |
123 | # long term path is to suppress *all* target specific code in case of |
124 | # system emulation, i.e. a single QEMU executable should support all | |
125 | # CPUs and machines. | |
47cea614 | 126 | |
6ef859b3 | 127 | obj-y = $(block-obj-y) |
e1144d00 | 128 | obj-y += $(net-obj-y) |
61a606da | 129 | obj-y += $(qobject-obj-y) |
34005a00 | 130 | obj-y += readline.o console.o |
6ef859b3 | 131 | |
c2b023b6 | 132 | obj-y += tcg-runtime.o host-utils.o |
5f74377c JQ |
133 | obj-y += irq.o ioport.o |
134 | obj-$(CONFIG_PTIMER) += ptimer.o | |
ae573db3 | 135 | obj-$(CONFIG_MAX7310) += max7310.o |
976ca9ab | 136 | obj-$(CONFIG_WM8750) += wm8750.o |
92eb6b4e | 137 | obj-$(CONFIG_TWL92230) += twl92230.o |
3c848e2a | 138 | obj-$(CONFIG_TSC2005) += tsc2005.o |
03aba0e3 | 139 | obj-$(CONFIG_LM832X) += lm832x.o |
d9b44620 | 140 | obj-$(CONFIG_TMP105) += tmp105.o |
4aa5b83f | 141 | obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o |
6a559be5 | 142 | obj-$(CONFIG_SSD0303) += ssd0303.o |
54bcf074 | 143 | obj-$(CONFIG_SSD0323) += ssd0323.o |
20a4afc4 | 144 | obj-$(CONFIG_ADS7846) += ads7846.o |
ee99ca01 | 145 | obj-$(CONFIG_MAX111X) += max111x.o |
1dfe3943 | 146 | obj-$(CONFIG_DS1338) += ds1338.o |
ee99ca01 | 147 | obj-y += i2c.o smbus.o smbus_eeprom.o |
d9b44620 | 148 | obj-y += eeprom93xx.o |
6ef859b3 | 149 | obj-y += scsi-disk.o cdrom.o |
d52affa7 | 150 | obj-y += scsi-generic.o scsi-bus.o |
6ef859b3 | 151 | obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o |
806b6024 | 152 | obj-y += usb-serial.o usb-net.o usb-bus.o |
c62c4551 | 153 | obj-$(CONFIG_SSI) += ssi.o |
93a60400 | 154 | obj-$(CONFIG_SSI_SD) += ssi-sd.o |
b21fd8e6 | 155 | obj-$(CONFIG_SD) += sd.o |
6ef859b3 JQ |
156 | obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o |
157 | obj-y += bt-hci-csr.o | |
f7105843 | 158 | obj-y += buffered_file.o migration.o migration-tcp.o qemu-sockets.o |
7200ac3c | 159 | obj-y += qemu-char.o aio.o savevm.o |
6ef859b3 | 160 | obj-y += msmouse.o ps2.o |
c62c4551 | 161 | obj-y += qdev.o qdev-properties.o |
ec072ced | 162 | obj-y += qemu-config.o block-migration.o |
87ecb68b | 163 | |
0e22fd2f | 164 | obj-$(CONFIG_BRLAPI) += baum.o |
5ac1fad3 | 165 | obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o |
4fb240a4 | 166 | |
98b068a9 | 167 | audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS) |
0e22fd2f JQ |
168 | |
169 | audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o | |
170 | audio-obj-$(CONFIG_SDL) += sdlaudio.o | |
171 | audio-obj-$(CONFIG_OSS) += ossaudio.o | |
172 | audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o | |
173 | audio-obj-$(CONFIG_ALSA) += alsaaudio.o | |
174 | audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o | |
175 | audio-obj-$(CONFIG_FMOD) += fmodaudio.o | |
176 | audio-obj-$(CONFIG_ESD) += esdaudio.o | |
177 | audio-obj-$(CONFIG_PA) += paaudio.o | |
d5631638 | 178 | audio-obj-$(CONFIG_WINWAVE) += winwaveaudio.o |
67f86e8e | 179 | audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o |
d5631638 | 180 | audio-obj-$(CONFIG_AUDIO_WIN_INT) += audio_win_int.o |
eda959bd | 181 | audio-obj-y += wavcapture.o |
6ef859b3 | 182 | obj-y += $(addprefix audio/, $(audio-obj-y)) |
4fb240a4 | 183 | |
6ef859b3 | 184 | obj-y += keymaps.o |
0e22fd2f JQ |
185 | obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o |
186 | obj-$(CONFIG_CURSES) += curses.o | |
6ef859b3 | 187 | obj-y += vnc.o acl.o d3des.o |
0e22fd2f JQ |
188 | obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o |
189 | obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o | |
190 | obj-$(CONFIG_COCOA) += cocoa.o | |
191 | obj-$(CONFIG_IOTHREAD) += qemu-thread.o | |
e5d355d1 | 192 | |
f835ed1c JQ |
193 | slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o |
194 | slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o | |
195 | slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o | |
0e22fd2f | 196 | obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y)) |
4fb240a4 | 197 | |
2567f579 | 198 | # xen backend driver support |
0e22fd2f JQ |
199 | obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o |
200 | obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o | |
2567f579 | 201 | |
a558ee17 | 202 | QEMU_CFLAGS+=$(CURL_CFLAGS) |
769ce76d | 203 | |
4fb240a4 | 204 | cocoa.o: cocoa.m |
4fb240a4 | 205 | |
0483755a AL |
206 | keymaps.o: keymaps.c keymaps.h |
207 | ||
c18a2c36 SS |
208 | sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h |
209 | ||
210 | sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h | |
807544e2 | 211 | |
a558ee17 | 212 | sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) |
4fb240a4 | 213 | |
76655d6d AL |
214 | acl.o: acl.h acl.c |
215 | ||
2f9606b3 | 216 | vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h |
5fb6c7a8 | 217 | |
76655d6d | 218 | vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h |
4fb240a4 | 219 | |
a558ee17 | 220 | vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS) |
4d3b6f6e | 221 | |
5fb6c7a8 AL |
222 | vnc-tls.o: vnc-tls.c vnc.h |
223 | ||
224 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h | |
225 | ||
2f9606b3 AL |
226 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
227 | ||
0483755a | 228 | curses.o: curses.c keymaps.h curses_keys.h |
fb599c9a | 229 | |
a558ee17 | 230 | bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) |
4fb240a4 | 231 | |
6ef859b3 | 232 | libqemu_common.a: $(obj-y) |
4fb240a4 FB |
233 | |
234 | ###################################################################### | |
235 | ||
a73e8e43 | 236 | qemu-img.o: qemu-img-cmds.h |
153859be | 237 | |
4305793b | 238 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y) |
4fb240a4 | 239 | |
4305793b | 240 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y) |
3aa892d7 | 241 | |
4305793b | 242 | qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y) |
0a8e1acd | 243 | |
153859be SB |
244 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
245 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") | |
246 | ||
33837ba6 | 247 | check-qint: check-qint.o qint.o qemu-malloc.o |
5de65a07 | 248 | check-qstring: check-qstring.o qstring.o qemu-malloc.o |
f1f84ba2 | 249 | check-qdict: check-qdict.o qdict.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o |
3aa3dcff | 250 | check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o |
9c9efb6b | 251 | check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o |
422c46a8 | 252 | 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 qemu-malloc.o |
33837ba6 | 253 | |
31e31b8a | 254 | clean: |
2d80ae89 | 255 | # avoid old build problems by removing potentially incorrect old files |
25be210f | 256 | rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h |
86e840ee | 257 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
e1144d00 | 258 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d |
07b44ce9 | 259 | rm -f qemu-img-cmds.h |
7d3505c5 | 260 | $(MAKE) -C tests clean |
add16157 | 261 | for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \ |
fc8e320e | 262 | if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ |
626df76a | 263 | done |
31e31b8a | 264 | |
7d13299d | 265 | distclean: clean |
fc8e320e | 266 | rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi |
a992fe3d | 267 | rm -f config-all-devices.mak |
fc8e320e | 268 | rm -f roms/seabios/config.mak roms/vgabios/config.mak |
0cb3fb1e | 269 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
add16157 | 270 | for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \ |
bc1b050d | 271 | rm -rf $$d || exit 1 ; \ |
76bc6838 | 272 | done |
7d13299d | 273 | |
fed4a9ad FB |
274 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
275 | ar de en-us fi fr-be hr it lv nl pl ru th \ | |
276 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr | |
277 | ||
77755340 TS |
278 | ifdef INSTALL_BLOBS |
279 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ | |
e5d01b06 | 280 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
88e2b0a5 SW |
281 | pxe-e1000.bin pxe-i82559er.bin \ |
282 | pxe-ne2k_pci.bin pxe-pcnet.bin \ | |
283 | pxe-rtl8139.bin pxe-virtio.bin \ | |
253d0942 | 284 | bamboo.dtb petalogix-s3adsp1800.dtb \ |
cfc6d90a | 285 | multiboot.bin linuxboot.bin |
77755340 TS |
286 | else |
287 | BLOBS= | |
288 | endif | |
289 | ||
38954dca | 290 | install-doc: $(DOCS) |
58f8aead AL |
291 | $(INSTALL_DIR) "$(DESTDIR)$(docdir)" |
292 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" | |
96d409eb | 293 | ifdef CONFIG_POSIX |
58f8aead AL |
294 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
295 | $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" | |
296 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" | |
297 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" | |
38954dca PB |
298 | endif |
299 | ||
300 | install: all $(if $(BUILD_DOCS),install-doc) | |
58f8aead | 301 | $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |
932a79df | 302 | ifneq ($(TOOLS),) |
58f8aead | 303 | $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
932a79df | 304 | endif |
77755340 | 305 | ifneq ($(BLOBS),) |
58f8aead | 306 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)" |
77755340 | 307 | set -e; for x in $(BLOBS); do \ |
58f8aead | 308 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
ad064840 | 309 | done |
77755340 | 310 | endif |
58f8aead | 311 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps" |
18be8d77 | 312 | set -e; for x in $(KEYMAPS); do \ |
79fd42aa | 313 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
ad064840 | 314 | done |
626df76a | 315 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 316 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 317 | done |
612384d7 | 318 | |
367e86e8 | 319 | # various test targets |
9b0b8203 | 320 | test speed: all |
7d3505c5 | 321 | $(MAKE) -C tests $@ |
31e31b8a | 322 | |
21d4e8e3 | 323 | .PHONY: TAGS |
5fafdf24 | 324 | TAGS: |
21d4e8e3 | 325 | find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags |
31e31b8a | 326 | |
6688bc6d FB |
327 | cscope: |
328 | rm -f ./cscope.* | |
ede46085 | 329 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
6688bc6d FB |
330 | cscope -b |
331 | ||
3ef693a0 | 332 | # documentation |
1f673135 | 333 | %.html: %.texi |
0d00e563 | 334 | $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@") |
3ef693a0 | 335 | |
f3548328 | 336 | %.info: %.texi |
0d00e563 | 337 | $(call quiet-command,makeinfo -I . $< -o $@," GEN $@") |
f3548328 FB |
338 | |
339 | %.dvi: %.texi | |
0d00e563 | 340 | $(call quiet-command,texi2dvi -I . $<," GEN $@") |
5824d651 BS |
341 | |
342 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx | |
0d00e563 | 343 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
f3548328 | 344 | |
2313086a BS |
345 | qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx |
346 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") | |
347 | ||
153859be SB |
348 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
349 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") | |
350 | ||
2313086a | 351 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
0d00e563 AL |
352 | $(call quiet-command, \ |
353 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ | |
354 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ | |
355 | " GEN $@") | |
5a67135a | 356 | |
153859be | 357 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
0d00e563 AL |
358 | $(call quiet-command, \ |
359 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ | |
360 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ | |
361 | " GEN $@") | |
acd935ef | 362 | |
7a5ca864 | 363 | qemu-nbd.8: qemu-nbd.texi |
0d00e563 AL |
364 | $(call quiet-command, \ |
365 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ | |
366 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ | |
367 | " GEN $@") | |
7a5ca864 | 368 | |
0cb3fb1e PB |
369 | info: qemu-doc.info qemu-tech.info |
370 | ||
371 | dvi: qemu-doc.dvi qemu-tech.dvi | |
372 | ||
373 | html: qemu-doc.html qemu-tech.html | |
374 | ||
153859be | 375 | qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi |
818220f5 | 376 | |
df5cf721 TS |
377 | VERSION ?= $(shell cat VERSION) |
378 | FILE = qemu-$(VERSION) | |
586314f2 | 379 | |
1e43adfc | 380 | # tar release (use 'make -k tar' on a checkouted tree) |
586314f2 FB |
381 | tar: |
382 | rm -rf /tmp/$(FILE) | |
1e43adfc | 383 | cp -r . /tmp/$(FILE) |
99c6c082 | 384 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
586314f2 FB |
385 | rm -rf /tmp/$(FILE) |
386 | ||
76b62fd0 | 387 | # generate a binary distribution |
d691f669 | 388 | tarbin: |
18be8d77 | 389 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
43095f31 | 390 | $(bindir)/qemu \ |
43095f31 | 391 | $(bindir)/qemu-system-x86_64 \ |
40e8a53b AJ |
392 | $(bindir)/qemu-system-arm \ |
393 | $(bindir)/qemu-system-cris \ | |
394 | $(bindir)/qemu-system-m68k \ | |
bc6291a1 | 395 | $(bindir)/qemu-system-microblaze \ |
93856aac | 396 | $(bindir)/qemu-system-mips \ |
38260998 | 397 | $(bindir)/qemu-system-mipsel \ |
fbe4f65b TS |
398 | $(bindir)/qemu-system-mips64 \ |
399 | $(bindir)/qemu-system-mips64el \ | |
40e8a53b AJ |
400 | $(bindir)/qemu-system-ppc \ |
401 | $(bindir)/qemu-system-ppcemb \ | |
402 | $(bindir)/qemu-system-ppc64 \ | |
ff1aaf65 | 403 | $(bindir)/qemu-system-sh4 \ |
85ffbdfc | 404 | $(bindir)/qemu-system-sh4eb \ |
40e8a53b | 405 | $(bindir)/qemu-system-sparc \ |
7efa4387 | 406 | $(bindir)/qemu-i386 \ |
f0403c03 | 407 | $(bindir)/qemu-x86_64 \ |
40e8a53b AJ |
408 | $(bindir)/qemu-alpha \ |
409 | $(bindir)/qemu-arm \ | |
410 | $(bindir)/qemu-armeb \ | |
411 | $(bindir)/qemu-cris \ | |
412 | $(bindir)/qemu-m68k \ | |
bc6291a1 | 413 | $(bindir)/qemu-microblaze \ |
40e8a53b AJ |
414 | $(bindir)/qemu-mips \ |
415 | $(bindir)/qemu-mipsel \ | |
416 | $(bindir)/qemu-ppc \ | |
417 | $(bindir)/qemu-ppc64 \ | |
418 | $(bindir)/qemu-ppc64abi32 \ | |
419 | $(bindir)/qemu-sh4 \ | |
420 | $(bindir)/qemu-sh4eb \ | |
421 | $(bindir)/qemu-sparc \ | |
422 | $(bindir)/qemu-sparc64 \ | |
423 | $(bindir)/qemu-sparc32plus \ | |
424 | $(bindir)/qemu-img \ | |
425 | $(bindir)/qemu-nbd \ | |
7efa4387 FB |
426 | $(datadir)/bios.bin \ |
427 | $(datadir)/vgabios.bin \ | |
de9258a8 | 428 | $(datadir)/vgabios-cirrus.bin \ |
637f6cd7 | 429 | $(datadir)/ppc_rom.bin \ |
d5295253 | 430 | $(datadir)/video.x \ |
0986ac3b | 431 | $(datadir)/openbios-sparc32 \ |
938255d2 | 432 | $(datadir)/openbios-sparc64 \ |
e5d01b06 | 433 | $(datadir)/openbios-ppc \ |
40e8a53b | 434 | $(datadir)/pxe-ne2k_pci.bin \ |
19c80e50 | 435 | $(datadir)/pxe-rtl8139.bin \ |
40e8a53b | 436 | $(datadir)/pxe-pcnet.bin \ |
2991990b | 437 | $(datadir)/pxe-e1000.bin \ |
1f50f8d1 FB |
438 | $(docdir)/qemu-doc.html \ |
439 | $(docdir)/qemu-tech.html \ | |
40e8a53b AJ |
440 | $(mandir)/man1/qemu.1 \ |
441 | $(mandir)/man1/qemu-img.1 \ | |
7a5ca864 | 442 | $(mandir)/man8/qemu-nbd.8 |
d691f669 | 443 | |
4fb240a4 | 444 | # Include automatically generated dependency files |
e1144d00 | 445 | -include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d) |