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