Convert udivx and sdivx to TCG
[qemu/malc.git] / Makefile
blobc36a97812a6d94cf383c60a17ae69539dc0f1f18
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
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
25 LIBS+=$(AIOLIBS)
27 all: $(TOOLS) $(DOCS) recurse-all
29 subdir-%: dyngen$(EXESUF) libqemu_common.a
30 $(MAKE) -C $(subst subdir-,,$@) all
32 recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
34 #######################################################################
35 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
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
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.
48 OBJS=$(BLOCK_OBJS)
49 OBJS+=readline.o console.o
50 OBJS+=block.o
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
60 ifdef CONFIG_WIN32
61 OBJS+=tap-win32.o
62 endif
64 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
65 ifdef CONFIG_SDL
66 AUDIO_OBJS += sdlaudio.o
67 endif
68 ifdef CONFIG_OSS
69 AUDIO_OBJS += ossaudio.o
70 endif
71 ifdef CONFIG_COREAUDIO
72 AUDIO_OBJS += coreaudio.o
73 AUDIO_PT = yes
74 endif
75 ifdef CONFIG_ALSA
76 AUDIO_OBJS += alsaaudio.o
77 endif
78 ifdef CONFIG_DSOUND
79 AUDIO_OBJS += dsoundaudio.o
80 endif
81 ifdef CONFIG_FMOD
82 AUDIO_OBJS += fmodaudio.o
83 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
84 endif
85 ifdef CONFIG_ESD
86 AUDIO_PT = yes
87 AUDIO_PT_INT = yes
88 AUDIO_OBJS += esdaudio.o
89 endif
90 ifdef AUDIO_PT
91 LDFLAGS += -pthread
92 endif
93 ifdef AUDIO_PT_INT
94 AUDIO_OBJS += audio_pt_int.o
95 endif
96 AUDIO_OBJS+= wavcapture.o
97 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
99 ifdef CONFIG_SDL
100 OBJS+=sdl.o x_keymap.o
101 endif
102 ifdef CONFIG_CURSES
103 OBJS+=curses.o
104 endif
105 OBJS+=vnc.o d3des.o
107 ifdef CONFIG_COCOA
108 OBJS+=cocoa.o
109 endif
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
119 cocoa.o: cocoa.m
120 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
122 sdl.o: sdl.c keymaps.c sdl_keysym.h
123 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
125 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
126 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
128 curses.o: curses.c keymaps.c curses_keys.h
129 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
131 audio/sdlaudio.o: audio/sdlaudio.c
132 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
134 libqemu_common.a: $(OBJS)
135 rm -f $@
136 $(AR) rcs $@ $(OBJS)
138 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
139 ifdef CONFIG_WIN32
140 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
141 else
142 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
143 endif
145 ######################################################################
147 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
148 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
150 qemu-img-%.o: %.c
151 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
153 %.o: %.c
154 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
156 # dyngen host tool
157 dyngen$(EXESUF): dyngen.c
158 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
160 clean:
161 # avoid old build problems by removing potentially incorrect old files
162 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
163 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
164 rm -rf dyngen.dSYM
165 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
166 $(MAKE) -C tests clean
167 for d in $(TARGET_DIRS); do \
168 $(MAKE) -C $$d $@ || exit 1 ; \
169 done
171 distclean: clean
172 rm -f config-host.mak config-host.h $(DOCS)
173 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
174 for d in $(TARGET_DIRS); do \
175 rm -rf $$d || exit 1 ; \
176 done
178 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
179 ar de en-us fi fr-be hr it lv nl pl ru th \
180 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
182 install-doc: $(DOCS)
183 mkdir -p "$(DESTDIR)$(docdir)"
184 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
185 ifndef CONFIG_WIN32
186 mkdir -p "$(DESTDIR)$(mandir)/man1"
187 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
188 endif
190 install: all $(if $(BUILD_DOCS),install-doc)
191 mkdir -p "$(DESTDIR)$(bindir)"
192 ifneq ($(TOOLS),)
193 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
194 endif
195 mkdir -p "$(DESTDIR)$(datadir)"
196 set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
197 video.x openbios-sparc32 pxe-ne2k_pci.bin \
198 pxe-rtl8139.bin pxe-pcnet.bin; do \
199 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
200 done
201 ifndef CONFIG_WIN32
202 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
203 set -e; for x in $(KEYMAPS); do \
204 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
205 done
206 endif
207 for d in $(TARGET_DIRS); do \
208 $(MAKE) -C $$d $@ || exit 1 ; \
209 done
211 # various test targets
212 test speed: all
213 $(MAKE) -C tests $@
215 TAGS:
216 etags *.[ch] tests/*.[ch]
218 cscope:
219 rm -f ./cscope.*
220 find . -name "*.[ch]" -print > ./cscope.files
221 cscope -b
223 # documentation
224 %.html: %.texi
225 texi2html -monolithic -number $<
227 %.info: %.texi
228 makeinfo $< -o $@
230 %.dvi: %.texi
231 texi2dvi $<
233 qemu.1: qemu-doc.texi
234 $(SRC_PATH)/texi2pod.pl $< qemu.pod
235 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
237 qemu-img.1: qemu-img.texi
238 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
239 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
241 info: qemu-doc.info qemu-tech.info
243 dvi: qemu-doc.dvi qemu-tech.dvi
245 html: qemu-doc.html qemu-tech.html
247 VERSION ?= $(shell cat VERSION)
248 FILE = qemu-$(VERSION)
250 # tar release (use 'make -k tar' on a checkouted tree)
251 tar:
252 rm -rf /tmp/$(FILE)
253 cp -r . /tmp/$(FILE)
254 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS
255 rm -rf /tmp/$(FILE)
257 # generate a binary distribution
258 tarbin:
259 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
260 $(bindir)/qemu \
261 $(bindir)/qemu-system-ppc \
262 $(bindir)/qemu-system-ppc64 \
263 $(bindir)/qemu-system-ppcemb \
264 $(bindir)/qemu-system-sparc \
265 $(bindir)/qemu-system-x86_64 \
266 $(bindir)/qemu-system-mips \
267 $(bindir)/qemu-system-mipsel \
268 $(bindir)/qemu-system-mips64 \
269 $(bindir)/qemu-system-mips64el \
270 $(bindir)/qemu-system-arm \
271 $(bindir)/qemu-system-m68k \
272 $(bindir)/qemu-system-sh4 \
273 $(bindir)/qemu-system-sh4eb \
274 $(bindir)/qemu-system-cris \
275 $(bindir)/qemu-i386 \
276 $(bindir)/qemu-x86_64 \
277 $(bindir)/qemu-arm \
278 $(bindir)/qemu-armeb \
279 $(bindir)/qemu-sparc \
280 $(bindir)/qemu-sparc32plus \
281 $(bindir)/qemu-sparc64 \
282 $(bindir)/qemu-ppc \
283 $(bindir)/qemu-ppc64 \
284 $(bindir)/qemu-ppc64abi32 \
285 $(bindir)/qemu-mips \
286 $(bindir)/qemu-mipsel \
287 $(bindir)/qemu-alpha \
288 $(bindir)/qemu-m68k \
289 $(bindir)/qemu-sh4 \
290 $(bindir)/qemu-sh4eb \
291 $(bindir)/qemu-cris \
292 $(bindir)/qemu-img \
293 $(datadir)/bios.bin \
294 $(datadir)/vgabios.bin \
295 $(datadir)/vgabios-cirrus.bin \
296 $(datadir)/ppc_rom.bin \
297 $(datadir)/video.x \
298 $(datadir)/openbios-sparc32 \
299 $(datadir)/pxe-ne2k_pci.bin \
300 $(datadir)/pxe-rtl8139.bin \
301 $(datadir)/pxe-pcnet.bin \
302 $(docdir)/qemu-doc.html \
303 $(docdir)/qemu-tech.html \
304 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
306 # Include automatically generated dependency files
307 -include $(wildcard *.d audio/*.d slirp/*.d)