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 |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 8 | else |
| 9 | config-host.mak: |
| 10 | @echo "Please call configure before running make!" |
| 11 | @exit 1 |
| 12 | endif |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 13 | |
aliguori | 818220f | 2008-09-24 01:13:40 +0000 | [diff] [blame] | 14 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
| 15 | recurse-all speed tar tarbin test |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 16 | |
pbrook | 8c462f8 | 2007-11-18 21:12:37 +0000 | [diff] [blame] | 17 | VPATH=$(SRC_PATH):$(SRC_PATH)/hw |
| 18 | |
aliguori | 1775918 | 2009-01-21 18:12:52 +0000 | [diff] [blame] | 19 | |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 20 | CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS) |
| 21 | LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS) |
blueswir1 | 3142255 | 2007-04-16 18:27:06 +0000 | [diff] [blame] | 22 | |
malc | 96935aa | 2008-07-02 21:16:22 +0000 | [diff] [blame] | 23 | CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@ |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 24 | CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
Anthony Liguori | 4a24470 | 2009-06-17 14:27:09 -0500 | [diff] [blame] | 25 | CPPFLAGS += -U_FORTIFY_SOURCE |
bellard | 766a487 | 2003-02-18 23:35:48 +0000 | [diff] [blame] | 26 | LIBS= |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 27 | ifdef CONFIG_STATIC |
bellard | 40293e5 | 2008-01-31 11:32:10 +0000 | [diff] [blame] | 28 | LDFLAGS += -static |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 29 | endif |
pbrook | cc8ae6d | 2006-04-23 17:57:59 +0000 | [diff] [blame] | 30 | ifdef BUILD_DOCS |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 31 | 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] | 32 | else |
| 33 | DOCS= |
| 34 | endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 35 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 36 | LIBS+=$(PTHREADLIBS) |
| 37 | LIBS+=$(CLOCKLIBS) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 38 | |
aliguori | 7e00eb9 | 2008-08-02 01:57:02 +0000 | [diff] [blame] | 39 | ifdef CONFIG_SOLARIS |
| 40 | LIBS+=-lsocket -lnsl -lresolv |
| 41 | endif |
| 42 | |
aliguori | 03ff3ca | 2008-09-15 15:51:35 +0000 | [diff] [blame] | 43 | ifdef CONFIG_WIN32 |
| 44 | LIBS+=-lwinmm -lws2_32 -liphlpapi |
| 45 | endif |
| 46 | |
Alexander Graf | 253d094 | 2009-06-29 15:37:40 +0200 | [diff] [blame] | 47 | build-all: $(TOOLS) $(DOCS) roms recurse-all |
pbrook | b9dea4f | 2006-05-13 16:54:03 +0000 | [diff] [blame] | 48 | |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 49 | config-host.mak: configure |
| 50 | ifneq ($(wildcard config-host.mak),) |
| 51 | @echo $@ is out-of-date, running configure |
blueswir1 | 052ff92 | 2009-04-17 20:01:12 +0000 | [diff] [blame] | 52 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh |
aurel32 | 55d7e8f | 2009-04-15 14:42:57 +0000 | [diff] [blame] | 53 | endif |
| 54 | |
Paul Brook | 0087375 | 2009-05-07 02:00:31 +0100 | [diff] [blame] | 55 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 56 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
| 57 | |
aurel32 | 86e840e | 2008-12-07 15:21:23 +0000 | [diff] [blame] | 58 | subdir-%: |
Paul Brook | 0087375 | 2009-05-07 02:00:31 +0100 | [diff] [blame] | 59 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
pbrook | 4aa4253 | 2006-05-13 13:55:08 +0000 | [diff] [blame] | 60 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 61 | $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a |
| 62 | $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a |
| 63 | |
| 64 | recurse-all: $(SUBDIR_RULES) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 65 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 66 | ####################################################################### |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 67 | # 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] | 68 | |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 69 | block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o |
| 70 | block-obj-y += block/cow.o block/qcow.o aes.o block/vmdk.o block/cloop.o |
| 71 | block-obj-y += block/dmg.o block/bochs.o block/vpc.o block/vvfat.o |
| 72 | block-obj-y += block/qcow2.o block/qcow2-refcount.o block/qcow2-cluster.o |
| 73 | block-obj-y += block/qcow2-snapshot.o |
| 74 | block-obj-y += block/parallels.o block/nbd.o |
| 75 | block-obj-y += nbd.o block.o aio.o |
aliguori | 03ff3ca | 2008-09-15 15:51:35 +0000 | [diff] [blame] | 76 | |
| 77 | ifdef CONFIG_WIN32 |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 78 | block-obj-y += block/raw-win32.o |
aliguori | 03ff3ca | 2008-09-15 15:51:35 +0000 | [diff] [blame] | 79 | else |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 80 | ifdef CONFIG_AIO |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 81 | block-obj-y += posix-aio-compat.o |
aliguori | 3c529d9 | 2008-12-12 16:41:40 +0000 | [diff] [blame] | 82 | endif |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 83 | block-obj-y += block/raw-posix.o |
aliguori | 03ff3ca | 2008-09-15 15:51:35 +0000 | [diff] [blame] | 84 | endif |
| 85 | |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 86 | ifdef CONFIG_CURL |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 87 | block-obj-y += block/curl.o |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 88 | endif |
| 89 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 90 | ###################################################################### |
bellard | 2e2ea90 | 2008-02-01 10:02:52 +0000 | [diff] [blame] | 91 | # libqemu_common.a: Target independent part of system emulation. The |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 92 | # long term path is to suppress *all* target specific code in case of |
| 93 | # system emulation, i.e. a single QEMU executable should support all |
| 94 | # CPUs and machines. |
bellard | 47cea61 | 2004-05-17 20:06:42 +0000 | [diff] [blame] | 95 | |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 96 | OBJS=$(block-obj-y) |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 97 | OBJS+=readline.o console.o |
aliguori | cd01b4a | 2008-08-21 19:25:45 +0000 | [diff] [blame] | 98 | |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 99 | OBJS+=irq.o ptimer.o |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 100 | OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o |
balrog | 7e7c5e4 | 2008-04-14 21:57:44 +0000 | [diff] [blame] | 101 | OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 102 | OBJS+=tmp105.o lm832x.o eeprom93xx.o tsc2005.o |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 103 | OBJS+=scsi-disk.o cdrom.o |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 104 | OBJS+=scsi-generic.o |
blueswir1 | 6806364 | 2008-11-22 21:03:55 +0000 | [diff] [blame] | 105 | OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o |
balrog | 6c9f886 | 2008-07-17 20:47:13 +0000 | [diff] [blame] | 106 | OBJS+=usb-serial.o usb-net.o |
pbrook | 775616c | 2007-11-24 23:35:08 +0000 | [diff] [blame] | 107 | OBJS+=sd.o ssi-sd.o |
balrog | e6a6d5a | 2008-09-29 00:40:44 +0000 | [diff] [blame] | 108 | OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 109 | OBJS+=bt-hci-csr.o |
aliguori | 559b90f | 2008-11-11 21:20:14 +0000 | [diff] [blame] | 110 | OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o |
malc | 902b3d5 | 2008-12-10 19:18:40 +0000 | [diff] [blame] | 111 | OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o |
blueswir1 | e9c2833 | 2009-04-11 09:04:44 +0000 | [diff] [blame] | 112 | OBJS+=msmouse.o ps2.o |
Paul Brook | 90d3723 | 2009-05-14 22:35:09 +0100 | [diff] [blame] | 113 | OBJS+=qdev.o ssi.o |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 114 | |
aurel32 | 2e4d9fb | 2008-04-08 06:01:02 +0000 | [diff] [blame] | 115 | ifdef CONFIG_BRLAPI |
| 116 | OBJS+= baum.o |
| 117 | LIBS+=-lbrlapi |
| 118 | endif |
| 119 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 120 | ifdef CONFIG_WIN32 |
| 121 | OBJS+=tap-win32.o |
aliguori | 559b90f | 2008-11-11 21:20:14 +0000 | [diff] [blame] | 122 | else |
| 123 | OBJS+=migration-exec.o |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 124 | endif |
| 125 | |
| 126 | AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o |
| 127 | ifdef CONFIG_SDL |
| 128 | AUDIO_OBJS += sdlaudio.o |
| 129 | endif |
| 130 | ifdef CONFIG_OSS |
| 131 | AUDIO_OBJS += ossaudio.o |
| 132 | endif |
| 133 | ifdef CONFIG_COREAUDIO |
| 134 | AUDIO_OBJS += coreaudio.o |
balrog | ca9cc28 | 2008-01-14 04:24:29 +0000 | [diff] [blame] | 135 | AUDIO_PT = yes |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 136 | endif |
| 137 | ifdef CONFIG_ALSA |
| 138 | AUDIO_OBJS += alsaaudio.o |
| 139 | endif |
| 140 | ifdef CONFIG_DSOUND |
| 141 | AUDIO_OBJS += dsoundaudio.o |
| 142 | endif |
| 143 | ifdef CONFIG_FMOD |
| 144 | AUDIO_OBJS += fmodaudio.o |
| 145 | audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) |
| 146 | endif |
balrog | ca9cc28 | 2008-01-14 04:24:29 +0000 | [diff] [blame] | 147 | ifdef CONFIG_ESD |
| 148 | AUDIO_PT = yes |
| 149 | AUDIO_PT_INT = yes |
| 150 | AUDIO_OBJS += esdaudio.o |
| 151 | endif |
malc | b8e59f1 | 2008-07-02 21:03:08 +0000 | [diff] [blame] | 152 | ifdef CONFIG_PA |
| 153 | AUDIO_PT = yes |
| 154 | AUDIO_PT_INT = yes |
| 155 | AUDIO_OBJS += paaudio.o |
| 156 | endif |
balrog | ca9cc28 | 2008-01-14 04:24:29 +0000 | [diff] [blame] | 157 | ifdef AUDIO_PT |
| 158 | LDFLAGS += -pthread |
| 159 | endif |
| 160 | ifdef AUDIO_PT_INT |
| 161 | AUDIO_OBJS += audio_pt_int.o |
| 162 | endif |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 163 | AUDIO_OBJS+= wavcapture.o |
| 164 | OBJS+=$(addprefix audio/, $(AUDIO_OBJS)) |
| 165 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 166 | OBJS+=keymaps.o |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 167 | ifdef CONFIG_SDL |
Stefano Stabellini | c18a2c3 | 2009-06-24 11:58:25 +0100 | [diff] [blame] | 168 | OBJS+=sdl.o sdl_zoom.o x_keymap.o |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 169 | endif |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 170 | ifdef CONFIG_CURSES |
| 171 | OBJS+=curses.o |
| 172 | endif |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 173 | OBJS+=vnc.o acl.o d3des.o |
aliguori | 5fb6c7a | 2009-03-06 20:27:23 +0000 | [diff] [blame] | 174 | ifdef CONFIG_VNC_TLS |
| 175 | OBJS+=vnc-tls.o vnc-auth-vencrypt.o |
| 176 | endif |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 177 | ifdef CONFIG_VNC_SASL |
| 178 | OBJS+=vnc-auth-sasl.o |
| 179 | endif |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 180 | |
| 181 | ifdef CONFIG_COCOA |
| 182 | OBJS+=cocoa.o |
| 183 | endif |
| 184 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 185 | ifdef CONFIG_IOTHREAD |
| 186 | OBJS+=qemu-thread.o |
| 187 | endif |
| 188 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 189 | ifdef CONFIG_SLIRP |
| 190 | CPPFLAGS+=-I$(SRC_PATH)/slirp |
| 191 | SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ |
| 192 | slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \ |
Jan Kiszka | 9f34949 | 2009-06-24 14:42:29 +0200 | [diff] [blame] | 193 | tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 194 | OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) |
| 195 | endif |
| 196 | |
ths | 8a16d27 | 2008-07-19 09:56:24 +0000 | [diff] [blame] | 197 | LIBS+=$(VDE_LIBS) |
| 198 | |
Blue Swirl | 2567f57 | 2009-05-21 15:54:48 +0000 | [diff] [blame] | 199 | # xen backend driver support |
| 200 | XEN_OBJS := xen_backend.o xen_devconfig.o |
| 201 | XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o |
| 202 | ifdef CONFIG_XEN |
| 203 | OBJS += $(XEN_OBJS) |
| 204 | endif |
| 205 | |
Alexander Graf | 769ce76 | 2009-05-11 17:41:42 +0200 | [diff] [blame] | 206 | LIBS+=$(CURL_LIBS) |
| 207 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 208 | cocoa.o: cocoa.m |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 209 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 210 | keymaps.o: keymaps.c keymaps.h |
| 211 | |
Stefano Stabellini | c18a2c3 | 2009-06-24 11:58:25 +0100 | [diff] [blame] | 212 | sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h |
| 213 | |
| 214 | sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 215 | |
Anthony Liguori | 537fe2d | 2009-06-16 15:17:22 -0500 | [diff] [blame] | 216 | sdl.o audio/sdlaudio.o baum.o: CFLAGS += $(SDL_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 217 | |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 218 | acl.o: acl.h acl.c |
| 219 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 220 | 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] | 221 | |
aliguori | 76655d6 | 2009-03-06 20:27:37 +0000 | [diff] [blame] | 222 | 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] | 223 | |
| 224 | vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 225 | |
aliguori | 5fb6c7a | 2009-03-06 20:27:23 +0000 | [diff] [blame] | 226 | vnc-tls.o: vnc-tls.c vnc.h |
| 227 | |
| 228 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h |
| 229 | |
aliguori | 2f9606b | 2009-03-06 20:27:28 +0000 | [diff] [blame] | 230 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
| 231 | |
aliguori | 0483755 | 2009-03-06 20:27:10 +0000 | [diff] [blame] | 232 | curses.o: curses.c keymaps.h curses_keys.h |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 233 | |
aliguori | 807544e | 2009-01-21 18:12:44 +0000 | [diff] [blame] | 234 | bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 235 | |
| 236 | libqemu_common.a: $(OBJS) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 237 | |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 238 | ####################################################################### |
| 239 | # USER_OBJS is code used by qemu userspace emulation |
malc | 902b3d5 | 2008-12-10 19:18:40 +0000 | [diff] [blame] | 240 | USER_OBJS=cutils.o cache-utils.o |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 241 | |
| 242 | libqemu_user.a: $(USER_OBJS) |
pbrook | cec7d0b | 2008-05-28 16:44:57 +0000 | [diff] [blame] | 243 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 244 | ###################################################################### |
| 245 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 246 | qemu-img.o: qemu-img-cmds.h |
| 247 | |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 248 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o tool-osdep.o $(block-obj-y) |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 249 | |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 250 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o tool-osdep.o $(block-obj-y) |
aliguori | 3aa892d | 2009-01-21 18:13:02 +0000 | [diff] [blame] | 251 | |
Juan Quintela | 319f08e | 2009-06-25 00:08:02 +0200 | [diff] [blame^] | 252 | qemu-io$(EXESUF): qemu-io.o qemu-tool.o tool-osdep.o cmd.o $(block-obj-y) |
aliguori | 0a8e1ac | 2009-04-05 18:41:23 +0000 | [diff] [blame] | 253 | |
| 254 | qemu-img$(EXESUF) qemu-nbd$(EXESUF) qemu-io$(EXESUF): LIBS += -lz |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 255 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 256 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
| 257 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") |
| 258 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 259 | clean: |
bellard | 2d80ae8 | 2003-08-11 23:01:33 +0000 | [diff] [blame] | 260 | # avoid old build problems by removing potentially incorrect old files |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 261 | rm -f config.mak config.h 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] | 262 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
Anthony Liguori | 019d6b8 | 2009-05-09 17:14:19 -0500 | [diff] [blame] | 263 | 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] | 264 | rm -f qemu-img-cmds.h |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 265 | $(MAKE) -C tests clean |
Alexander Graf | 253d094 | 2009-06-29 15:37:40 +0200 | [diff] [blame] | 266 | for d in $(TARGET_DIRS) $(ROMS) libhw32 libhw64; do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 267 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 268 | done |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 269 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 270 | distclean: clean |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 271 | rm -f config-host.mak config-host.h $(DOCS) qemu-options.texi qemu-img-cmds.texi |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 272 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
Paul Brook | 1ad2134 | 2009-05-19 16:17:58 +0100 | [diff] [blame] | 273 | for d in $(TARGET_DIRS) libhw32 libhw64; do \ |
bellard | bc1b050 | 2003-10-28 00:12:52 +0000 | [diff] [blame] | 274 | rm -rf $$d || exit 1 ; \ |
bellard | 76bc683 | 2003-08-10 23:41:46 +0000 | [diff] [blame] | 275 | done |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 276 | |
bellard | fed4a9a | 2004-12-12 22:18:34 +0000 | [diff] [blame] | 277 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
| 278 | ar de en-us fi fr-be hr it lv nl pl ru th \ |
| 279 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr |
| 280 | |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 281 | ifdef INSTALL_BLOBS |
| 282 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ |
aurel32 | e5d01b0 | 2009-01-09 11:01:31 +0000 | [diff] [blame] | 283 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
| 284 | 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] | 285 | bamboo.dtb petalogix-s3adsp1800.dtb \ |
| 286 | multiboot.bin |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 287 | else |
| 288 | BLOBS= |
| 289 | endif |
| 290 | |
Alexander Graf | 253d094 | 2009-06-29 15:37:40 +0200 | [diff] [blame] | 291 | roms: |
| 292 | for d in $(ROMS); do \ |
| 293 | $(MAKE) -C $$d || exit 1 ; \ |
| 294 | done |
| 295 | |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 296 | install-doc: $(DOCS) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 297 | $(INSTALL_DIR) "$(DESTDIR)$(docdir)" |
| 298 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 299 | ifndef CONFIG_WIN32 |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 300 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
| 301 | $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" |
| 302 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" |
| 303 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" |
pbrook | 38954dc | 2006-04-30 23:54:18 +0000 | [diff] [blame] | 304 | endif |
| 305 | |
| 306 | install: all $(if $(BUILD_DOCS),install-doc) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 307 | $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 308 | ifneq ($(TOOLS),) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 309 | $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
ths | 932a79d | 2007-10-20 18:29:34 +0000 | [diff] [blame] | 310 | endif |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 311 | ifneq ($(BLOBS),) |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 312 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)" |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 313 | set -e; for x in $(BLOBS); do \ |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 314 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 315 | done |
ths | 7775534 | 2008-11-27 15:45:16 +0000 | [diff] [blame] | 316 | endif |
aliguori | 58f8aea | 2009-04-18 15:36:02 +0000 | [diff] [blame] | 317 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps" |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 318 | set -e; for x in $(KEYMAPS); do \ |
Anthony Liguori | 79fd42a | 2009-05-28 03:11:42 -0500 | [diff] [blame] | 319 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
pbrook | ad06484 | 2006-04-16 12:41:07 +0000 | [diff] [blame] | 320 | done |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 321 | for d in $(TARGET_DIRS); do \ |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 322 | $(MAKE) -C $$d $@ || exit 1 ; \ |
bellard | 626df76 | 2003-08-10 21:39:31 +0000 | [diff] [blame] | 323 | done |
bellard | 612384d | 2003-03-22 17:31:19 +0000 | [diff] [blame] | 324 | |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 325 | # various test targets |
bellard | 9b0b820 | 2007-11-14 10:34:57 +0000 | [diff] [blame] | 326 | test speed: all |
bellard | 7d3505c | 2004-05-12 19:32:15 +0000 | [diff] [blame] | 327 | $(MAKE) -C tests $@ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 328 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 329 | TAGS: |
bellard | b9adb4a | 2003-04-29 20:41:16 +0000 | [diff] [blame] | 330 | etags *.[ch] tests/*.[ch] |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 331 | |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 332 | cscope: |
| 333 | rm -f ./cscope.* |
aurel32 | ede4608 | 2008-10-01 21:46:58 +0000 | [diff] [blame] | 334 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
bellard | 6688bc6 | 2005-08-21 09:23:39 +0000 | [diff] [blame] | 335 | cscope -b |
| 336 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 337 | # documentation |
bellard | 1f67313 | 2004-04-04 15:21:17 +0000 | [diff] [blame] | 338 | %.html: %.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 339 | $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@") |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 340 | |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 341 | %.info: %.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 342 | $(call quiet-command,makeinfo -I . $< -o $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 343 | |
| 344 | %.dvi: %.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 345 | $(call quiet-command,texi2dvi -I . $<," GEN $@") |
blueswir1 | 5824d65 | 2009-03-28 06:44:27 +0000 | [diff] [blame] | 346 | |
| 347 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 348 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
bellard | f354832 | 2006-04-30 22:51:54 +0000 | [diff] [blame] | 349 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 350 | qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx |
| 351 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
| 352 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 353 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
| 354 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
| 355 | |
Blue Swirl | 2313086 | 2009-06-06 08:22:04 +0000 | [diff] [blame] | 356 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 357 | $(call quiet-command, \ |
| 358 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ |
| 359 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ |
| 360 | " GEN $@") |
bellard | 5a67135 | 2003-10-01 00:13:48 +0000 | [diff] [blame] | 361 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 362 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 363 | $(call quiet-command, \ |
| 364 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ |
| 365 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ |
| 366 | " GEN $@") |
bellard | acd935e | 2004-11-15 22:57:26 +0000 | [diff] [blame] | 367 | |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 368 | qemu-nbd.8: qemu-nbd.texi |
aliguori | 0d00e56 | 2009-04-05 17:40:46 +0000 | [diff] [blame] | 369 | $(call quiet-command, \ |
| 370 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ |
| 371 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ |
| 372 | " GEN $@") |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 373 | |
pbrook | 0cb3fb1 | 2006-05-14 12:07:53 +0000 | [diff] [blame] | 374 | info: qemu-doc.info qemu-tech.info |
| 375 | |
| 376 | dvi: qemu-doc.dvi qemu-tech.dvi |
| 377 | |
| 378 | html: qemu-doc.html qemu-tech.html |
| 379 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 380 | 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] | 381 | |
ths | df5cf72 | 2007-01-24 22:56:36 +0000 | [diff] [blame] | 382 | VERSION ?= $(shell cat VERSION) |
| 383 | FILE = qemu-$(VERSION) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 384 | |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 385 | # tar release (use 'make -k tar' on a checkouted tree) |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 386 | tar: |
| 387 | rm -rf /tmp/$(FILE) |
bellard | 1e43adf | 2003-09-30 20:54:24 +0000 | [diff] [blame] | 388 | cp -r . /tmp/$(FILE) |
aurel32 | 99c6c08 | 2008-04-22 20:45:30 +0000 | [diff] [blame] | 389 | 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] | 390 | rm -rf /tmp/$(FILE) |
| 391 | |
bellard | 76b62fd | 2003-10-28 00:47:44 +0000 | [diff] [blame] | 392 | # generate a binary distribution |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 393 | tarbin: |
blueswir1 | 18be8d7 | 2008-03-05 18:16:09 +0000 | [diff] [blame] | 394 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 395 | $(bindir)/qemu \ |
bellard | 43095f3 | 2005-04-27 20:49:23 +0000 | [diff] [blame] | 396 | $(bindir)/qemu-system-x86_64 \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 397 | $(bindir)/qemu-system-arm \ |
| 398 | $(bindir)/qemu-system-cris \ |
| 399 | $(bindir)/qemu-system-m68k \ |
bellard | 93856aa | 2005-07-24 18:44:35 +0000 | [diff] [blame] | 400 | $(bindir)/qemu-system-mips \ |
pbrook | 3826099 | 2006-03-11 14:51:13 +0000 | [diff] [blame] | 401 | $(bindir)/qemu-system-mipsel \ |
ths | fbe4f65 | 2007-04-01 11:16:48 +0000 | [diff] [blame] | 402 | $(bindir)/qemu-system-mips64 \ |
| 403 | $(bindir)/qemu-system-mips64el \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 404 | $(bindir)/qemu-system-ppc \ |
| 405 | $(bindir)/qemu-system-ppcemb \ |
| 406 | $(bindir)/qemu-system-ppc64 \ |
ths | ff1aaf6 | 2007-09-29 21:18:26 +0000 | [diff] [blame] | 407 | $(bindir)/qemu-system-sh4 \ |
ths | 85ffbdf | 2007-12-09 05:10:03 +0000 | [diff] [blame] | 408 | $(bindir)/qemu-system-sh4eb \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 409 | $(bindir)/qemu-system-sparc \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 410 | $(bindir)/qemu-i386 \ |
bellard | f0403c0 | 2008-01-06 18:27:12 +0000 | [diff] [blame] | 411 | $(bindir)/qemu-x86_64 \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 412 | $(bindir)/qemu-alpha \ |
| 413 | $(bindir)/qemu-arm \ |
| 414 | $(bindir)/qemu-armeb \ |
| 415 | $(bindir)/qemu-cris \ |
| 416 | $(bindir)/qemu-m68k \ |
| 417 | $(bindir)/qemu-mips \ |
| 418 | $(bindir)/qemu-mipsel \ |
| 419 | $(bindir)/qemu-ppc \ |
| 420 | $(bindir)/qemu-ppc64 \ |
| 421 | $(bindir)/qemu-ppc64abi32 \ |
| 422 | $(bindir)/qemu-sh4 \ |
| 423 | $(bindir)/qemu-sh4eb \ |
| 424 | $(bindir)/qemu-sparc \ |
| 425 | $(bindir)/qemu-sparc64 \ |
| 426 | $(bindir)/qemu-sparc32plus \ |
| 427 | $(bindir)/qemu-img \ |
| 428 | $(bindir)/qemu-nbd \ |
bellard | 7efa438 | 2004-05-12 18:54:06 +0000 | [diff] [blame] | 429 | $(datadir)/bios.bin \ |
| 430 | $(datadir)/vgabios.bin \ |
bellard | de9258a | 2004-06-06 15:50:03 +0000 | [diff] [blame] | 431 | $(datadir)/vgabios-cirrus.bin \ |
bellard | 637f6cd | 2004-06-21 19:54:47 +0000 | [diff] [blame] | 432 | $(datadir)/ppc_rom.bin \ |
bellard | d529525 | 2005-07-03 14:00:51 +0000 | [diff] [blame] | 433 | $(datadir)/video.x \ |
bellard | 0986ac3 | 2006-06-14 12:36:32 +0000 | [diff] [blame] | 434 | $(datadir)/openbios-sparc32 \ |
blueswir1 | 938255d | 2008-04-23 19:38:07 +0000 | [diff] [blame] | 435 | $(datadir)/openbios-sparc64 \ |
aurel32 | e5d01b0 | 2009-01-09 11:01:31 +0000 | [diff] [blame] | 436 | $(datadir)/openbios-ppc \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 437 | $(datadir)/pxe-ne2k_pci.bin \ |
bellard | 19c80e5 | 2007-02-05 21:22:42 +0000 | [diff] [blame] | 438 | $(datadir)/pxe-rtl8139.bin \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 439 | $(datadir)/pxe-pcnet.bin \ |
aliguori | 2991990 | 2008-07-26 16:53:22 +0000 | [diff] [blame] | 440 | $(datadir)/pxe-e1000.bin \ |
bellard | 1f50f8d | 2004-05-08 14:44:43 +0000 | [diff] [blame] | 441 | $(docdir)/qemu-doc.html \ |
| 442 | $(docdir)/qemu-tech.html \ |
aurel32 | 40e8a53 | 2009-01-03 12:35:57 +0000 | [diff] [blame] | 443 | $(mandir)/man1/qemu.1 \ |
| 444 | $(mandir)/man1/qemu-img.1 \ |
bellard | 7a5ca86 | 2008-05-27 21:13:40 +0000 | [diff] [blame] | 445 | $(mandir)/man8/qemu-nbd.8 |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 446 | |
bellard | 4fb240a | 2007-11-07 19:24:02 +0000 | [diff] [blame] | 447 | # Include automatically generated dependency files |
Anthony Liguori | 019d6b8 | 2009-05-09 17:14:19 -0500 | [diff] [blame] | 448 | -include $(wildcard *.d audio/*.d slirp/*.d block/*.d) |