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