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