]>
Commit | Line | Data |
---|---|---|
0cb3fb1e PB |
1 | # Makefile for QEMU. |
2 | ||
55d7e8f6 | 3 | ifneq ($(wildcard config-host.mak),) |
1ad2134f PB |
4 | # Put the all: rule here so that config-host.mak can contain dependencies. |
5 | all: build-all | |
ad064840 | 6 | include config-host.mak |
17759187 | 7 | include $(SRC_PATH)/rules.mak |
55d7e8f6 AJ |
8 | else |
9 | config-host.mak: | |
10 | @echo "Please call configure before running make!" | |
11 | @exit 1 | |
12 | endif | |
766a487a | 13 | |
818220f5 AL |
14 | .PHONY: all clean cscope distclean dvi html info install install-doc \ |
15 | recurse-all speed tar tarbin test | |
0cb3fb1e | 16 | |
8c462f8f PB |
17 | VPATH=$(SRC_PATH):$(SRC_PATH)/hw |
18 | ||
96935aa4 | 19 | CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@ |
4fb240a4 | 20 | CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
4a244704 | 21 | CPPFLAGS += -U_FORTIFY_SOURCE |
766a487a | 22 | LIBS= |
1f50f8d1 | 23 | ifdef CONFIG_STATIC |
40293e58 | 24 | LDFLAGS += -static |
1f50f8d1 | 25 | endif |
cc8ae6de | 26 | ifdef BUILD_DOCS |
7a5ca864 | 27 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
cc8ae6de PB |
28 | else |
29 | DOCS= | |
30 | endif | |
aa05ae6f | 31 | |
e5d355d1 AL |
32 | LIBS+=$(PTHREADLIBS) |
33 | LIBS+=$(CLOCKLIBS) | |
83f64091 | 34 | |
7e00eb9b AL |
35 | ifdef CONFIG_SOLARIS |
36 | LIBS+=-lsocket -lnsl -lresolv | |
37 | endif | |
38 | ||
03ff3ca3 AL |
39 | ifdef CONFIG_WIN32 |
40 | LIBS+=-lwinmm -lws2_32 -liphlpapi | |
41 | endif | |
42 | ||
253d0942 | 43 | build-all: $(TOOLS) $(DOCS) roms recurse-all |
b9dea4fb | 44 | |
55d7e8f6 AJ |
45 | config-host.mak: configure |
46 | ifneq ($(wildcard config-host.mak),) | |
47 | @echo $@ is out-of-date, running configure | |
052ff921 | 48 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh |
55d7e8f6 AJ |
49 | endif |
50 | ||
0087375e | 51 | SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) |
cec7d0b6 PB |
52 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
53 | ||
86e840ee | 54 | subdir-%: |
0087375e | 55 | $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,) |
4aa42531 | 56 | |
cec7d0b6 PB |
57 | $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a |
58 | $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a | |
59 | ||
60 | recurse-all: $(SUBDIR_RULES) | |
83f64091 | 61 | |
faf07963 | 62 | ####################################################################### |
319f08ea | 63 | # block-obj-y is code used by both qemu system emulation and qemu-img |
faf07963 | 64 | |
319f08ea | 65 | block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o |
1a65ba76 JQ |
66 | block-obj-y += nbd.o block.o aio.o aes.o |
67 | ||
68 | block-nested-y += cow.o qcow.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o | |
69 | block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o | |
70 | block-nested-y += parallels.o nbd.o | |
71 | ||
03ff3ca3 AL |
72 | |
73 | ifdef CONFIG_WIN32 | |
1a65ba76 | 74 | block-nested-y += raw-win32.o |
03ff3ca3 | 75 | else |
3c529d93 | 76 | ifdef CONFIG_AIO |
319f08ea | 77 | block-obj-y += posix-aio-compat.o |
3c529d93 | 78 | endif |
1a65ba76 | 79 | block-nested-y += raw-posix.o |
03ff3ca3 AL |
80 | endif |
81 | ||
1a65ba76 JQ |
82 | block-nested-$(CONFIG_CURL) += curl.o |
83 | ||
84 | block-obj-y += $(addprefix block/, $(block-nested-y)) | |
769ce76d | 85 | |
4fb240a4 | 86 | ###################################################################### |
2e2ea909 | 87 | # libqemu_common.a: Target independent part of system emulation. The |
4fb240a4 FB |
88 | # long term path is to suppress *all* target specific code in case of |
89 | # system emulation, i.e. a single QEMU executable should support all | |
90 | # CPUs and machines. | |
47cea614 | 91 | |
6ef859b3 JQ |
92 | obj-y = $(block-obj-y) |
93 | obj-y += readline.o console.o | |
94 | ||
95 | obj-y += irq.o ptimer.o | |
96 | obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o | |
97 | obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o | |
98 | obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o | |
99 | obj-y += scsi-disk.o cdrom.o | |
100 | obj-y += scsi-generic.o | |
101 | obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o | |
102 | obj-y += usb-serial.o usb-net.o | |
103 | obj-y += sd.o ssi-sd.o | |
104 | 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 | |
105 | obj-y += bt-hci-csr.o | |
106 | obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o | |
3b47612b | 107 | obj-y += qemu-char.o aio.o net-checksum.o savevm.o |
6ef859b3 | 108 | obj-y += msmouse.o ps2.o |
ee6847d1 | 109 | obj-y += qdev.o qdev-properties.o ssi.o |
87ecb68b | 110 | |
0e22fd2f JQ |
111 | obj-$(CONFIG_BRLAPI) += baum.o |
112 | ||
2e4d9fb1 | 113 | ifdef CONFIG_BRLAPI |
2e4d9fb1 AJ |
114 | LIBS+=-lbrlapi |
115 | endif | |
116 | ||
4fb240a4 | 117 | ifdef CONFIG_WIN32 |
6ef859b3 | 118 | obj-y += tap-win32.o |
559b90fb | 119 | else |
6ef859b3 | 120 | obj-y += migration-exec.o |
4fb240a4 FB |
121 | endif |
122 | ||
4fb240a4 | 123 | ifdef CONFIG_COREAUDIO |
c6a5a71a | 124 | AUDIO_PT = y |
4fb240a4 | 125 | endif |
4fb240a4 | 126 | ifdef CONFIG_FMOD |
4fb240a4 FB |
127 | audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) |
128 | endif | |
ca9cc28c | 129 | ifdef CONFIG_ESD |
c6a5a71a AL |
130 | AUDIO_PT = y |
131 | AUDIO_PT_INT = y | |
ca9cc28c | 132 | endif |
b8e59f18 | 133 | ifdef CONFIG_PA |
c6a5a71a AL |
134 | AUDIO_PT = y |
135 | AUDIO_PT_INT = y | |
b8e59f18 | 136 | endif |
ca9cc28c AZ |
137 | ifdef AUDIO_PT |
138 | LDFLAGS += -pthread | |
139 | endif | |
0e22fd2f JQ |
140 | |
141 | audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o | |
142 | audio-obj-$(CONFIG_SDL) += sdlaudio.o | |
143 | audio-obj-$(CONFIG_OSS) += ossaudio.o | |
144 | audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o | |
145 | audio-obj-$(CONFIG_ALSA) += alsaaudio.o | |
146 | audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o | |
147 | audio-obj-$(CONFIG_FMOD) += fmodaudio.o | |
148 | audio-obj-$(CONFIG_ESD) += esdaudio.o | |
149 | audio-obj-$(CONFIG_PA) += paaudio.o | |
150 | audio-obj-$(AUDIO_PT_INT) += audio_pt_int.o | |
eda959bd | 151 | audio-obj-y += wavcapture.o |
6ef859b3 | 152 | obj-y += $(addprefix audio/, $(audio-obj-y)) |
4fb240a4 | 153 | |
6ef859b3 | 154 | obj-y += keymaps.o |
0e22fd2f JQ |
155 | obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o |
156 | obj-$(CONFIG_CURSES) += curses.o | |
6ef859b3 | 157 | obj-y += vnc.o acl.o d3des.o |
0e22fd2f JQ |
158 | obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o |
159 | obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o | |
160 | obj-$(CONFIG_COCOA) += cocoa.o | |
161 | obj-$(CONFIG_IOTHREAD) += qemu-thread.o | |
e5d355d1 | 162 | |
4fb240a4 FB |
163 | ifdef CONFIG_SLIRP |
164 | CPPFLAGS+=-I$(SRC_PATH)/slirp | |
0e22fd2f JQ |
165 | endif |
166 | ||
f835ed1c JQ |
167 | slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o |
168 | slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o | |
169 | slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o | |
0e22fd2f | 170 | obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y)) |
4fb240a4 | 171 | |
8a16d273 TS |
172 | LIBS+=$(VDE_LIBS) |
173 | ||
2567f579 | 174 | # xen backend driver support |
0e22fd2f JQ |
175 | obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o |
176 | obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o | |
2567f579 | 177 | |
769ce76d AG |
178 | LIBS+=$(CURL_LIBS) |
179 | ||
4fb240a4 | 180 | cocoa.o: cocoa.m |
4fb240a4 | 181 | |
0483755a AL |
182 | keymaps.o: keymaps.c keymaps.h |
183 | ||
c18a2c36 SS |
184 | sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h |
185 | ||
186 | sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h | |
807544e2 | 187 | |
22d091b3 | 188 | sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: CFLAGS += $(SDL_CFLAGS) |
4fb240a4 | 189 | |
76655d6d AL |
190 | acl.o: acl.h acl.c |
191 | ||
2f9606b3 | 192 | vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h |
5fb6c7a8 | 193 | |
76655d6d | 194 | vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h |
4fb240a4 | 195 | |
807544e2 | 196 | vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS) |
4d3b6f6e | 197 | |
5fb6c7a8 AL |
198 | vnc-tls.o: vnc-tls.c vnc.h |
199 | ||
200 | vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h | |
201 | ||
2f9606b3 AL |
202 | vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h |
203 | ||
0483755a | 204 | curses.o: curses.c keymaps.h curses_keys.h |
fb599c9a | 205 | |
807544e2 | 206 | bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS) |
4fb240a4 | 207 | |
6ef859b3 | 208 | libqemu_common.a: $(obj-y) |
4fb240a4 | 209 | |
cec7d0b6 | 210 | ####################################################################### |
e11b1dce JQ |
211 | # user-obj-y is code used by qemu userspace emulation |
212 | user-obj-y = cutils.o cache-utils.o | |
cec7d0b6 | 213 | |
e11b1dce | 214 | libqemu_user.a: $(user-obj-y) |
cec7d0b6 | 215 | |
4fb240a4 FB |
216 | ###################################################################### |
217 | ||
153859be SB |
218 | qemu-img.o: qemu-img-cmds.h |
219 | ||
319f08ea | 220 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o tool-osdep.o $(block-obj-y) |
4fb240a4 | 221 | |
319f08ea | 222 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o tool-osdep.o $(block-obj-y) |
3aa892d7 | 223 | |
319f08ea | 224 | qemu-io$(EXESUF): qemu-io.o qemu-tool.o tool-osdep.o cmd.o $(block-obj-y) |
0a8e1acd AL |
225 | |
226 | qemu-img$(EXESUF) qemu-nbd$(EXESUF) qemu-io$(EXESUF): LIBS += -lz | |
7a5ca864 | 227 | |
153859be SB |
228 | qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx |
229 | $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") | |
230 | ||
31e31b8a | 231 | clean: |
2d80ae89 | 232 | # avoid old build problems by removing potentially incorrect old files |
5fafdf24 | 233 | 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 |
86e840ee | 234 | rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~ |
019d6b8f | 235 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d |
07b44ce9 | 236 | rm -f qemu-img-cmds.h |
7d3505c5 | 237 | $(MAKE) -C tests clean |
253d0942 | 238 | for d in $(TARGET_DIRS) $(ROMS) libhw32 libhw64; do \ |
7d3505c5 | 239 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 240 | done |
31e31b8a | 241 | |
7d13299d | 242 | distclean: clean |
153859be | 243 | rm -f config-host.mak config-host.h $(DOCS) qemu-options.texi qemu-img-cmds.texi |
0cb3fb1e | 244 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
1ad2134f | 245 | for d in $(TARGET_DIRS) libhw32 libhw64; do \ |
bc1b050d | 246 | rm -rf $$d || exit 1 ; \ |
76bc6838 | 247 | done |
7d13299d | 248 | |
fed4a9ad FB |
249 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
250 | ar de en-us fi fr-be hr it lv nl pl ru th \ | |
251 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr | |
252 | ||
77755340 TS |
253 | ifdef INSTALL_BLOBS |
254 | BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ | |
e5d01b06 AJ |
255 | video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ |
256 | pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \ | |
253d0942 AG |
257 | bamboo.dtb petalogix-s3adsp1800.dtb \ |
258 | multiboot.bin | |
77755340 TS |
259 | else |
260 | BLOBS= | |
261 | endif | |
262 | ||
253d0942 AG |
263 | roms: |
264 | for d in $(ROMS); do \ | |
265 | $(MAKE) -C $$d || exit 1 ; \ | |
266 | done | |
267 | ||
38954dca | 268 | install-doc: $(DOCS) |
58f8aead AL |
269 | $(INSTALL_DIR) "$(DESTDIR)$(docdir)" |
270 | $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" | |
38954dca | 271 | ifndef CONFIG_WIN32 |
58f8aead AL |
272 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" |
273 | $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" | |
274 | $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8" | |
275 | $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" | |
38954dca PB |
276 | endif |
277 | ||
278 | install: all $(if $(BUILD_DOCS),install-doc) | |
58f8aead | 279 | $(INSTALL_DIR) "$(DESTDIR)$(bindir)" |
932a79df | 280 | ifneq ($(TOOLS),) |
58f8aead | 281 | $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)" |
932a79df | 282 | endif |
77755340 | 283 | ifneq ($(BLOBS),) |
58f8aead | 284 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)" |
77755340 | 285 | set -e; for x in $(BLOBS); do \ |
58f8aead | 286 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
ad064840 | 287 | done |
77755340 | 288 | endif |
58f8aead | 289 | $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps" |
18be8d77 | 290 | set -e; for x in $(KEYMAPS); do \ |
79fd42aa | 291 | $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
ad064840 | 292 | done |
626df76a | 293 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 294 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 295 | done |
612384d7 | 296 | |
367e86e8 | 297 | # various test targets |
9b0b8203 | 298 | test speed: all |
7d3505c5 | 299 | $(MAKE) -C tests $@ |
31e31b8a | 300 | |
5fafdf24 | 301 | TAGS: |
ae95ade0 | 302 | etags *.[ch] tests/*.[ch] block/*.[ch] hw/*.[ch] |
31e31b8a | 303 | |
6688bc6d FB |
304 | cscope: |
305 | rm -f ./cscope.* | |
ede46085 | 306 | find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files |
6688bc6d FB |
307 | cscope -b |
308 | ||
3ef693a0 | 309 | # documentation |
1f673135 | 310 | %.html: %.texi |
0d00e563 | 311 | $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@") |
3ef693a0 | 312 | |
f3548328 | 313 | %.info: %.texi |
0d00e563 | 314 | $(call quiet-command,makeinfo -I . $< -o $@," GEN $@") |
f3548328 FB |
315 | |
316 | %.dvi: %.texi | |
0d00e563 | 317 | $(call quiet-command,texi2dvi -I . $<," GEN $@") |
5824d651 BS |
318 | |
319 | qemu-options.texi: $(SRC_PATH)/qemu-options.hx | |
0d00e563 | 320 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") |
f3548328 | 321 | |
2313086a BS |
322 | qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx |
323 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") | |
324 | ||
153859be SB |
325 | qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx |
326 | $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") | |
327 | ||
2313086a | 328 | qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi |
0d00e563 AL |
329 | $(call quiet-command, \ |
330 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ | |
331 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ | |
332 | " GEN $@") | |
5a67135a | 333 | |
153859be | 334 | qemu-img.1: qemu-img.texi qemu-img-cmds.texi |
0d00e563 AL |
335 | $(call quiet-command, \ |
336 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \ | |
337 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \ | |
338 | " GEN $@") | |
acd935ef | 339 | |
7a5ca864 | 340 | qemu-nbd.8: qemu-nbd.texi |
0d00e563 AL |
341 | $(call quiet-command, \ |
342 | perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \ | |
343 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \ | |
344 | " GEN $@") | |
7a5ca864 | 345 | |
0cb3fb1e PB |
346 | info: qemu-doc.info qemu-tech.info |
347 | ||
348 | dvi: qemu-doc.dvi qemu-tech.dvi | |
349 | ||
350 | html: qemu-doc.html qemu-tech.html | |
351 | ||
153859be | 352 | 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 | 353 | |
df5cf721 TS |
354 | VERSION ?= $(shell cat VERSION) |
355 | FILE = qemu-$(VERSION) | |
586314f2 | 356 | |
1e43adfc | 357 | # tar release (use 'make -k tar' on a checkouted tree) |
586314f2 FB |
358 | tar: |
359 | rm -rf /tmp/$(FILE) | |
1e43adfc | 360 | cp -r . /tmp/$(FILE) |
99c6c082 | 361 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
586314f2 FB |
362 | rm -rf /tmp/$(FILE) |
363 | ||
76b62fd0 | 364 | # generate a binary distribution |
d691f669 | 365 | tarbin: |
18be8d77 | 366 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
43095f31 | 367 | $(bindir)/qemu \ |
43095f31 | 368 | $(bindir)/qemu-system-x86_64 \ |
40e8a53b AJ |
369 | $(bindir)/qemu-system-arm \ |
370 | $(bindir)/qemu-system-cris \ | |
371 | $(bindir)/qemu-system-m68k \ | |
93856aac | 372 | $(bindir)/qemu-system-mips \ |
38260998 | 373 | $(bindir)/qemu-system-mipsel \ |
fbe4f65b TS |
374 | $(bindir)/qemu-system-mips64 \ |
375 | $(bindir)/qemu-system-mips64el \ | |
40e8a53b AJ |
376 | $(bindir)/qemu-system-ppc \ |
377 | $(bindir)/qemu-system-ppcemb \ | |
378 | $(bindir)/qemu-system-ppc64 \ | |
ff1aaf65 | 379 | $(bindir)/qemu-system-sh4 \ |
85ffbdfc | 380 | $(bindir)/qemu-system-sh4eb \ |
40e8a53b | 381 | $(bindir)/qemu-system-sparc \ |
7efa4387 | 382 | $(bindir)/qemu-i386 \ |
f0403c03 | 383 | $(bindir)/qemu-x86_64 \ |
40e8a53b AJ |
384 | $(bindir)/qemu-alpha \ |
385 | $(bindir)/qemu-arm \ | |
386 | $(bindir)/qemu-armeb \ | |
387 | $(bindir)/qemu-cris \ | |
388 | $(bindir)/qemu-m68k \ | |
389 | $(bindir)/qemu-mips \ | |
390 | $(bindir)/qemu-mipsel \ | |
391 | $(bindir)/qemu-ppc \ | |
392 | $(bindir)/qemu-ppc64 \ | |
393 | $(bindir)/qemu-ppc64abi32 \ | |
394 | $(bindir)/qemu-sh4 \ | |
395 | $(bindir)/qemu-sh4eb \ | |
396 | $(bindir)/qemu-sparc \ | |
397 | $(bindir)/qemu-sparc64 \ | |
398 | $(bindir)/qemu-sparc32plus \ | |
399 | $(bindir)/qemu-img \ | |
400 | $(bindir)/qemu-nbd \ | |
7efa4387 FB |
401 | $(datadir)/bios.bin \ |
402 | $(datadir)/vgabios.bin \ | |
de9258a8 | 403 | $(datadir)/vgabios-cirrus.bin \ |
637f6cd7 | 404 | $(datadir)/ppc_rom.bin \ |
d5295253 | 405 | $(datadir)/video.x \ |
0986ac3b | 406 | $(datadir)/openbios-sparc32 \ |
938255d2 | 407 | $(datadir)/openbios-sparc64 \ |
e5d01b06 | 408 | $(datadir)/openbios-ppc \ |
40e8a53b | 409 | $(datadir)/pxe-ne2k_pci.bin \ |
19c80e50 | 410 | $(datadir)/pxe-rtl8139.bin \ |
40e8a53b | 411 | $(datadir)/pxe-pcnet.bin \ |
2991990b | 412 | $(datadir)/pxe-e1000.bin \ |
1f50f8d1 FB |
413 | $(docdir)/qemu-doc.html \ |
414 | $(docdir)/qemu-tech.html \ | |
40e8a53b AJ |
415 | $(mandir)/man1/qemu.1 \ |
416 | $(mandir)/man1/qemu-img.1 \ | |
7a5ca864 | 417 | $(mandir)/man8/qemu-nbd.8 |
d691f669 | 418 | |
4fb240a4 | 419 | # Include automatically generated dependency files |
019d6b8f | 420 | -include $(wildcard *.d audio/*.d slirp/*.d block/*.d) |