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