blob: 871970aa7c3e32b62f2615d4b1bf8176cd8c0f0a [file] [log] [blame]
pbrook0cb3fb12006-05-14 12:07:53 +00001# Makefile for QEMU.
2
pbrookad064842006-04-16 12:41:07 +00003include config-host.mak
bellard766a4872003-02-18 23:35:48 +00004
aliguori818220f2008-09-24 01:13:40 +00005.PHONY: all clean cscope distclean dvi html info install install-doc \
6 recurse-all speed tar tarbin test
pbrook0cb3fb12006-05-14 12:07:53 +00007
pbrook8c462f82007-11-18 21:12:37 +00008VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9
bellard40293e52008-01-31 11:32:10 +000010CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
blueswir131422552007-04-16 18:27:06 +000012
malc96935aa2008-07-02 21:16:22 +000013CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
bellard4fb240a2007-11-07 19:24:02 +000014CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
bellard766a4872003-02-18 23:35:48 +000015LIBS=
bellard1f50f8d2004-05-08 14:44:43 +000016ifdef CONFIG_STATIC
bellard40293e52008-01-31 11:32:10 +000017LDFLAGS += -static
bellard1f50f8d2004-05-08 14:44:43 +000018endif
pbrookcc8ae6d2006-04-23 17:57:59 +000019ifdef BUILD_DOCS
bellard7a5ca862008-05-27 21:13:40 +000020DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
pbrookcc8ae6d2006-04-23 17:57:59 +000021else
22DOCS=
23endif
bellard7d132992003-03-06 23:23:54 +000024
ths70956b72007-03-17 15:00:37 +000025LIBS+=$(AIOLIBS)
bellard83f64092006-08-01 16:21:11 +000026
aliguori7e00eb92008-08-02 01:57:02 +000027ifdef CONFIG_SOLARIS
28LIBS+=-lsocket -lnsl -lresolv
29endif
30
aliguori03ff3ca2008-09-15 15:51:35 +000031ifdef CONFIG_WIN32
32LIBS+=-lwinmm -lws2_32 -liphlpapi
33endif
34
aliguori818220f2008-09-24 01:13:40 +000035all: $(TOOLS) $(DOCS) recurse-all
pbrookb9dea4f2006-05-13 16:54:03 +000036
pbrookcec7d0b2008-05-28 16:44:57 +000037SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
38
aurel3286e840e2008-12-07 15:21:23 +000039subdir-%:
pbrook4aa42532006-05-13 13:55:08 +000040 $(MAKE) -C $(subst subdir-,,$@) all
41
pbrookcec7d0b2008-05-28 16:44:57 +000042$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
43$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
44
45recurse-all: $(SUBDIR_RULES)
bellard83f64092006-08-01 16:21:11 +000046
pbrookfaf07962007-11-11 02:51:17 +000047#######################################################################
48# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
49
pbrook17e23772008-06-09 13:47:45 +000050BLOCK_OBJS=cutils.o qemu-malloc.o
pbrookfaf07962007-11-11 02:51:17 +000051BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
52BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
aliguori03ff3ca2008-09-15 15:51:35 +000053BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
aliguoria76bab42008-09-22 19:17:18 +000054BLOCK_OBJS+=nbd.o block.o aio.o
aliguori03ff3ca2008-09-15 15:51:35 +000055
56ifdef CONFIG_WIN32
57BLOCK_OBJS += block-raw-win32.o
58else
aliguori3c529d92008-12-12 16:41:40 +000059ifdef CONFIG_AIO
60BLOCK_OBJS += posix-aio-compat.o
61endif
aliguori03ff3ca2008-09-15 15:51:35 +000062BLOCK_OBJS += block-raw-posix.o
63endif
64
bellard4fb240a2007-11-07 19:24:02 +000065######################################################################
bellard2e2ea902008-02-01 10:02:52 +000066# libqemu_common.a: Target independent part of system emulation. The
bellard4fb240a2007-11-07 19:24:02 +000067# long term path is to suppress *all* target specific code in case of
68# system emulation, i.e. a single QEMU executable should support all
69# CPUs and machines.
bellard47cea612004-05-17 20:06:42 +000070
aliguoricd01b4a2008-08-21 19:25:45 +000071OBJS=$(BLOCK_OBJS)
pbrook87ecb682007-11-17 17:14:51 +000072OBJS+=readline.o console.o
aliguoricd01b4a2008-08-21 19:25:45 +000073
pbrook87ecb682007-11-17 17:14:51 +000074OBJS+=irq.o
75OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
balrog7e7c5e42008-04-14 21:57:44 +000076OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
balrog1d4e5472008-05-09 22:16:11 +000077OBJS+=tmp105.o lm832x.o
pbrook87ecb682007-11-17 17:14:51 +000078OBJS+=scsi-disk.o cdrom.o
ths985a03b2007-12-24 16:10:43 +000079OBJS+=scsi-generic.o
blueswir168063642008-11-22 21:03:55 +000080OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
balrog6c9f8862008-07-17 20:47:13 +000081OBJS+=usb-serial.o usb-net.o
pbrook775616c2007-11-24 23:35:08 +000082OBJS+=sd.o ssi-sd.o
balroge6a6d5a2008-09-29 00:40:44 +000083OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
aliguori559b90f2008-11-11 21:20:14 +000084OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
malc902b3d52008-12-10 19:18:40 +000085OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
pbrook87ecb682007-11-17 17:14:51 +000086
aurel322e4d9fb2008-04-08 06:01:02 +000087ifdef CONFIG_BRLAPI
88OBJS+= baum.o
89LIBS+=-lbrlapi
90endif
91
bellard4fb240a2007-11-07 19:24:02 +000092ifdef CONFIG_WIN32
93OBJS+=tap-win32.o
aliguori559b90f2008-11-11 21:20:14 +000094else
95OBJS+=migration-exec.o
bellard4fb240a2007-11-07 19:24:02 +000096endif
97
98AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
99ifdef CONFIG_SDL
100AUDIO_OBJS += sdlaudio.o
101endif
102ifdef CONFIG_OSS
103AUDIO_OBJS += ossaudio.o
104endif
105ifdef CONFIG_COREAUDIO
106AUDIO_OBJS += coreaudio.o
balrogca9cc282008-01-14 04:24:29 +0000107AUDIO_PT = yes
bellard4fb240a2007-11-07 19:24:02 +0000108endif
109ifdef CONFIG_ALSA
110AUDIO_OBJS += alsaaudio.o
111endif
112ifdef CONFIG_DSOUND
113AUDIO_OBJS += dsoundaudio.o
114endif
115ifdef CONFIG_FMOD
116AUDIO_OBJS += fmodaudio.o
117audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
118endif
balrogca9cc282008-01-14 04:24:29 +0000119ifdef CONFIG_ESD
120AUDIO_PT = yes
121AUDIO_PT_INT = yes
122AUDIO_OBJS += esdaudio.o
123endif
malcb8e59f12008-07-02 21:03:08 +0000124ifdef CONFIG_PA
125AUDIO_PT = yes
126AUDIO_PT_INT = yes
127AUDIO_OBJS += paaudio.o
128endif
balrogca9cc282008-01-14 04:24:29 +0000129ifdef AUDIO_PT
130LDFLAGS += -pthread
131endif
132ifdef AUDIO_PT_INT
133AUDIO_OBJS += audio_pt_int.o
134endif
bellard4fb240a2007-11-07 19:24:02 +0000135AUDIO_OBJS+= wavcapture.o
136OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
137
138ifdef CONFIG_SDL
139OBJS+=sdl.o x_keymap.o
140endif
balrog4d3b6f62008-02-10 16:33:14 +0000141ifdef CONFIG_CURSES
142OBJS+=curses.o
143endif
bellard4fb240a2007-11-07 19:24:02 +0000144OBJS+=vnc.o d3des.o
145
146ifdef CONFIG_COCOA
147OBJS+=cocoa.o
148endif
149
150ifdef CONFIG_SLIRP
151CPPFLAGS+=-I$(SRC_PATH)/slirp
152SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
153slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
154tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
155OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
156endif
157
ths8a16d272008-07-19 09:56:24 +0000158LIBS+=$(VDE_LIBS)
159
bellard4fb240a2007-11-07 19:24:02 +0000160cocoa.o: cocoa.m
bellard40293e52008-01-31 11:32:10 +0000161 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000162
163sdl.o: sdl.c keymaps.c sdl_keysym.h
bellard40293e52008-01-31 11:32:10 +0000164 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000165
166vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
bellard40293e52008-01-31 11:32:10 +0000167 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000168
balrog4d3b6f62008-02-10 16:33:14 +0000169curses.o: curses.c keymaps.c curses_keys.h
pbrookf5d28392008-03-31 23:41:24 +0000170 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
balrog4d3b6f62008-02-10 16:33:14 +0000171
balrogfb599c92008-09-28 23:49:55 +0000172bt-host.o: bt-host.c
173 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_BLUEZ_CFLAGS) -c -o $@ $<
174
bellard4fb240a2007-11-07 19:24:02 +0000175audio/sdlaudio.o: audio/sdlaudio.c
bellard40293e52008-01-31 11:32:10 +0000176 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000177
178libqemu_common.a: $(OBJS)
179 rm -f $@
180 $(AR) rcs $@ $(OBJS)
181
pbrookcec7d0b2008-05-28 16:44:57 +0000182#######################################################################
183# USER_OBJS is code used by qemu userspace emulation
malc902b3d52008-12-10 19:18:40 +0000184USER_OBJS=cutils.o cache-utils.o
pbrookcec7d0b2008-05-28 16:44:57 +0000185
186libqemu_user.a: $(USER_OBJS)
187 rm -f $@
188 $(AR) rcs $@ $(USER_OBJS)
189
bellard4fb240a2007-11-07 19:24:02 +0000190######################################################################
191
aliguori03ff3ca2008-09-15 15:51:35 +0000192qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
bellard40293e52008-01-31 11:32:10 +0000193 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
bellard4fb240a2007-11-07 19:24:02 +0000194
195%.o: %.c
bellard40293e52008-01-31 11:32:10 +0000196 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000197
aliguori03ff3ca2008-09-15 15:51:35 +0000198qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
bellard7a5ca862008-05-27 21:13:40 +0000199 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
200
bellard31e31b82003-02-18 22:55:36 +0000201clean:
bellard2d80ae82003-08-11 23:01:33 +0000202# avoid old build problems by removing potentially incorrect old files
ths5fafdf22007-09-16 21:08:06 +0000203 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
aurel3286e840e2008-12-07 15:21:23 +0000204 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
bellard4fb240a2007-11-07 19:24:02 +0000205 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
bellard7d3505c2004-05-12 19:32:15 +0000206 $(MAKE) -C tests clean
bellard626df762003-08-10 21:39:31 +0000207 for d in $(TARGET_DIRS); do \
bellard7d3505c2004-05-12 19:32:15 +0000208 $(MAKE) -C $$d $@ || exit 1 ; \
bellard626df762003-08-10 21:39:31 +0000209 done
bellard31e31b82003-02-18 22:55:36 +0000210
bellard7d132992003-03-06 23:23:54 +0000211distclean: clean
pbrookcc8ae6d2006-04-23 17:57:59 +0000212 rm -f config-host.mak config-host.h $(DOCS)
pbrook0cb3fb12006-05-14 12:07:53 +0000213 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
bellard76bc6832003-08-10 23:41:46 +0000214 for d in $(TARGET_DIRS); do \
bellardbc1b0502003-10-28 00:12:52 +0000215 rm -rf $$d || exit 1 ; \
bellard76bc6832003-08-10 23:41:46 +0000216 done
bellard7d132992003-03-06 23:23:54 +0000217
bellardfed4a9a2004-12-12 22:18:34 +0000218KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
219ar de en-us fi fr-be hr it lv nl pl ru th \
220common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
221
ths77755342008-11-27 15:45:16 +0000222ifdef INSTALL_BLOBS
223BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
224video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
aurel322c9fade2008-12-16 10:44:14 +0000225pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin bamboo.dtb
ths77755342008-11-27 15:45:16 +0000226else
227BLOBS=
228endif
229
pbrook38954dc2006-04-30 23:54:18 +0000230install-doc: $(DOCS)
231 mkdir -p "$(DESTDIR)$(docdir)"
232 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
233ifndef CONFIG_WIN32
234 mkdir -p "$(DESTDIR)$(mandir)/man1"
235 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
bellard7a5ca862008-05-27 21:13:40 +0000236 mkdir -p "$(DESTDIR)$(mandir)/man8"
237 $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
pbrook38954dc2006-04-30 23:54:18 +0000238endif
239
240install: all $(if $(BUILD_DOCS),install-doc)
pbrook1236cab2006-04-09 20:47:35 +0000241 mkdir -p "$(DESTDIR)$(bindir)"
ths932a79d2007-10-20 18:29:34 +0000242ifneq ($(TOOLS),)
pbrook6a882642006-04-17 13:57:12 +0000243 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
ths932a79d2007-10-20 18:29:34 +0000244endif
ths77755342008-11-27 15:45:16 +0000245ifneq ($(BLOBS),)
pbrook1236cab2006-04-09 20:47:35 +0000246 mkdir -p "$(DESTDIR)$(datadir)"
ths77755342008-11-27 15:45:16 +0000247 set -e; for x in $(BLOBS); do \
pbrook6a882642006-04-17 13:57:12 +0000248 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
pbrookad064842006-04-16 12:41:07 +0000249 done
ths77755342008-11-27 15:45:16 +0000250endif
bellard11d9f692004-04-02 20:55:59 +0000251ifndef CONFIG_WIN32
pbrook1236cab2006-04-09 20:47:35 +0000252 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
blueswir118be8d72008-03-05 18:16:09 +0000253 set -e; for x in $(KEYMAPS); do \
pbrook6a882642006-04-17 13:57:12 +0000254 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
pbrookad064842006-04-16 12:41:07 +0000255 done
bellard11d9f692004-04-02 20:55:59 +0000256endif
bellard626df762003-08-10 21:39:31 +0000257 for d in $(TARGET_DIRS); do \
bellard7d3505c2004-05-12 19:32:15 +0000258 $(MAKE) -C $$d $@ || exit 1 ; \
bellard626df762003-08-10 21:39:31 +0000259 done
bellard612384d2003-03-22 17:31:19 +0000260
bellard367e86e2003-03-01 17:13:26 +0000261# various test targets
bellard9b0b8202007-11-14 10:34:57 +0000262test speed: all
bellard7d3505c2004-05-12 19:32:15 +0000263 $(MAKE) -C tests $@
bellard31e31b82003-02-18 22:55:36 +0000264
ths5fafdf22007-09-16 21:08:06 +0000265TAGS:
bellardb9adb4a2003-04-29 20:41:16 +0000266 etags *.[ch] tests/*.[ch]
bellard31e31b82003-02-18 22:55:36 +0000267
bellard6688bc62005-08-21 09:23:39 +0000268cscope:
269 rm -f ./cscope.*
aurel32ede46082008-10-01 21:46:58 +0000270 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
bellard6688bc62005-08-21 09:23:39 +0000271 cscope -b
272
bellard3ef693a2003-03-23 20:17:16 +0000273# documentation
bellard1f673132004-04-04 15:21:17 +0000274%.html: %.texi
bellard3ef693a2003-03-23 20:17:16 +0000275 texi2html -monolithic -number $<
276
bellardf3548322006-04-30 22:51:54 +0000277%.info: %.texi
278 makeinfo $< -o $@
279
280%.dvi: %.texi
281 texi2dvi $<
282
bellard5a671352003-10-01 00:13:48 +0000283qemu.1: qemu-doc.texi
pbrookad064842006-04-16 12:41:07 +0000284 $(SRC_PATH)/texi2pod.pl $< qemu.pod
bellard5a671352003-10-01 00:13:48 +0000285 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
286
bellardacd935e2004-11-15 22:57:26 +0000287qemu-img.1: qemu-img.texi
pbrookad064842006-04-16 12:41:07 +0000288 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
bellardacd935e2004-11-15 22:57:26 +0000289 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
290
bellard7a5ca862008-05-27 21:13:40 +0000291qemu-nbd.8: qemu-nbd.texi
292 $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
293 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
294
pbrook0cb3fb12006-05-14 12:07:53 +0000295info: qemu-doc.info qemu-tech.info
296
297dvi: qemu-doc.dvi qemu-tech.dvi
298
299html: qemu-doc.html qemu-tech.html
300
aliguori818220f2008-09-24 01:13:40 +0000301qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
302
thsdf5cf722007-01-24 22:56:36 +0000303VERSION ?= $(shell cat VERSION)
304FILE = qemu-$(VERSION)
bellard586314f2003-03-03 15:02:29 +0000305
bellard1e43adf2003-09-30 20:54:24 +0000306# tar release (use 'make -k tar' on a checkouted tree)
bellard586314f2003-03-03 15:02:29 +0000307tar:
308 rm -rf /tmp/$(FILE)
bellard1e43adf2003-09-30 20:54:24 +0000309 cp -r . /tmp/$(FILE)
aurel3299c6c082008-04-22 20:45:30 +0000310 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
bellard586314f2003-03-03 15:02:29 +0000311 rm -rf /tmp/$(FILE)
312
bellard76b62fd2003-10-28 00:47:44 +0000313# generate a binary distribution
bellardd691f662003-03-24 21:58:34 +0000314tarbin:
blueswir118be8d72008-03-05 18:16:09 +0000315 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
bellard43095f32005-04-27 20:49:23 +0000316 $(bindir)/qemu \
bellard43095f32005-04-27 20:49:23 +0000317 $(bindir)/qemu-system-x86_64 \
aurel3240e8a532009-01-03 12:35:57 +0000318 $(bindir)/qemu-system-arm \
319 $(bindir)/qemu-system-cris \
320 $(bindir)/qemu-system-m68k \
bellard93856aa2005-07-24 18:44:35 +0000321 $(bindir)/qemu-system-mips \
pbrook38260992006-03-11 14:51:13 +0000322 $(bindir)/qemu-system-mipsel \
thsfbe4f652007-04-01 11:16:48 +0000323 $(bindir)/qemu-system-mips64 \
324 $(bindir)/qemu-system-mips64el \
aurel3240e8a532009-01-03 12:35:57 +0000325 $(bindir)/qemu-system-ppc \
326 $(bindir)/qemu-system-ppcemb \
327 $(bindir)/qemu-system-ppc64 \
thsff1aaf62007-09-29 21:18:26 +0000328 $(bindir)/qemu-system-sh4 \
ths85ffbdf2007-12-09 05:10:03 +0000329 $(bindir)/qemu-system-sh4eb \
aurel3240e8a532009-01-03 12:35:57 +0000330 $(bindir)/qemu-system-sparc \
bellard7efa4382004-05-12 18:54:06 +0000331 $(bindir)/qemu-i386 \
bellardf0403c02008-01-06 18:27:12 +0000332 $(bindir)/qemu-x86_64 \
aurel3240e8a532009-01-03 12:35:57 +0000333 $(bindir)/qemu-alpha \
334 $(bindir)/qemu-arm \
335 $(bindir)/qemu-armeb \
336 $(bindir)/qemu-cris \
337 $(bindir)/qemu-m68k \
338 $(bindir)/qemu-mips \
339 $(bindir)/qemu-mipsel \
340 $(bindir)/qemu-ppc \
341 $(bindir)/qemu-ppc64 \
342 $(bindir)/qemu-ppc64abi32 \
343 $(bindir)/qemu-sh4 \
344 $(bindir)/qemu-sh4eb \
345 $(bindir)/qemu-sparc \
346 $(bindir)/qemu-sparc64 \
347 $(bindir)/qemu-sparc32plus \
348 $(bindir)/qemu-img \
349 $(bindir)/qemu-nbd \
bellard7efa4382004-05-12 18:54:06 +0000350 $(datadir)/bios.bin \
351 $(datadir)/vgabios.bin \
bellardde9258a2004-06-06 15:50:03 +0000352 $(datadir)/vgabios-cirrus.bin \
bellard637f6cd2004-06-21 19:54:47 +0000353 $(datadir)/ppc_rom.bin \
bellardd5295252005-07-03 14:00:51 +0000354 $(datadir)/video.x \
bellard0986ac32006-06-14 12:36:32 +0000355 $(datadir)/openbios-sparc32 \
blueswir1938255d2008-04-23 19:38:07 +0000356 $(datadir)/openbios-sparc64 \
aurel3240e8a532009-01-03 12:35:57 +0000357 $(datadir)/pxe-ne2k_pci.bin \
bellard19c80e52007-02-05 21:22:42 +0000358 $(datadir)/pxe-rtl8139.bin \
aurel3240e8a532009-01-03 12:35:57 +0000359 $(datadir)/pxe-pcnet.bin \
aliguori29919902008-07-26 16:53:22 +0000360 $(datadir)/pxe-e1000.bin \
bellard1f50f8d2004-05-08 14:44:43 +0000361 $(docdir)/qemu-doc.html \
362 $(docdir)/qemu-tech.html \
aurel3240e8a532009-01-03 12:35:57 +0000363 $(mandir)/man1/qemu.1 \
364 $(mandir)/man1/qemu-img.1 \
bellard7a5ca862008-05-27 21:13:40 +0000365 $(mandir)/man8/qemu-nbd.8
bellardd691f662003-03-24 21:58:34 +0000366
bellard4fb240a2007-11-07 19:24:02 +0000367# Include automatically generated dependency files
368-include $(wildcard *.d audio/*.d slirp/*.d)