blob: d227f911b02f1a870b5d9d29d08252aaa2ad5ca2 [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
pbrook0cb3fb12006-05-14 12:07:53 +00005.PHONY: all clean distclean dvi info install install-doc tar tarbin \
bellard9b0b8202007-11-14 10:34:57 +00006 speed test html dvi info
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
bellard4fb240a2007-11-07 19:24:02 +000013CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
14CPPFLAGS += -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
pbrookda0b0df2007-11-10 19:30:52 +000027all: $(TOOLS) $(DOCS) recurse-all
pbrookb9dea4f2006-05-13 16:54:03 +000028
pbrookcec7d0b2008-05-28 16:44:57 +000029SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
30
31subdir-%: dyngen$(EXESUF)
pbrook4aa42532006-05-13 13:55:08 +000032 $(MAKE) -C $(subst subdir-,,$@) all
33
pbrookcec7d0b2008-05-28 16:44:57 +000034$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
35$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
36
37recurse-all: $(SUBDIR_RULES)
bellard83f64092006-08-01 16:21:11 +000038
pbrookfaf07962007-11-11 02:51:17 +000039#######################################################################
40# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
41
42BLOCK_OBJS=cutils.o
43BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
44BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
45BLOCK_OBJS+=block-qcow2.o block-parallels.o
46
bellard4fb240a2007-11-07 19:24:02 +000047######################################################################
bellard2e2ea902008-02-01 10:02:52 +000048# libqemu_common.a: Target independent part of system emulation. The
bellard4fb240a2007-11-07 19:24:02 +000049# long term path is to suppress *all* target specific code in case of
50# system emulation, i.e. a single QEMU executable should support all
51# CPUs and machines.
bellard47cea612004-05-17 20:06:42 +000052
pbrookfaf07962007-11-11 02:51:17 +000053OBJS=$(BLOCK_OBJS)
pbrook87ecb682007-11-17 17:14:51 +000054OBJS+=readline.o console.o
pbrookfaf07962007-11-11 02:51:17 +000055OBJS+=block.o
bellard4fb240a2007-11-07 19:24:02 +000056
pbrook87ecb682007-11-17 17:14:51 +000057OBJS+=irq.o
58OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
balrog7e7c5e42008-04-14 21:57:44 +000059OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
balrog1d4e5472008-05-09 22:16:11 +000060OBJS+=tmp105.o lm832x.o
pbrook87ecb682007-11-17 17:14:51 +000061OBJS+=scsi-disk.o cdrom.o
ths985a03b2007-12-24 16:10:43 +000062OBJS+=scsi-generic.o
balroga7954212008-01-14 03:41:02 +000063OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
pbrook775616c2007-11-24 23:35:08 +000064OBJS+=sd.o ssi-sd.o
pbrook87ecb682007-11-17 17:14:51 +000065
aurel322e4d9fb2008-04-08 06:01:02 +000066ifdef CONFIG_BRLAPI
67OBJS+= baum.o
68LIBS+=-lbrlapi
69endif
70
bellard4fb240a2007-11-07 19:24:02 +000071ifdef CONFIG_WIN32
72OBJS+=tap-win32.o
73endif
74
75AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
76ifdef CONFIG_SDL
77AUDIO_OBJS += sdlaudio.o
78endif
79ifdef CONFIG_OSS
80AUDIO_OBJS += ossaudio.o
81endif
82ifdef CONFIG_COREAUDIO
83AUDIO_OBJS += coreaudio.o
balrogca9cc282008-01-14 04:24:29 +000084AUDIO_PT = yes
bellard4fb240a2007-11-07 19:24:02 +000085endif
86ifdef CONFIG_ALSA
87AUDIO_OBJS += alsaaudio.o
88endif
89ifdef CONFIG_DSOUND
90AUDIO_OBJS += dsoundaudio.o
91endif
92ifdef CONFIG_FMOD
93AUDIO_OBJS += fmodaudio.o
94audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
95endif
balrogca9cc282008-01-14 04:24:29 +000096ifdef CONFIG_ESD
97AUDIO_PT = yes
98AUDIO_PT_INT = yes
99AUDIO_OBJS += esdaudio.o
100endif
101ifdef AUDIO_PT
102LDFLAGS += -pthread
103endif
104ifdef AUDIO_PT_INT
105AUDIO_OBJS += audio_pt_int.o
106endif
bellard4fb240a2007-11-07 19:24:02 +0000107AUDIO_OBJS+= wavcapture.o
108OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
109
110ifdef CONFIG_SDL
111OBJS+=sdl.o x_keymap.o
112endif
balrog4d3b6f62008-02-10 16:33:14 +0000113ifdef CONFIG_CURSES
114OBJS+=curses.o
115endif
bellard4fb240a2007-11-07 19:24:02 +0000116OBJS+=vnc.o d3des.o
117
118ifdef CONFIG_COCOA
119OBJS+=cocoa.o
120endif
121
122ifdef CONFIG_SLIRP
123CPPFLAGS+=-I$(SRC_PATH)/slirp
124SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
125slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
126tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
127OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
128endif
129
130cocoa.o: cocoa.m
bellard40293e52008-01-31 11:32:10 +0000131 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000132
133sdl.o: sdl.c keymaps.c sdl_keysym.h
bellard40293e52008-01-31 11:32:10 +0000134 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000135
136vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
bellard40293e52008-01-31 11:32:10 +0000137 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000138
balrog4d3b6f62008-02-10 16:33:14 +0000139curses.o: curses.c keymaps.c curses_keys.h
pbrookf5d28392008-03-31 23:41:24 +0000140 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
balrog4d3b6f62008-02-10 16:33:14 +0000141
bellard4fb240a2007-11-07 19:24:02 +0000142audio/sdlaudio.o: audio/sdlaudio.c
bellard40293e52008-01-31 11:32:10 +0000143 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000144
145libqemu_common.a: $(OBJS)
146 rm -f $@
147 $(AR) rcs $@ $(OBJS)
148
pbrookcec7d0b2008-05-28 16:44:57 +0000149#######################################################################
150# USER_OBJS is code used by qemu userspace emulation
151USER_OBJS=cutils.o
152
153libqemu_user.a: $(USER_OBJS)
154 rm -f $@
155 $(AR) rcs $@ $(USER_OBJS)
156
ths223d4672007-12-15 17:28:36 +0000157QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
158ifdef CONFIG_WIN32
159QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
160else
161QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
162endif
163
bellard4fb240a2007-11-07 19:24:02 +0000164######################################################################
165
ths223d4672007-12-15 17:28:36 +0000166qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
bellard40293e52008-01-31 11:32:10 +0000167 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
bellard4fb240a2007-11-07 19:24:02 +0000168
pbrookfaf07962007-11-11 02:51:17 +0000169qemu-img-%.o: %.c
bellard40293e52008-01-31 11:32:10 +0000170 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
pbrookfaf07962007-11-11 02:51:17 +0000171
bellard4fb240a2007-11-07 19:24:02 +0000172%.o: %.c
bellard40293e52008-01-31 11:32:10 +0000173 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
bellard4fb240a2007-11-07 19:24:02 +0000174
bellard7a5ca862008-05-27 21:13:40 +0000175qemu-nbd$(EXESUF): qemu-nbd.o nbd.o qemu-img-block.o \
176 $(QEMU_IMG_BLOCK_OBJS)
177 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
178
bellard4fb240a2007-11-07 19:24:02 +0000179# dyngen host tool
bellard11d9f692004-04-02 20:55:59 +0000180dyngen$(EXESUF): dyngen.c
bellard40293e52008-01-31 11:32:10 +0000181 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
bellard31e31b82003-02-18 22:55:36 +0000182
183clean:
bellard2d80ae82003-08-11 23:01:33 +0000184# avoid old build problems by removing potentially incorrect old files
ths5fafdf22007-09-16 21:08:06 +0000185 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
bellard4fb240a2007-11-07 19:24:02 +0000186 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
balrogb94ec3e2008-01-14 02:36:29 +0000187 rm -rf dyngen.dSYM
bellard4fb240a2007-11-07 19:24:02 +0000188 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
bellard7d3505c2004-05-12 19:32:15 +0000189 $(MAKE) -C tests clean
bellard626df762003-08-10 21:39:31 +0000190 for d in $(TARGET_DIRS); do \
bellard7d3505c2004-05-12 19:32:15 +0000191 $(MAKE) -C $$d $@ || exit 1 ; \
bellard626df762003-08-10 21:39:31 +0000192 done
bellard31e31b82003-02-18 22:55:36 +0000193
bellard7d132992003-03-06 23:23:54 +0000194distclean: clean
pbrookcc8ae6d2006-04-23 17:57:59 +0000195 rm -f config-host.mak config-host.h $(DOCS)
pbrook0cb3fb12006-05-14 12:07:53 +0000196 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
bellard76bc6832003-08-10 23:41:46 +0000197 for d in $(TARGET_DIRS); do \
bellardbc1b0502003-10-28 00:12:52 +0000198 rm -rf $$d || exit 1 ; \
bellard76bc6832003-08-10 23:41:46 +0000199 done
bellard7d132992003-03-06 23:23:54 +0000200
bellardfed4a9a2004-12-12 22:18:34 +0000201KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
202ar de en-us fi fr-be hr it lv nl pl ru th \
203common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
204
pbrook38954dc2006-04-30 23:54:18 +0000205install-doc: $(DOCS)
206 mkdir -p "$(DESTDIR)$(docdir)"
207 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
208ifndef CONFIG_WIN32
209 mkdir -p "$(DESTDIR)$(mandir)/man1"
210 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
bellard7a5ca862008-05-27 21:13:40 +0000211 mkdir -p "$(DESTDIR)$(mandir)/man8"
212 $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
pbrook38954dc2006-04-30 23:54:18 +0000213endif
214
215install: all $(if $(BUILD_DOCS),install-doc)
pbrook1236cab2006-04-09 20:47:35 +0000216 mkdir -p "$(DESTDIR)$(bindir)"
ths932a79d2007-10-20 18:29:34 +0000217ifneq ($(TOOLS),)
pbrook6a882642006-04-17 13:57:12 +0000218 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
ths932a79d2007-10-20 18:29:34 +0000219endif
pbrook1236cab2006-04-09 20:47:35 +0000220 mkdir -p "$(DESTDIR)$(datadir)"
blueswir118be8d72008-03-05 18:16:09 +0000221 set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
blueswir1938255d2008-04-23 19:38:07 +0000222 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
thseec85c22007-01-05 17:41:07 +0000223 pxe-rtl8139.bin pxe-pcnet.bin; do \
pbrook6a882642006-04-17 13:57:12 +0000224 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
pbrookad064842006-04-16 12:41:07 +0000225 done
bellard11d9f692004-04-02 20:55:59 +0000226ifndef CONFIG_WIN32
pbrook1236cab2006-04-09 20:47:35 +0000227 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
blueswir118be8d72008-03-05 18:16:09 +0000228 set -e; for x in $(KEYMAPS); do \
pbrook6a882642006-04-17 13:57:12 +0000229 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
pbrookad064842006-04-16 12:41:07 +0000230 done
bellard11d9f692004-04-02 20:55:59 +0000231endif
bellard626df762003-08-10 21:39:31 +0000232 for d in $(TARGET_DIRS); do \
bellard7d3505c2004-05-12 19:32:15 +0000233 $(MAKE) -C $$d $@ || exit 1 ; \
bellard626df762003-08-10 21:39:31 +0000234 done
bellard612384d2003-03-22 17:31:19 +0000235
bellard367e86e2003-03-01 17:13:26 +0000236# various test targets
bellard9b0b8202007-11-14 10:34:57 +0000237test speed: all
bellard7d3505c2004-05-12 19:32:15 +0000238 $(MAKE) -C tests $@
bellard31e31b82003-02-18 22:55:36 +0000239
ths5fafdf22007-09-16 21:08:06 +0000240TAGS:
bellardb9adb4a2003-04-29 20:41:16 +0000241 etags *.[ch] tests/*.[ch]
bellard31e31b82003-02-18 22:55:36 +0000242
bellard6688bc62005-08-21 09:23:39 +0000243cscope:
244 rm -f ./cscope.*
245 find . -name "*.[ch]" -print > ./cscope.files
246 cscope -b
247
bellard3ef693a2003-03-23 20:17:16 +0000248# documentation
bellard1f673132004-04-04 15:21:17 +0000249%.html: %.texi
bellard3ef693a2003-03-23 20:17:16 +0000250 texi2html -monolithic -number $<
251
bellardf3548322006-04-30 22:51:54 +0000252%.info: %.texi
253 makeinfo $< -o $@
254
255%.dvi: %.texi
256 texi2dvi $<
257
bellard5a671352003-10-01 00:13:48 +0000258qemu.1: qemu-doc.texi
pbrookad064842006-04-16 12:41:07 +0000259 $(SRC_PATH)/texi2pod.pl $< qemu.pod
bellard5a671352003-10-01 00:13:48 +0000260 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
261
bellardacd935e2004-11-15 22:57:26 +0000262qemu-img.1: qemu-img.texi
pbrookad064842006-04-16 12:41:07 +0000263 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
bellardacd935e2004-11-15 22:57:26 +0000264 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
265
bellard7a5ca862008-05-27 21:13:40 +0000266qemu-nbd.8: qemu-nbd.texi
267 $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
268 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
269
pbrook0cb3fb12006-05-14 12:07:53 +0000270info: qemu-doc.info qemu-tech.info
271
272dvi: qemu-doc.dvi qemu-tech.dvi
273
274html: qemu-doc.html qemu-tech.html
275
thsdf5cf722007-01-24 22:56:36 +0000276VERSION ?= $(shell cat VERSION)
277FILE = qemu-$(VERSION)
bellard586314f2003-03-03 15:02:29 +0000278
bellard1e43adf2003-09-30 20:54:24 +0000279# tar release (use 'make -k tar' on a checkouted tree)
bellard586314f2003-03-03 15:02:29 +0000280tar:
281 rm -rf /tmp/$(FILE)
bellard1e43adf2003-09-30 20:54:24 +0000282 cp -r . /tmp/$(FILE)
aurel3299c6c082008-04-22 20:45:30 +0000283 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
bellard586314f2003-03-03 15:02:29 +0000284 rm -rf /tmp/$(FILE)
285
bellard76b62fd2003-10-28 00:47:44 +0000286# generate a binary distribution
bellardd691f662003-03-24 21:58:34 +0000287tarbin:
blueswir118be8d72008-03-05 18:16:09 +0000288 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
bellard43095f32005-04-27 20:49:23 +0000289 $(bindir)/qemu \
bellard7efa4382004-05-12 18:54:06 +0000290 $(bindir)/qemu-system-ppc \
j_mayerd4082e92007-04-24 07:34:03 +0000291 $(bindir)/qemu-system-ppc64 \
292 $(bindir)/qemu-system-ppcemb \
bellardacd935e2004-11-15 22:57:26 +0000293 $(bindir)/qemu-system-sparc \
bellard43095f32005-04-27 20:49:23 +0000294 $(bindir)/qemu-system-x86_64 \
bellard93856aa2005-07-24 18:44:35 +0000295 $(bindir)/qemu-system-mips \
pbrook38260992006-03-11 14:51:13 +0000296 $(bindir)/qemu-system-mipsel \
thsfbe4f652007-04-01 11:16:48 +0000297 $(bindir)/qemu-system-mips64 \
298 $(bindir)/qemu-system-mips64el \
bellardea31eb52005-12-06 21:42:03 +0000299 $(bindir)/qemu-system-arm \
thsff1aaf62007-09-29 21:18:26 +0000300 $(bindir)/qemu-system-m68k \
301 $(bindir)/qemu-system-sh4 \
ths85ffbdf2007-12-09 05:10:03 +0000302 $(bindir)/qemu-system-sh4eb \
bellardf0403c02008-01-06 18:27:12 +0000303 $(bindir)/qemu-system-cris \
bellard7efa4382004-05-12 18:54:06 +0000304 $(bindir)/qemu-i386 \
bellardf0403c02008-01-06 18:27:12 +0000305 $(bindir)/qemu-x86_64 \
bellard7efa4382004-05-12 18:54:06 +0000306 $(bindir)/qemu-arm \
bellardea31eb52005-12-06 21:42:03 +0000307 $(bindir)/qemu-armeb \
bellard7efa4382004-05-12 18:54:06 +0000308 $(bindir)/qemu-sparc \
bellardf0403c02008-01-06 18:27:12 +0000309 $(bindir)/qemu-sparc32plus \
310 $(bindir)/qemu-sparc64 \
bellard7efa4382004-05-12 18:54:06 +0000311 $(bindir)/qemu-ppc \
j_mayerd4082e92007-04-24 07:34:03 +0000312 $(bindir)/qemu-ppc64 \
bellardf0403c02008-01-06 18:27:12 +0000313 $(bindir)/qemu-ppc64abi32 \
bellardea31eb52005-12-06 21:42:03 +0000314 $(bindir)/qemu-mips \
315 $(bindir)/qemu-mipsel \
j_mayercf6c1b12007-04-05 20:46:02 +0000316 $(bindir)/qemu-alpha \
thsff1aaf62007-09-29 21:18:26 +0000317 $(bindir)/qemu-m68k \
318 $(bindir)/qemu-sh4 \
ths85ffbdf2007-12-09 05:10:03 +0000319 $(bindir)/qemu-sh4eb \
bellardf0403c02008-01-06 18:27:12 +0000320 $(bindir)/qemu-cris \
bellardb932cab2004-08-01 21:46:49 +0000321 $(bindir)/qemu-img \
bellard7a5ca862008-05-27 21:13:40 +0000322 $(bindir)/qemu-nbd \
bellard7efa4382004-05-12 18:54:06 +0000323 $(datadir)/bios.bin \
324 $(datadir)/vgabios.bin \
bellardde9258a2004-06-06 15:50:03 +0000325 $(datadir)/vgabios-cirrus.bin \
bellard637f6cd2004-06-21 19:54:47 +0000326 $(datadir)/ppc_rom.bin \
bellardd5295252005-07-03 14:00:51 +0000327 $(datadir)/video.x \
bellard0986ac32006-06-14 12:36:32 +0000328 $(datadir)/openbios-sparc32 \
blueswir1938255d2008-04-23 19:38:07 +0000329 $(datadir)/openbios-sparc64 \
bellard19c80e52007-02-05 21:22:42 +0000330 $(datadir)/pxe-ne2k_pci.bin \
331 $(datadir)/pxe-rtl8139.bin \
332 $(datadir)/pxe-pcnet.bin \
bellard1f50f8d2004-05-08 14:44:43 +0000333 $(docdir)/qemu-doc.html \
334 $(docdir)/qemu-tech.html \
blueswir118be8d72008-03-05 18:16:09 +0000335 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
bellard7a5ca862008-05-27 21:13:40 +0000336 $(mandir)/man8/qemu-nbd.8
bellardd691f662003-03-24 21:58:34 +0000337
bellard4fb240a2007-11-07 19:24:02 +0000338# Include automatically generated dependency files
339-include $(wildcard *.d audio/*.d slirp/*.d)