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