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