pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 1 | # Makefile for QEMU. |
| 2 | |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 3 | ifneq ($(wildcard config-host.mak),) |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 4 | # Put the all: rule here so that config-host.mak can contain dependencies. |
| 5 | all: build-all |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 6 | include config-host.mak |
aliguori | 1775918 | 2009-01-21 18:12:52 +0000 | [diff] [blame] | 7 | include $(SRC_PATH)/rules.mak |
Juan Quintela | e5efe7f | 2009-10-07 02:40:59 +0200 | [diff] [blame] | 8 | config-host.mak: configure |
| 9 | @echo $@ is out-of-date, running configure |
| 10 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 11 | else |
| 12 | config-host.mak: |
| 13 | @echo "Please call configure before running make!" |
| 14 | @exit 1 |
| 15 | endif |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 16 | |
Juan Quintela | d9ace8b | 2009-10-06 21:11:15 +0200 | [diff] [blame] | 17 | # Don't try to regenerate Makefile or configure |
| 18 | # We don't generate any of them |
| 19 | Makefile: ; |
| 20 | configure: ; |
| 21 | |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 22 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
Juan Quintela | 9c92765 | 2009-10-06 21:11:12 +0200 | [diff] [blame] | 23 | recurse-all speed tar tarbin test build-all |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 24 | |
pbrook | 8c462f8 | 2007-11-18 21:12:37 +0000 | [diff] [blame] | 25 | VPATH=$(SRC_PATH):$(SRC_PATH)/hw |
| 26 | |
Juan Quintela | 3e2e0e6 | 2009-08-03 14:47:06 +0200 | [diff] [blame] | 27 | LIBS+=-lz $(LIBS_TOOLS) |
Juan Quintela | 67c0f08 | 2009-07-27 16:12:51 +0200 | [diff] [blame] | 28 | |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 29 | ifdef BUILD_DOCS |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 30 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 31 | else |
| 32 | DOCS= |
| 33 | endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 34 | |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 35 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) |
| 36 | |
| 37 | build-all: config-host.h |
| 38 | $(call quiet-command, $(MAKE) $(SUBDIR_MAKEFLAGS) $(TOOLS) $(DOCS) recurse-all,) |
pbrook | b9dea4f | 2006-05-13 16:54:03 +0000 | [diff] [blame] | 39 | |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 40 | config-host.h: config-host.h-timestamp |
| 41 | config-host.h-timestamp: config-host.mak |
| 42 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 43 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
| 44 | |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 45 | subdir-%: config-host.h |
Paul Brook | 0087375 | 2009-05-07 02:00:31 +0100 | [diff] [blame] | 46 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
pbrook | 4aa4253 | 2006-05-13 13:55:08 +0000 | [diff] [blame] | 47 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 48 | $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a |
Paul Brook | c05ac89 | 2009-07-31 13:18:32 +0100 | [diff] [blame] | 49 | |
Blue Swirl | add1615 | 2009-09-27 16:26:02 +0000 | [diff] [blame] | 50 | $(filter %-user,$(SUBDIR_RULES)): libuser.a |
| 51 | |
| 52 | libuser.a: |
| 53 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="$*/" all,) |
| 54 | |
Paul Brook | c05ac89 | 2009-07-31 13:18:32 +0100 | [diff] [blame] | 55 | ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS)) |
| 56 | romsubdir-%: |
| 57 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",) |
| 58 | |
| 59 | ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS)) |
| 60 | |
| 61 | recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 62 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 63 | ####################################################################### |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame] | 64 | # block-obj-y is code used by both qemu system emulation and qemu-img |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 65 | |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame] | 66 | block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o |
Anthony Liguori | a25a0ef | 2009-08-10 17:14:11 -0500 | [diff] [blame] | 67 | block-obj-y += nbd.o block.o aio.o aes.o osdep.o |
Christoph Hellwig | 4dd75c7 | 2009-08-10 23:39:39 +0200 | [diff] [blame] | 68 | block-obj-$(CONFIG_POSIX) += posix-aio-compat.o |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 69 | block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o |
Juan Quintela | 1a65ba7 | 2009-07-16 17:57:03 +0200 | [diff] [blame] | 70 | |
Stefan Weil | 9aebd98 | 2009-07-31 21:45:56 +0200 | [diff] [blame] | 71 | block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o |
Juan Quintela | 1a65ba7 | 2009-07-16 17:57:03 +0200 | [diff] [blame] | 72 | block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o |
| 73 | block-nested-y += parallels.o nbd.o |
Juan Quintela | eeb6d45 | 2009-07-27 16:13:08 +0200 | [diff] [blame] | 74 | block-nested-$(CONFIG_WIN32) += raw-win32.o |
| 75 | block-nested-$(CONFIG_POSIX) += raw-posix.o |
Juan Quintela | 1a65ba7 | 2009-07-16 17:57:03 +0200 | [diff] [blame] | 76 | block-nested-$(CONFIG_CURL) += curl.o |
| 77 | |
| 78 | block-obj-y += $(addprefix block/, $(block-nested-y)) |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 79 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 80 | ###################################################################### |
bellard | 2e2ea90 | 2008-02-01 10:02:52 +0000 | [diff] [blame] | 81 | # libqemu_common.a: Target independent part of system emulation. The |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 82 | # long term path is to suppress *all* target specific code in case of |
| 83 | # system emulation, i.e. a single QEMU executable should support all |
| 84 | # CPUs and machines. |
bellard | 47cea61 | 2004-05-17 20:06:42 +0000 | [diff] [blame] | 85 | |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 86 | obj-y = $(block-obj-y) |
Kirill A. Shutemov | 34005a0 | 2009-09-12 02:17:55 +0300 | [diff] [blame] | 87 | obj-y += readline.o console.o |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 88 | |
Blue Swirl | c2b023b | 2009-09-20 19:20:05 +0000 | [diff] [blame] | 89 | obj-y += tcg-runtime.o host-utils.o |
Blue Swirl | afcea8c | 2009-09-20 16:05:47 +0000 | [diff] [blame] | 90 | obj-y += irq.o ptimer.o ioport.o |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 91 | obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o |
| 92 | obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o |
| 93 | obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o |
| 94 | obj-y += scsi-disk.o cdrom.o |
Gerd Hoffmann | d52affa | 2009-08-31 14:24:04 +0200 | [diff] [blame] | 95 | obj-y += scsi-generic.o scsi-bus.o |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 96 | obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 97 | obj-y += usb-serial.o usb-net.o usb-bus.o |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 98 | obj-y += sd.o ssi-sd.o |
| 99 | 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 |
| 100 | obj-y += bt-hci-csr.o |
| 101 | obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o |
Juan Quintela | 3b47612 | 2009-07-16 17:57:06 +0200 | [diff] [blame] | 102 | obj-y += qemu-char.o aio.o net-checksum.o savevm.o |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 103 | obj-y += msmouse.o ps2.o |
Gerd Hoffmann | ee6847d | 2009-07-15 13:43:31 +0200 | [diff] [blame] | 104 | obj-y += qdev.o qdev-properties.o ssi.o |
Blue Swirl | a333cd7 | 2009-09-20 08:28:29 +0000 | [diff] [blame] | 105 | obj-y += qint.o qstring.o qdict.o qemu-config.o |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 106 | |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 107 | obj-$(CONFIG_BRLAPI) += baum.o |
Juan Quintela | eeb6d45 | 2009-07-27 16:13:08 +0200 | [diff] [blame] | 108 | obj-$(CONFIG_WIN32) += tap-win32.o |
Paolo Bonzini | 5ac1fad | 2009-08-18 15:56:25 +0200 | [diff] [blame] | 109 | obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 110 | |
Juan Quintela | 98b068a | 2009-08-03 14:46:57 +0200 | [diff] [blame] | 111 | audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS) |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 112 | |
| 113 | audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o |
| 114 | audio-obj-$(CONFIG_SDL) += sdlaudio.o |
| 115 | audio-obj-$(CONFIG_OSS) += ossaudio.o |
| 116 | audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o |
| 117 | audio-obj-$(CONFIG_ALSA) += alsaaudio.o |
| 118 | audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o |
| 119 | audio-obj-$(CONFIG_FMOD) += fmodaudio.o |
| 120 | audio-obj-$(CONFIG_ESD) += esdaudio.o |
| 121 | audio-obj-$(CONFIG_PA) += paaudio.o |
Juan Quintela | 67f86e8 | 2009-08-03 14:46:59 +0200 | [diff] [blame] | 122 | audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o |
Juan Quintela | eda959b | 2009-06-25 00:08:03 +0200 | [diff] [blame] | 123 | audio-obj-y += wavcapture.o |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 124 | obj-y += $(addprefix audio/, $(audio-obj-y)) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 125 | |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 126 | obj-y += keymaps.o |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 127 | obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o |
| 128 | obj-$(CONFIG_CURSES) += curses.o |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 129 | obj-y += vnc.o acl.o d3des.o |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 130 | obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o |
| 131 | obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o |
| 132 | obj-$(CONFIG_COCOA) += cocoa.o |
| 133 | obj-$(CONFIG_IOTHREAD) += qemu-thread.o |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 134 | |
Juan Quintela | f835ed1 | 2009-06-25 00:08:04 +0200 | [diff] [blame] | 135 | slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o |
| 136 | slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o |
| 137 | slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 138 | obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y)) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 139 | |
Blue Swirl | 2567f57 | 2009-05-21 15:54:48 +0000 | [diff] [blame] | 140 | # xen backend driver support |
Juan Quintela | 0e22fd2 | 2009-06-25 00:08:09 +0200 | [diff] [blame] | 141 | obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o |
| 142 | obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o |
Blue Swirl | 2567f57 | 2009-05-21 15:54:48 +0000 | [diff] [blame] | 143 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 144 | QEMU_CFLAGS+=$(CURL_CFLAGS) |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 145 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 146 | cocoa.o: cocoa.m |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 147 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 148 | keymaps.o: keymaps.c keymaps.h |
| 149 | |
Stefano Stabellini | c18a2c3 | 2009-06-24 11:58:25 +0100 | [diff] [blame] | 150 | sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h |
| 151 | |
| 152 | sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 153 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 154 | sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 155 | |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 156 | acl.o: acl.h acl.c |
| 157 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 158 | vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h |
aliguori | 5fb6c7a | 2009-03-06 20:27:23 +0000 | [diff] [blame] | 159 | |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 160 | vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 161 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 162 | vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 163 | |
aliguori | 5fb6c7a | 2009-03-06 20:27:23 +0000 | [diff] [blame] | 164 | vnc-tls.o: vnc-tls.c vnc.h |
| 165 | |
| 166 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h |
| 167 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 168 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
| 169 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 170 | curses.o: curses.c keymaps.h curses_keys.h |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 171 | |
Juan Quintela | a558ee1 | 2009-08-03 14:46:21 +0200 | [diff] [blame] | 172 | bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 173 | |
Juan Quintela | 6ef859b | 2009-06-25 00:08:07 +0200 | [diff] [blame] | 174 | libqemu_common.a: $(obj-y) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 175 | |
| 176 | ###################################################################### |
| 177 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 178 | qemu-img.o: qemu-img-cmds.h |
| 179 | |
Anthony Liguori | a25a0ef | 2009-08-10 17:14:11 -0500 | [diff] [blame] | 180 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 181 | |
Anthony Liguori | a25a0ef | 2009-08-10 17:14:11 -0500 | [diff] [blame] | 182 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 183 | |
Anthony Liguori | a25a0ef | 2009-08-10 17:14:11 -0500 | [diff] [blame] | 184 | qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) |
aliguori | 0a8e1ac | 2009-04-05 18:41:23 +0000 | [diff] [blame] | 185 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 186 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
| 187 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") |
| 188 | |
Luiz Capitulino | 33837ba | 2009-08-28 15:27:29 -0300 | [diff] [blame] | 189 | check-qint: check-qint.o qint.o qemu-malloc.o |
Luiz Capitulino | 5de65a0 | 2009-08-28 15:27:30 -0300 | [diff] [blame] | 190 | check-qstring: check-qstring.o qstring.o qemu-malloc.o |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 191 | check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o |
Luiz Capitulino | 33837ba | 2009-08-28 15:27:29 -0300 | [diff] [blame] | 192 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 193 | clean: |
bellard | 2d80ae8 | 2003-08-11 23:01:33 +0000 | [diff] [blame] | 194 | # avoid old build problems by removing potentially incorrect old files |
Juan Quintela | 25be210f | 2009-10-07 02:41:00 +0200 | [diff] [blame^] | 195 | rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h |
aurel32 | 86e840e | 2008-12-07 15:21:23 +0000 | [diff] [blame] | 196 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
Anthony Liguori | 019d6b8 | 2009-05-09 17:14:19 -0500 | [diff] [blame] | 197 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d |
Blue Swirl | 07b44ce | 2009-06-09 18:45:16 +0000 | [diff] [blame] | 198 | rm -f qemu-img-cmds.h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 199 | $(MAKE) -C tests clean |
Blue Swirl | add1615 | 2009-09-27 16:26:02 +0000 | [diff] [blame] | 200 | for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 201 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 202 | done |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 203 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 204 | distclean: clean |
Juan Quintela | 1215c6e | 2009-10-07 02:40:58 +0200 | [diff] [blame] | 205 | rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 206 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
Blue Swirl | add1615 | 2009-09-27 16:26:02 +0000 | [diff] [blame] | 207 | for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \ |
bellard | bc1b050 | 2003-10-28 00:12:52 +0000 | [diff] [blame] | 208 | rm -rf $$d || exit 1 ; \ |
bellard | 76bc683 | 2003-08-10 23:41:46 +0000 | [diff] [blame] | 209 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 210 | |
bellard | fed4a9a | 2004-12-12 22:18:34 +0000 | [diff] [blame] | 211 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
| 212 | ar de en-us fi fr-be hr it lv nl pl ru th \ |
| 213 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr |
| 214 | |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 215 | ifdef INSTALL_BLOBS |
| 216 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ |
aurel32 | e5d01b0 | 2009-01-09 11:01:31 +0000 | [diff] [blame] | 217 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
| 218 | pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \ |
Alexander Graf | 253d094 | 2009-06-29 15:37:40 +0200 | [diff] [blame] | 219 | bamboo.dtb petalogix-s3adsp1800.dtb \ |
| 220 | multiboot.bin |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 221 | else |
| 222 | BLOBS= |
| 223 | endif |
| 224 | |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 225 | install-doc: $(DOCS) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 226 | $(INSTALL_DIR) "$(DESTDIR)$(docdir)" |
| 227 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" |
Juan Quintela | 96d409e | 2009-08-03 14:47:00 +0200 | [diff] [blame] | 228 | ifdef CONFIG_POSIX |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 229 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
| 230 | $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" |
| 231 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" |
| 232 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 233 | endif |
| 234 | |
| 235 | install: all $(if $(BUILD_DOCS),install-doc) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 236 | $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 237 | ifneq ($(TOOLS),) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 238 | $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 239 | endif |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 240 | ifneq ($(BLOBS),) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 241 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 242 | set -e; for x in $(BLOBS); do \ |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 243 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 244 | done |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 245 | endif |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 246 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps" |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 247 | set -e; for x in $(KEYMAPS); do \ |
Anthony Liguori | 79fd42a | 2009-05-28 03:11:42 -0500 | [diff] [blame] | 248 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 249 | done |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 250 | for d in $(TARGET_DIRS); do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 251 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 252 | done |
bellard | 612384d | 2003-03-22 17:31:19 +0000 | [diff] [blame] | 253 | |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 254 | # various test targets |
bellard | 9b0b820 | 2007-11-14 10:34:57 +0000 | [diff] [blame] | 255 | test speed: all |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 256 | $(MAKE) -C tests $@ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 257 | |
Alexandre Bique | 21d4e8e | 2009-08-07 15:43:11 +0100 | [diff] [blame] | 258 | .PHONY: TAGS |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 259 | TAGS: |
Alexandre Bique | 21d4e8e | 2009-08-07 15:43:11 +0100 | [diff] [blame] | 260 | find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 261 | |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 262 | cscope: |
| 263 | rm -f ./cscope.* |
aurel32 | ede4608 | 2008-10-01 21:46:58 +0000 | [diff] [blame] | 264 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 265 | cscope -b |
| 266 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 267 | # documentation |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 268 | %.html: %.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 269 | $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@") |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 270 | |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 271 | %.info: %.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 272 | $(call quiet-command,makeinfo -I . $< -o $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 273 | |
| 274 | %.dvi: %.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 275 | $(call quiet-command,texi2dvi -I . $<," GEN $@") |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 276 | |
| 277 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 278 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 279 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 280 | qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx |
| 281 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
| 282 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 283 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
| 284 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
| 285 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 286 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 287 | $(call quiet-command, \ |
| 288 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ |
| 289 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ |
| 290 | " GEN $@") |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 291 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 292 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 293 | $(call quiet-command, \ |
| 294 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ |
| 295 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ |
| 296 | " GEN $@") |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 297 | |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 298 | qemu-nbd.8: qemu-nbd.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 299 | $(call quiet-command, \ |
| 300 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ |
| 301 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ |
| 302 | " GEN $@") |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 303 | |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 304 | info: qemu-doc.info qemu-tech.info |
| 305 | |
| 306 | dvi: qemu-doc.dvi qemu-tech.dvi |
| 307 | |
| 308 | html: qemu-doc.html qemu-tech.html |
| 309 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 310 | 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 |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 311 | |
ths | df5cf72 | 2007-01-24 22:56:36 +0000 | [diff] [blame] | 312 | VERSION ?= $(shell cat VERSION) |
| 313 | FILE = qemu-$(VERSION) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 314 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 315 | # tar release (use 'make -k tar' on a checkouted tree) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 316 | tar: |
| 317 | rm -rf /tmp/$(FILE) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 318 | cp -r . /tmp/$(FILE) |
aurel32 | 99c6c08 | 2008-04-22 20:45:30 +0000 | [diff] [blame] | 319 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 320 | rm -rf /tmp/$(FILE) |
| 321 | |
bellard | 76b62fd | 2003-10-28 00:47:44 +0000 | [diff] [blame] | 322 | # generate a binary distribution |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 323 | tarbin: |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 324 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 325 | $(bindir)/qemu \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 326 | $(bindir)/qemu-system-x86_64 \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 327 | $(bindir)/qemu-system-arm \ |
| 328 | $(bindir)/qemu-system-cris \ |
| 329 | $(bindir)/qemu-system-m68k \ |
Edgar E. Iglesias | bc6291a | 2009-10-01 15:18:36 +0200 | [diff] [blame] | 330 | $(bindir)/qemu-system-microblaze \ |
bellard | 93856aa | 2005-07-24 18:44:35 +0000 | [diff] [blame] | 331 | $(bindir)/qemu-system-mips \ |
pbrook | 3826099 | 2006-03-11 14:51:13 +0000 | [diff] [blame] | 332 | $(bindir)/qemu-system-mipsel \ |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 333 | $(bindir)/qemu-system-mips64 \ |
| 334 | $(bindir)/qemu-system-mips64el \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 335 | $(bindir)/qemu-system-ppc \ |
| 336 | $(bindir)/qemu-system-ppcemb \ |
| 337 | $(bindir)/qemu-system-ppc64 \ |
ths | ff1aaf6 | 2007-09-29 21:18:26 +0000 | [diff] [blame] | 338 | $(bindir)/qemu-system-sh4 \ |
ths | 85ffbdf | 2007-12-09 05:10:03 +0000 | [diff] [blame] | 339 | $(bindir)/qemu-system-sh4eb \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 340 | $(bindir)/qemu-system-sparc \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 341 | $(bindir)/qemu-i386 \ |
bellard | f0403c0 | 2008-01-06 18:27:12 +0000 | [diff] [blame] | 342 | $(bindir)/qemu-x86_64 \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 343 | $(bindir)/qemu-alpha \ |
| 344 | $(bindir)/qemu-arm \ |
| 345 | $(bindir)/qemu-armeb \ |
| 346 | $(bindir)/qemu-cris \ |
| 347 | $(bindir)/qemu-m68k \ |
Edgar E. Iglesias | bc6291a | 2009-10-01 15:18:36 +0200 | [diff] [blame] | 348 | $(bindir)/qemu-microblaze \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 349 | $(bindir)/qemu-mips \ |
| 350 | $(bindir)/qemu-mipsel \ |
| 351 | $(bindir)/qemu-ppc \ |
| 352 | $(bindir)/qemu-ppc64 \ |
| 353 | $(bindir)/qemu-ppc64abi32 \ |
| 354 | $(bindir)/qemu-sh4 \ |
| 355 | $(bindir)/qemu-sh4eb \ |
| 356 | $(bindir)/qemu-sparc \ |
| 357 | $(bindir)/qemu-sparc64 \ |
| 358 | $(bindir)/qemu-sparc32plus \ |
| 359 | $(bindir)/qemu-img \ |
| 360 | $(bindir)/qemu-nbd \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 361 | $(datadir)/bios.bin \ |
| 362 | $(datadir)/vgabios.bin \ |
bellard | de9258a | 2004-06-06 15:50:03 +0000 | [diff] [blame] | 363 | $(datadir)/vgabios-cirrus.bin \ |
bellard | 637f6cd | 2004-06-21 19:54:47 +0000 | [diff] [blame] | 364 | $(datadir)/ppc_rom.bin \ |
bellard | d529525 | 2005-07-03 14:00:51 +0000 | [diff] [blame] | 365 | $(datadir)/video.x \ |
bellard | 0986ac3 | 2006-06-14 12:36:32 +0000 | [diff] [blame] | 366 | $(datadir)/openbios-sparc32 \ |
blueswir1 | 938255d | 2008-04-23 19:38:07 +0000 | [diff] [blame] | 367 | $(datadir)/openbios-sparc64 \ |
aurel32 | e5d01b0 | 2009-01-09 11:01:31 +0000 | [diff] [blame] | 368 | $(datadir)/openbios-ppc \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 369 | $(datadir)/pxe-ne2k_pci.bin \ |
bellard | 19c80e5 | 2007-02-05 21:22:42 +0000 | [diff] [blame] | 370 | $(datadir)/pxe-rtl8139.bin \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 371 | $(datadir)/pxe-pcnet.bin \ |
aliguori | 2991990 | 2008-07-26 16:53:22 +0000 | [diff] [blame] | 372 | $(datadir)/pxe-e1000.bin \ |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 373 | $(docdir)/qemu-doc.html \ |
| 374 | $(docdir)/qemu-tech.html \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 375 | $(mandir)/man1/qemu.1 \ |
| 376 | $(mandir)/man1/qemu-img.1 \ |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 377 | $(mandir)/man8/qemu-nbd.8 |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 378 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 379 | # Include automatically generated dependency files |
Anthony Liguori | 019d6b8 | 2009-05-09 17:14:19 -0500 | [diff] [blame] | 380 | -include $(wildcard *.d audio/*.d slirp/*.d block/*.d) |