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