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