Statistics
| Branch: | Revision:

root / Makefile @ 807544e2

History | View | Annotate | Download (9.2 kB)

1 0cb3fb1e pbrook
# Makefile for QEMU.
2 0cb3fb1e pbrook
3 ad064840 pbrook
include config-host.mak
4 766a487a bellard
5 818220f5 aliguori
.PHONY: all clean cscope distclean dvi html info install install-doc \
6 818220f5 aliguori
	recurse-all speed tar tarbin test
7 0cb3fb1e pbrook
8 8c462f8f pbrook
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9 8c462f8f pbrook
10 40293e58 bellard
CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11 40293e58 bellard
LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
12 3142255c blueswir1
13 96935aa4 malc
CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
14 4fb240a4 bellard
CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
15 766a487a bellard
LIBS=
16 1f50f8d1 bellard
ifdef CONFIG_STATIC
17 40293e58 bellard
LDFLAGS += -static
18 1f50f8d1 bellard
endif
19 cc8ae6de pbrook
ifdef BUILD_DOCS
20 7a5ca864 bellard
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
21 cc8ae6de pbrook
else
22 cc8ae6de pbrook
DOCS=
23 cc8ae6de pbrook
endif
24 aa05ae6f bellard
25 70956b77 ths
LIBS+=$(AIOLIBS)
26 83f64091 bellard
27 7e00eb9b aliguori
ifdef CONFIG_SOLARIS
28 7e00eb9b aliguori
LIBS+=-lsocket -lnsl -lresolv
29 7e00eb9b aliguori
endif
30 7e00eb9b aliguori
31 03ff3ca3 aliguori
ifdef CONFIG_WIN32
32 03ff3ca3 aliguori
LIBS+=-lwinmm -lws2_32 -liphlpapi
33 03ff3ca3 aliguori
endif
34 03ff3ca3 aliguori
35 818220f5 aliguori
all: $(TOOLS) $(DOCS) recurse-all
36 b9dea4fb pbrook
37 cec7d0b6 pbrook
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
38 cec7d0b6 pbrook
39 86e840ee aurel32
subdir-%:
40 4aa42531 pbrook
	$(MAKE) -C $(subst subdir-,,$@) all
41 4aa42531 pbrook
42 cec7d0b6 pbrook
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
43 cec7d0b6 pbrook
$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
44 cec7d0b6 pbrook
45 cec7d0b6 pbrook
recurse-all: $(SUBDIR_RULES)
46 83f64091 bellard
47 faf07963 pbrook
#######################################################################
48 faf07963 pbrook
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
49 faf07963 pbrook
50 17e2377a pbrook
BLOCK_OBJS=cutils.o qemu-malloc.o
51 faf07963 pbrook
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
52 faf07963 pbrook
BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
53 03ff3ca3 aliguori
BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
54 a76bab49 aliguori
BLOCK_OBJS+=nbd.o block.o aio.o
55 03ff3ca3 aliguori
56 03ff3ca3 aliguori
ifdef CONFIG_WIN32
57 03ff3ca3 aliguori
BLOCK_OBJS += block-raw-win32.o
58 03ff3ca3 aliguori
else
59 3c529d93 aliguori
ifdef CONFIG_AIO
60 3c529d93 aliguori
BLOCK_OBJS += posix-aio-compat.o
61 3c529d93 aliguori
endif
62 03ff3ca3 aliguori
BLOCK_OBJS += block-raw-posix.o
63 03ff3ca3 aliguori
endif
64 03ff3ca3 aliguori
65 4fb240a4 bellard
######################################################################
66 2e2ea909 bellard
# libqemu_common.a: Target independent part of system emulation. The
67 4fb240a4 bellard
# long term path is to suppress *all* target specific code in case of
68 4fb240a4 bellard
# system emulation, i.e. a single QEMU executable should support all
69 4fb240a4 bellard
# CPUs and machines.
70 47cea614 bellard
71 cd01b4a3 aliguori
OBJS=$(BLOCK_OBJS)
72 87ecb68b pbrook
OBJS+=readline.o console.o
73 cd01b4a3 aliguori
74 87ecb68b pbrook
OBJS+=irq.o
75 87ecb68b pbrook
OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
76 7e7c5e4c balrog
OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
77 1d4e547b balrog
OBJS+=tmp105.o lm832x.o
78 87ecb68b pbrook
OBJS+=scsi-disk.o cdrom.o
79 985a03b0 ths
OBJS+=scsi-generic.o
80 68063649 blueswir1
OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
81 6c9f886c balrog
OBJS+=usb-serial.o usb-net.o
82 775616c3 pbrook
OBJS+=sd.o ssi-sd.o
83 e6a6d5ab balrog
OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
84 559b90fb aliguori
OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
85 902b3d5c malc
OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
86 87ecb68b pbrook
87 2e4d9fb1 aurel32
ifdef CONFIG_BRLAPI
88 2e4d9fb1 aurel32
OBJS+= baum.o
89 2e4d9fb1 aurel32
LIBS+=-lbrlapi
90 2e4d9fb1 aurel32
endif
91 2e4d9fb1 aurel32
92 4fb240a4 bellard
ifdef CONFIG_WIN32
93 4fb240a4 bellard
OBJS+=tap-win32.o
94 559b90fb aliguori
else
95 559b90fb aliguori
OBJS+=migration-exec.o
96 4fb240a4 bellard
endif
97 4fb240a4 bellard
98 4fb240a4 bellard
AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
99 4fb240a4 bellard
ifdef CONFIG_SDL
100 4fb240a4 bellard
AUDIO_OBJS += sdlaudio.o
101 4fb240a4 bellard
endif
102 4fb240a4 bellard
ifdef CONFIG_OSS
103 4fb240a4 bellard
AUDIO_OBJS += ossaudio.o
104 4fb240a4 bellard
endif
105 4fb240a4 bellard
ifdef CONFIG_COREAUDIO
106 4fb240a4 bellard
AUDIO_OBJS += coreaudio.o
107 ca9cc28c balrog
AUDIO_PT = yes
108 4fb240a4 bellard
endif
109 4fb240a4 bellard
ifdef CONFIG_ALSA
110 4fb240a4 bellard
AUDIO_OBJS += alsaaudio.o
111 4fb240a4 bellard
endif
112 4fb240a4 bellard
ifdef CONFIG_DSOUND
113 4fb240a4 bellard
AUDIO_OBJS += dsoundaudio.o
114 4fb240a4 bellard
endif
115 4fb240a4 bellard
ifdef CONFIG_FMOD
116 4fb240a4 bellard
AUDIO_OBJS += fmodaudio.o
117 4fb240a4 bellard
audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
118 4fb240a4 bellard
endif
119 ca9cc28c balrog
ifdef CONFIG_ESD
120 ca9cc28c balrog
AUDIO_PT = yes
121 ca9cc28c balrog
AUDIO_PT_INT = yes
122 ca9cc28c balrog
AUDIO_OBJS += esdaudio.o
123 ca9cc28c balrog
endif
124 b8e59f18 malc
ifdef CONFIG_PA
125 b8e59f18 malc
AUDIO_PT = yes
126 b8e59f18 malc
AUDIO_PT_INT = yes
127 b8e59f18 malc
AUDIO_OBJS += paaudio.o
128 b8e59f18 malc
endif
129 ca9cc28c balrog
ifdef AUDIO_PT
130 ca9cc28c balrog
LDFLAGS += -pthread
131 ca9cc28c balrog
endif
132 ca9cc28c balrog
ifdef AUDIO_PT_INT
133 ca9cc28c balrog
AUDIO_OBJS += audio_pt_int.o
134 ca9cc28c balrog
endif
135 4fb240a4 bellard
AUDIO_OBJS+= wavcapture.o
136 4fb240a4 bellard
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
137 4fb240a4 bellard
138 4fb240a4 bellard
ifdef CONFIG_SDL
139 4fb240a4 bellard
OBJS+=sdl.o x_keymap.o
140 4fb240a4 bellard
endif
141 4d3b6f6e balrog
ifdef CONFIG_CURSES
142 4d3b6f6e balrog
OBJS+=curses.o
143 4d3b6f6e balrog
endif
144 4fb240a4 bellard
OBJS+=vnc.o d3des.o
145 4fb240a4 bellard
146 4fb240a4 bellard
ifdef CONFIG_COCOA
147 4fb240a4 bellard
OBJS+=cocoa.o
148 4fb240a4 bellard
endif
149 4fb240a4 bellard
150 4fb240a4 bellard
ifdef CONFIG_SLIRP
151 4fb240a4 bellard
CPPFLAGS+=-I$(SRC_PATH)/slirp
152 4fb240a4 bellard
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
153 4fb240a4 bellard
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
154 4fb240a4 bellard
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
155 4fb240a4 bellard
OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
156 4fb240a4 bellard
endif
157 4fb240a4 bellard
158 8a16d273 ths
LIBS+=$(VDE_LIBS)
159 8a16d273 ths
160 4fb240a4 bellard
cocoa.o: cocoa.m
161 4fb240a4 bellard
162 4fb240a4 bellard
sdl.o: sdl.c keymaps.c sdl_keysym.h
163 807544e2 aliguori
164 807544e2 aliguori
sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
165 4fb240a4 bellard
166 4fb240a4 bellard
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
167 4fb240a4 bellard
168 807544e2 aliguori
vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
169 4d3b6f6e balrog
170 807544e2 aliguori
curses.o: curses.c keymaps.c curses_keys.h
171 fb599c9a balrog
172 807544e2 aliguori
bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
173 4fb240a4 bellard
174 4fb240a4 bellard
libqemu_common.a: $(OBJS)
175 4fb240a4 bellard
	rm -f $@ 
176 4fb240a4 bellard
	$(AR) rcs $@ $(OBJS)
177 4fb240a4 bellard
178 cec7d0b6 pbrook
#######################################################################
179 cec7d0b6 pbrook
# USER_OBJS is code used by qemu userspace emulation
180 902b3d5c malc
USER_OBJS=cutils.o  cache-utils.o
181 cec7d0b6 pbrook
182 cec7d0b6 pbrook
libqemu_user.a: $(USER_OBJS)
183 cec7d0b6 pbrook
	rm -f $@ 
184 cec7d0b6 pbrook
	$(AR) rcs $@ $(USER_OBJS)
185 cec7d0b6 pbrook
186 4fb240a4 bellard
######################################################################
187 4fb240a4 bellard
188 03ff3ca3 aliguori
qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
189 40293e58 bellard
	$(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
190 4fb240a4 bellard
191 4fb240a4 bellard
%.o: %.c
192 40293e58 bellard
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
193 4fb240a4 bellard
194 807544e2 aliguori
%.o: %.m
195 807544e2 aliguori
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
196 807544e2 aliguori
197 03ff3ca3 aliguori
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
198 7a5ca864 bellard
	$(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
199 7a5ca864 bellard
200 31e31b8a bellard
clean:
201 2d80ae89 bellard
# avoid old build problems by removing potentially incorrect old files
202 5fafdf24 ths
	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
203 86e840ee aurel32
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
204 4fb240a4 bellard
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
205 7d3505c5 bellard
	$(MAKE) -C tests clean
206 626df76a bellard
	for d in $(TARGET_DIRS); do \
207 7d3505c5 bellard
	$(MAKE) -C $$d $@ || exit 1 ; \
208 626df76a bellard
        done
209 31e31b8a bellard
210 7d13299d bellard
distclean: clean
211 cc8ae6de pbrook
	rm -f config-host.mak config-host.h $(DOCS)
212 0cb3fb1e pbrook
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
213 76bc6838 bellard
	for d in $(TARGET_DIRS); do \
214 bc1b050d bellard
	rm -rf $$d || exit 1 ; \
215 76bc6838 bellard
        done
216 7d13299d bellard
217 fed4a9ad bellard
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
218 fed4a9ad bellard
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
219 fed4a9ad bellard
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
220 fed4a9ad bellard
221 77755340 ths
ifdef INSTALL_BLOBS
222 77755340 ths
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
223 e5d01b06 aurel32
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
224 e5d01b06 aurel32
pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
225 e5d01b06 aurel32
bamboo.dtb
226 77755340 ths
else
227 77755340 ths
BLOBS=
228 77755340 ths
endif
229 77755340 ths
230 38954dca pbrook
install-doc: $(DOCS)
231 38954dca pbrook
	mkdir -p "$(DESTDIR)$(docdir)"
232 38954dca pbrook
	$(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
233 38954dca pbrook
ifndef CONFIG_WIN32
234 38954dca pbrook
	mkdir -p "$(DESTDIR)$(mandir)/man1"
235 38954dca pbrook
	$(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
236 7a5ca864 bellard
	mkdir -p "$(DESTDIR)$(mandir)/man8"
237 7a5ca864 bellard
	$(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
238 38954dca pbrook
endif
239 38954dca pbrook
240 38954dca pbrook
install: all $(if $(BUILD_DOCS),install-doc)
241 1236cab7 pbrook
	mkdir -p "$(DESTDIR)$(bindir)"
242 932a79df ths
ifneq ($(TOOLS),)
243 6a882643 pbrook
	$(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
244 932a79df ths
endif
245 77755340 ths
ifneq ($(BLOBS),)
246 1236cab7 pbrook
	mkdir -p "$(DESTDIR)$(datadir)"
247 77755340 ths
	set -e; for x in $(BLOBS); do \
248 6a882643 pbrook
		$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
249 ad064840 pbrook
	done
250 77755340 ths
endif
251 11d9f695 bellard
ifndef CONFIG_WIN32
252 1236cab7 pbrook
	mkdir -p "$(DESTDIR)$(datadir)/keymaps"
253 18be8d77 blueswir1
	set -e; for x in $(KEYMAPS); do \
254 6a882643 pbrook
		$(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
255 ad064840 pbrook
	done
256 11d9f695 bellard
endif
257 626df76a bellard
	for d in $(TARGET_DIRS); do \
258 7d3505c5 bellard
	$(MAKE) -C $$d $@ || exit 1 ; \
259 626df76a bellard
        done
260 612384d7 bellard
261 367e86e8 bellard
# various test targets
262 9b0b8203 bellard
test speed: all
263 7d3505c5 bellard
	$(MAKE) -C tests $@
264 31e31b8a bellard
265 5fafdf24 ths
TAGS:
266 b9adb4a6 bellard
	etags *.[ch] tests/*.[ch]
267 31e31b8a bellard
268 6688bc6d bellard
cscope:
269 6688bc6d bellard
	rm -f ./cscope.*
270 ede46085 aurel32
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
271 6688bc6d bellard
	cscope -b
272 6688bc6d bellard
273 3ef693a0 bellard
# documentation
274 1f673135 bellard
%.html: %.texi
275 3ef693a0 bellard
	texi2html -monolithic -number $<
276 3ef693a0 bellard
277 f3548328 bellard
%.info: %.texi
278 f3548328 bellard
	makeinfo $< -o $@
279 f3548328 bellard
280 f3548328 bellard
%.dvi: %.texi
281 f3548328 bellard
	texi2dvi $<
282 f3548328 bellard
283 5a67135a bellard
qemu.1: qemu-doc.texi
284 ad064840 pbrook
	$(SRC_PATH)/texi2pod.pl $< qemu.pod
285 5a67135a bellard
	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
286 5a67135a bellard
287 acd935ef bellard
qemu-img.1: qemu-img.texi
288 ad064840 pbrook
	$(SRC_PATH)/texi2pod.pl $< qemu-img.pod
289 acd935ef bellard
	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
290 acd935ef bellard
291 7a5ca864 bellard
qemu-nbd.8: qemu-nbd.texi
292 7a5ca864 bellard
	$(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
293 7a5ca864 bellard
	pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
294 7a5ca864 bellard
295 0cb3fb1e pbrook
info: qemu-doc.info qemu-tech.info
296 0cb3fb1e pbrook
297 0cb3fb1e pbrook
dvi: qemu-doc.dvi qemu-tech.dvi
298 0cb3fb1e pbrook
299 0cb3fb1e pbrook
html: qemu-doc.html qemu-tech.html
300 0cb3fb1e pbrook
301 818220f5 aliguori
qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
302 818220f5 aliguori
303 df5cf721 ths
VERSION ?= $(shell cat VERSION)
304 df5cf721 ths
FILE = qemu-$(VERSION)
305 586314f2 bellard
306 1e43adfc bellard
# tar release (use 'make -k tar' on a checkouted tree)
307 586314f2 bellard
tar:
308 586314f2 bellard
	rm -rf /tmp/$(FILE)
309 1e43adfc bellard
	cp -r . /tmp/$(FILE)
310 99c6c082 aurel32
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
311 586314f2 bellard
	rm -rf /tmp/$(FILE)
312 586314f2 bellard
313 76b62fd0 bellard
# generate a binary distribution
314 d691f669 bellard
tarbin:
315 18be8d77 blueswir1
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
316 43095f31 bellard
	$(bindir)/qemu \
317 43095f31 bellard
	$(bindir)/qemu-system-x86_64 \
318 40e8a53b aurel32
	$(bindir)/qemu-system-arm \
319 40e8a53b aurel32
	$(bindir)/qemu-system-cris \
320 40e8a53b aurel32
	$(bindir)/qemu-system-m68k \
321 93856aac bellard
	$(bindir)/qemu-system-mips \
322 38260998 pbrook
	$(bindir)/qemu-system-mipsel \
323 fbe4f65b ths
	$(bindir)/qemu-system-mips64 \
324 fbe4f65b ths
	$(bindir)/qemu-system-mips64el \
325 40e8a53b aurel32
	$(bindir)/qemu-system-ppc \
326 40e8a53b aurel32
	$(bindir)/qemu-system-ppcemb \
327 40e8a53b aurel32
	$(bindir)/qemu-system-ppc64 \
328 ff1aaf65 ths
	$(bindir)/qemu-system-sh4 \
329 85ffbdfc ths
	$(bindir)/qemu-system-sh4eb \
330 40e8a53b aurel32
	$(bindir)/qemu-system-sparc \
331 7efa4387 bellard
	$(bindir)/qemu-i386 \
332 f0403c03 bellard
	$(bindir)/qemu-x86_64 \
333 40e8a53b aurel32
	$(bindir)/qemu-alpha \
334 40e8a53b aurel32
	$(bindir)/qemu-arm \
335 40e8a53b aurel32
	$(bindir)/qemu-armeb \
336 40e8a53b aurel32
	$(bindir)/qemu-cris \
337 40e8a53b aurel32
	$(bindir)/qemu-m68k \
338 40e8a53b aurel32
	$(bindir)/qemu-mips \
339 40e8a53b aurel32
	$(bindir)/qemu-mipsel \
340 40e8a53b aurel32
	$(bindir)/qemu-ppc \
341 40e8a53b aurel32
	$(bindir)/qemu-ppc64 \
342 40e8a53b aurel32
	$(bindir)/qemu-ppc64abi32 \
343 40e8a53b aurel32
	$(bindir)/qemu-sh4 \
344 40e8a53b aurel32
	$(bindir)/qemu-sh4eb \
345 40e8a53b aurel32
	$(bindir)/qemu-sparc \
346 40e8a53b aurel32
	$(bindir)/qemu-sparc64 \
347 40e8a53b aurel32
	$(bindir)/qemu-sparc32plus \
348 40e8a53b aurel32
	$(bindir)/qemu-img \
349 40e8a53b aurel32
	$(bindir)/qemu-nbd \
350 7efa4387 bellard
	$(datadir)/bios.bin \
351 7efa4387 bellard
	$(datadir)/vgabios.bin \
352 de9258a8 bellard
	$(datadir)/vgabios-cirrus.bin \
353 637f6cd7 bellard
	$(datadir)/ppc_rom.bin \
354 d5295253 bellard
	$(datadir)/video.x \
355 0986ac3b bellard
	$(datadir)/openbios-sparc32 \
356 938255d2 blueswir1
	$(datadir)/openbios-sparc64 \
357 e5d01b06 aurel32
	$(datadir)/openbios-ppc \
358 40e8a53b aurel32
	$(datadir)/pxe-ne2k_pci.bin \
359 19c80e50 bellard
	$(datadir)/pxe-rtl8139.bin \
360 40e8a53b aurel32
	$(datadir)/pxe-pcnet.bin \
361 2991990b aliguori
	$(datadir)/pxe-e1000.bin \
362 1f50f8d1 bellard
	$(docdir)/qemu-doc.html \
363 1f50f8d1 bellard
	$(docdir)/qemu-tech.html \
364 40e8a53b aurel32
	$(mandir)/man1/qemu.1 \
365 40e8a53b aurel32
	$(mandir)/man1/qemu-img.1 \
366 7a5ca864 bellard
	$(mandir)/man8/qemu-nbd.8
367 d691f669 bellard
368 4fb240a4 bellard
# Include automatically generated dependency files
369 4fb240a4 bellard
-include $(wildcard *.d audio/*.d slirp/*.d)