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