]> git.proxmox.com Git - mirror_qemu.git/blob - Makefile
Only build compatfd when using AIO and make sure to always init AIO
[mirror_qemu.git] / Makefile
1 # Makefile for QEMU.
2
3 include config-host.mak
4
5 .PHONY: all clean distclean dvi info install install-doc tar tarbin \
6 speed test html dvi info
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 all: $(TOOLS) $(DOCS) recurse-all
32
33 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
34
35 subdir-%: dyngen$(EXESUF)
36 $(MAKE) -C $(subst subdir-,,$@) all
37
38 $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
39 $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
40
41 recurse-all: $(SUBDIR_RULES)
42
43 #######################################################################
44 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
45
46 BLOCK_OBJS=cutils.o qemu-malloc.o
47 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
48 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
49 BLOCK_OBJS+=block-qcow2.o block-parallels.o
50 ifndef CONFIG_WIN32
51 BLOCK_OBJS+=block-nbd.o
52 endif
53
54 ######################################################################
55 # libqemu_common.a: Target independent part of system emulation. The
56 # long term path is to suppress *all* target specific code in case of
57 # system emulation, i.e. a single QEMU executable should support all
58 # CPUs and machines.
59
60 OBJS=$(BLOCK_OBJS)
61 OBJS+=readline.o console.o
62 OBJS+=block.o
63
64 ifndef CONFIG_WIN32
65 OBJS+=nbd.o
66 endif
67
68 OBJS+=irq.o
69 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
70 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
71 OBJS+=tmp105.o lm832x.o
72 OBJS+=scsi-disk.o cdrom.o
73 OBJS+=scsi-generic.o
74 OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o
75 OBJS+=usb-serial.o usb-net.o
76 OBJS+=sd.o ssi-sd.o
77
78 ifdef CONFIG_BRLAPI
79 OBJS+= baum.o
80 LIBS+=-lbrlapi
81 endif
82
83 ifdef CONFIG_WIN32
84 OBJS+=tap-win32.o
85 endif
86
87 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
88 ifdef CONFIG_SDL
89 AUDIO_OBJS += sdlaudio.o
90 endif
91 ifdef CONFIG_OSS
92 AUDIO_OBJS += ossaudio.o
93 endif
94 ifdef CONFIG_COREAUDIO
95 AUDIO_OBJS += coreaudio.o
96 AUDIO_PT = yes
97 endif
98 ifdef CONFIG_ALSA
99 AUDIO_OBJS += alsaaudio.o
100 endif
101 ifdef CONFIG_DSOUND
102 AUDIO_OBJS += dsoundaudio.o
103 endif
104 ifdef CONFIG_FMOD
105 AUDIO_OBJS += fmodaudio.o
106 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
107 endif
108 ifdef CONFIG_ESD
109 AUDIO_PT = yes
110 AUDIO_PT_INT = yes
111 AUDIO_OBJS += esdaudio.o
112 endif
113 ifdef CONFIG_PA
114 AUDIO_PT = yes
115 AUDIO_PT_INT = yes
116 AUDIO_OBJS += paaudio.o
117 endif
118 ifdef AUDIO_PT
119 LDFLAGS += -pthread
120 endif
121 ifdef AUDIO_PT_INT
122 AUDIO_OBJS += audio_pt_int.o
123 endif
124 AUDIO_OBJS+= wavcapture.o
125 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
126
127 ifdef CONFIG_SDL
128 OBJS+=sdl.o x_keymap.o
129 endif
130 ifdef CONFIG_CURSES
131 OBJS+=curses.o
132 endif
133 OBJS+=vnc.o d3des.o
134
135 ifdef CONFIG_COCOA
136 OBJS+=cocoa.o
137 endif
138
139 ifdef CONFIG_SLIRP
140 CPPFLAGS+=-I$(SRC_PATH)/slirp
141 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
142 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
143 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
144 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
145 endif
146
147 LIBS+=$(VDE_LIBS)
148
149 cocoa.o: cocoa.m
150 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
151
152 sdl.o: sdl.c keymaps.c sdl_keysym.h
153 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
154
155 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
156 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
157
158 curses.o: curses.c keymaps.c curses_keys.h
159 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
160
161 audio/sdlaudio.o: audio/sdlaudio.c
162 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
163
164 libqemu_common.a: $(OBJS)
165 rm -f $@
166 $(AR) rcs $@ $(OBJS)
167
168 #######################################################################
169 # USER_OBJS is code used by qemu userspace emulation
170 USER_OBJS=cutils.o
171
172 libqemu_user.a: $(USER_OBJS)
173 rm -f $@
174 $(AR) rcs $@ $(USER_OBJS)
175
176 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
177 ifdef CONFIG_WIN32
178 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
179 else
180 QEMU_IMG_BLOCK_OBJS += nbd.o qemu-img-block-raw-posix.o
181 endif
182
183 ifdef CONFIG_AIO
184 QEMU_IMG_BLOCK_OBJS += compatfd.o
185 endif
186
187 ######################################################################
188
189 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
190 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
191
192 qemu-img-%.o: %.c
193 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
194
195 %.o: %.c
196 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
197
198 qemu-nbd-%.o: %.c
199 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_NBD -c -o $@ $<
200
201 qemu-nbd$(EXESUF): qemu-nbd.o qemu-nbd-nbd.o qemu-img-block.o \
202 osdep.o qemu-nbd-block-raw-posix.o compatfd.o $(BLOCK_OBJS)
203 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
204
205 # dyngen host tool
206 dyngen$(EXESUF): dyngen.c
207 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
208
209 clean:
210 # avoid old build problems by removing potentially incorrect old files
211 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
212 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
213 rm -rf dyngen.dSYM
214 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
215 $(MAKE) -C tests clean
216 for d in $(TARGET_DIRS); do \
217 $(MAKE) -C $$d $@ || exit 1 ; \
218 done
219
220 distclean: clean
221 rm -f config-host.mak config-host.h $(DOCS)
222 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
223 for d in $(TARGET_DIRS); do \
224 rm -rf $$d || exit 1 ; \
225 done
226
227 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
228 ar de en-us fi fr-be hr it lv nl pl ru th \
229 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
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 mkdir -p "$(DESTDIR)$(datadir)"
247 set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
248 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
249 pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin; do \
250 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
251 done
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 > ./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 VERSION ?= $(shell cat VERSION)
303 FILE = qemu-$(VERSION)
304
305 # tar release (use 'make -k tar' on a checkouted tree)
306 tar:
307 rm -rf /tmp/$(FILE)
308 cp -r . /tmp/$(FILE)
309 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
310 rm -rf /tmp/$(FILE)
311
312 # generate a binary distribution
313 tarbin:
314 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
315 $(bindir)/qemu \
316 $(bindir)/qemu-system-ppc \
317 $(bindir)/qemu-system-ppc64 \
318 $(bindir)/qemu-system-ppcemb \
319 $(bindir)/qemu-system-sparc \
320 $(bindir)/qemu-system-x86_64 \
321 $(bindir)/qemu-system-mips \
322 $(bindir)/qemu-system-mipsel \
323 $(bindir)/qemu-system-mips64 \
324 $(bindir)/qemu-system-mips64el \
325 $(bindir)/qemu-system-arm \
326 $(bindir)/qemu-system-m68k \
327 $(bindir)/qemu-system-sh4 \
328 $(bindir)/qemu-system-sh4eb \
329 $(bindir)/qemu-system-cris \
330 $(bindir)/qemu-i386 \
331 $(bindir)/qemu-x86_64 \
332 $(bindir)/qemu-arm \
333 $(bindir)/qemu-armeb \
334 $(bindir)/qemu-sparc \
335 $(bindir)/qemu-sparc32plus \
336 $(bindir)/qemu-sparc64 \
337 $(bindir)/qemu-ppc \
338 $(bindir)/qemu-ppc64 \
339 $(bindir)/qemu-ppc64abi32 \
340 $(bindir)/qemu-mips \
341 $(bindir)/qemu-mipsel \
342 $(bindir)/qemu-alpha \
343 $(bindir)/qemu-m68k \
344 $(bindir)/qemu-sh4 \
345 $(bindir)/qemu-sh4eb \
346 $(bindir)/qemu-cris \
347 $(bindir)/qemu-img \
348 $(bindir)/qemu-nbd \
349 $(datadir)/bios.bin \
350 $(datadir)/vgabios.bin \
351 $(datadir)/vgabios-cirrus.bin \
352 $(datadir)/ppc_rom.bin \
353 $(datadir)/video.x \
354 $(datadir)/openbios-sparc32 \
355 $(datadir)/openbios-sparc64 \
356 $(datadir)/pxe-ne2k_pci.bin \
357 $(datadir)/pxe-rtl8139.bin \
358 $(datadir)/pxe-pcnet.bin \
359 $(datadir)/pxe-e1000.bin \
360 $(docdir)/qemu-doc.html \
361 $(docdir)/qemu-tech.html \
362 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
363 $(mandir)/man8/qemu-nbd.8
364
365 # Include automatically generated dependency files
366 -include $(wildcard *.d audio/*.d slirp/*.d)