pthreads-based audio and miscellaneous audio clean-up (malc).
[qemu] / 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 BASE_CFLAGS=
11 BASE_LDFLAGS=
12
13 BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
14 BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
15
16 CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
17 CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
18 LIBS=
19 ifdef CONFIG_STATIC
20 BASE_LDFLAGS += -static
21 endif
22 ifdef BUILD_DOCS
23 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
24 else
25 DOCS=
26 endif
27
28 LIBS+=$(AIOLIBS)
29
30 all: $(TOOLS) $(DOCS) recurse-all 
31
32 subdir-%: dyngen$(EXESUF) libqemu_common.a
33         $(MAKE) -C $(subst subdir-,,$@) all
34
35 recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
36
37 #######################################################################
38 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
39
40 BLOCK_OBJS=cutils.o
41 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
42 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
43 BLOCK_OBJS+=block-qcow2.o block-parallels.o
44
45 ######################################################################
46 # libqemu_common.a: Target indepedent part of system emulation. The
47 # long term path is to suppress *all* target specific code in case of
48 # system emulation, i.e. a single QEMU executable should support all
49 # CPUs and machines.
50
51 OBJS=$(BLOCK_OBJS)
52 OBJS+=readline.o console.o
53 OBJS+=block.o
54
55 OBJS+=irq.o
56 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
57 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o
58 OBJS+=scsi-disk.o cdrom.o
59 OBJS+=scsi-generic.o
60 OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
61 OBJS+=sd.o ssi-sd.o
62
63 ifdef CONFIG_WIN32
64 OBJS+=tap-win32.o
65 endif
66
67 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
68 ifdef CONFIG_SDL
69 AUDIO_OBJS += sdlaudio.o
70 endif
71 ifdef CONFIG_OSS
72 AUDIO_OBJS += ossaudio.o
73 endif
74 ifdef CONFIG_COREAUDIO
75 AUDIO_OBJS += coreaudio.o
76 AUDIO_PT = yes
77 endif
78 ifdef CONFIG_ALSA
79 AUDIO_OBJS += alsaaudio.o
80 endif
81 ifdef CONFIG_DSOUND
82 AUDIO_OBJS += dsoundaudio.o
83 endif
84 ifdef CONFIG_FMOD
85 AUDIO_OBJS += fmodaudio.o
86 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
87 endif
88 ifdef CONFIG_ESD
89 AUDIO_PT = yes
90 AUDIO_PT_INT = yes
91 AUDIO_OBJS += esdaudio.o
92 endif
93 ifdef AUDIO_PT
94 LDFLAGS += -pthread
95 endif
96 ifdef AUDIO_PT_INT
97 AUDIO_OBJS += audio_pt_int.o
98 endif
99 AUDIO_OBJS+= wavcapture.o
100 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
101
102 ifdef CONFIG_SDL
103 OBJS+=sdl.o x_keymap.o
104 endif
105 OBJS+=vnc.o d3des.o
106
107 ifdef CONFIG_COCOA
108 OBJS+=cocoa.o
109 endif
110
111 ifdef CONFIG_SLIRP
112 CPPFLAGS+=-I$(SRC_PATH)/slirp
113 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
114 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
115 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
116 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
117 endif
118
119 cocoa.o: cocoa.m
120         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
121
122 sdl.o: sdl.c keymaps.c sdl_keysym.h
123         $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
124
125 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
126         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
127
128 audio/sdlaudio.o: audio/sdlaudio.c
129         $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
130
131 libqemu_common.a: $(OBJS)
132         rm -f $@ 
133         $(AR) rcs $@ $(OBJS)
134
135 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
136 ifdef CONFIG_WIN32
137 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
138 else
139 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
140 endif
141
142 ######################################################################
143
144 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
145         $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS)
146
147 qemu-img-%.o: %.c
148         $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG $(BASE_CFLAGS) -c -o $@ $<
149
150 %.o: %.c
151         $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
152
153 # dyngen host tool
154 dyngen$(EXESUF): dyngen.c
155         $(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^
156
157 clean:
158 # avoid old build problems by removing potentially incorrect old files
159         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
160         rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
161         rm -rf dyngen.dSYM
162         rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
163         $(MAKE) -C tests clean
164         for d in $(TARGET_DIRS); do \
165         $(MAKE) -C $$d $@ || exit 1 ; \
166         done
167
168 distclean: clean
169         rm -f config-host.mak config-host.h $(DOCS)
170         rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
171         for d in $(TARGET_DIRS); do \
172         rm -rf $$d || exit 1 ; \
173         done
174
175 KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
176 ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
177 common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
178
179 install-doc: $(DOCS)
180         mkdir -p "$(DESTDIR)$(docdir)"
181         $(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
182 ifndef CONFIG_WIN32
183         mkdir -p "$(DESTDIR)$(mandir)/man1"
184         $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
185 endif
186
187 install: all $(if $(BUILD_DOCS),install-doc)
188         mkdir -p "$(DESTDIR)$(bindir)"
189 ifneq ($(TOOLS),)
190         $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
191 endif
192         mkdir -p "$(DESTDIR)$(datadir)"
193         for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
194                 video.x openbios-sparc32 pxe-ne2k_pci.bin \
195                 pxe-rtl8139.bin pxe-pcnet.bin; do \
196                 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
197         done
198 ifndef CONFIG_WIN32
199         mkdir -p "$(DESTDIR)$(datadir)/keymaps"
200         for x in $(KEYMAPS); do \
201                 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
202         done
203 endif
204         for d in $(TARGET_DIRS); do \
205         $(MAKE) -C $$d $@ || exit 1 ; \
206         done
207
208 # various test targets
209 test speed: all
210         $(MAKE) -C tests $@
211
212 TAGS:
213         etags *.[ch] tests/*.[ch]
214
215 cscope:
216         rm -f ./cscope.*
217         find . -name "*.[ch]" -print > ./cscope.files
218         cscope -b
219
220 # documentation
221 %.html: %.texi
222         texi2html -monolithic -number $<
223
224 %.info: %.texi
225         makeinfo $< -o $@
226
227 %.dvi: %.texi
228         texi2dvi $<
229
230 qemu.1: qemu-doc.texi
231         $(SRC_PATH)/texi2pod.pl $< qemu.pod
232         pod2man --section=1 --center=" " --release=" " qemu.pod > $@
233
234 qemu-img.1: qemu-img.texi
235         $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
236         pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
237
238 info: qemu-doc.info qemu-tech.info
239
240 dvi: qemu-doc.dvi qemu-tech.dvi
241
242 html: qemu-doc.html qemu-tech.html
243
244 VERSION ?= $(shell cat VERSION)
245 FILE = qemu-$(VERSION)
246
247 # tar release (use 'make -k tar' on a checkouted tree)
248 tar:
249         rm -rf /tmp/$(FILE)
250         cp -r . /tmp/$(FILE)
251         ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
252         rm -rf /tmp/$(FILE)
253
254 # generate a binary distribution
255 tarbin:
256         ( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
257         $(bindir)/qemu \
258         $(bindir)/qemu-system-ppc \
259         $(bindir)/qemu-system-ppc64 \
260         $(bindir)/qemu-system-ppcemb \
261         $(bindir)/qemu-system-sparc \
262         $(bindir)/qemu-system-x86_64 \
263         $(bindir)/qemu-system-mips \
264         $(bindir)/qemu-system-mipsel \
265         $(bindir)/qemu-system-mips64 \
266         $(bindir)/qemu-system-mips64el \
267         $(bindir)/qemu-system-arm \
268         $(bindir)/qemu-system-m68k \
269         $(bindir)/qemu-system-sh4 \
270         $(bindir)/qemu-system-sh4eb \
271         $(bindir)/qemu-system-cris \
272         $(bindir)/qemu-i386 \
273         $(bindir)/qemu-x86_64 \
274         $(bindir)/qemu-arm \
275         $(bindir)/qemu-armeb \
276         $(bindir)/qemu-sparc \
277         $(bindir)/qemu-sparc32plus \
278         $(bindir)/qemu-sparc64 \
279         $(bindir)/qemu-ppc \
280         $(bindir)/qemu-ppc64 \
281         $(bindir)/qemu-ppc64abi32 \
282         $(bindir)/qemu-mips \
283         $(bindir)/qemu-mipsel \
284         $(bindir)/qemu-alpha \
285         $(bindir)/qemu-m68k \
286         $(bindir)/qemu-sh4 \
287         $(bindir)/qemu-sh4eb \
288         $(bindir)/qemu-cris \
289         $(bindir)/qemu-img \
290         $(datadir)/bios.bin \
291         $(datadir)/vgabios.bin \
292         $(datadir)/vgabios-cirrus.bin \
293         $(datadir)/ppc_rom.bin \
294         $(datadir)/video.x \
295         $(datadir)/openbios-sparc32 \
296         $(datadir)/pxe-ne2k_pci.bin \
297         $(datadir)/pxe-rtl8139.bin \
298         $(datadir)/pxe-pcnet.bin \
299         $(docdir)/qemu-doc.html \
300         $(docdir)/qemu-tech.html \
301         $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
302
303 ifneq ($(wildcard .depend),)
304 include .depend
305 endif
306
307 # Include automatically generated dependency files
308 -include $(wildcard *.d audio/*.d slirp/*.d)