]> git.proxmox.com Git - qemu.git/blame - Makefile
Drop OP_CFLAGS (Avi Kivity)
[qemu.git] / Makefile
CommitLineData
0cb3fb1e
PB
1# Makefile for QEMU.
2
ad064840 3include config-host.mak
766a487a 4
818220f5
AL
5.PHONY: all clean cscope distclean dvi html info install install-doc \
6 recurse-all speed tar tarbin test
0cb3fb1e 7
8c462f8f
PB
8VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9
40293e58
FB
10CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
3142255c 12
96935aa4 13CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
4fb240a4 14CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
766a487a 15LIBS=
1f50f8d1 16ifdef CONFIG_STATIC
40293e58 17LDFLAGS += -static
1f50f8d1 18endif
cc8ae6de 19ifdef BUILD_DOCS
7a5ca864 20DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
cc8ae6de
PB
21else
22DOCS=
23endif
aa05ae6f 24
70956b77 25LIBS+=$(AIOLIBS)
83f64091 26
7e00eb9b
AL
27ifdef CONFIG_SOLARIS
28LIBS+=-lsocket -lnsl -lresolv
29endif
30
03ff3ca3
AL
31ifdef CONFIG_WIN32
32LIBS+=-lwinmm -lws2_32 -liphlpapi
33endif
34
818220f5 35all: $(TOOLS) $(DOCS) recurse-all
b9dea4fb 36
cec7d0b6
PB
37SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
38
86e840ee 39subdir-%:
4aa42531
PB
40 $(MAKE) -C $(subst subdir-,,$@) all
41
cec7d0b6
PB
42$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
43$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
44
45recurse-all: $(SUBDIR_RULES)
83f64091 46
faf07963
PB
47#######################################################################
48# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
49
17e2377a 50BLOCK_OBJS=cutils.o qemu-malloc.o
faf07963
PB
51BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
52BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
03ff3ca3 53BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
a76bab49 54BLOCK_OBJS+=nbd.o block.o aio.o
03ff3ca3
AL
55
56ifdef CONFIG_WIN32
57BLOCK_OBJS += block-raw-win32.o
58else
3c529d93
AL
59ifdef CONFIG_AIO
60BLOCK_OBJS += posix-aio-compat.o
61endif
03ff3ca3
AL
62BLOCK_OBJS += block-raw-posix.o
63endif
64
4fb240a4 65######################################################################
2e2ea909 66# libqemu_common.a: Target independent part of system emulation. The
4fb240a4
FB
67# long term path is to suppress *all* target specific code in case of
68# system emulation, i.e. a single QEMU executable should support all
69# CPUs and machines.
47cea614 70
cd01b4a3 71OBJS=$(BLOCK_OBJS)
87ecb68b 72OBJS+=readline.o console.o
cd01b4a3 73
87ecb68b
PB
74OBJS+=irq.o
75OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
7e7c5e4c 76OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
1d4e547b 77OBJS+=tmp105.o lm832x.o
87ecb68b 78OBJS+=scsi-disk.o cdrom.o
985a03b0 79OBJS+=scsi-generic.o
68063649 80OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
6c9f886c 81OBJS+=usb-serial.o usb-net.o
775616c3 82OBJS+=sd.o ssi-sd.o
e6a6d5ab 83OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
559b90fb 84OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
902b3d5c 85OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
87ecb68b 86
2e4d9fb1
AJ
87ifdef CONFIG_BRLAPI
88OBJS+= baum.o
89LIBS+=-lbrlapi
90endif
91
4fb240a4
FB
92ifdef CONFIG_WIN32
93OBJS+=tap-win32.o
559b90fb
AL
94else
95OBJS+=migration-exec.o
4fb240a4
FB
96endif
97
98AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
99ifdef CONFIG_SDL
100AUDIO_OBJS += sdlaudio.o
101endif
102ifdef CONFIG_OSS
103AUDIO_OBJS += ossaudio.o
104endif
105ifdef CONFIG_COREAUDIO
106AUDIO_OBJS += coreaudio.o
ca9cc28c 107AUDIO_PT = yes
4fb240a4
FB
108endif
109ifdef CONFIG_ALSA
110AUDIO_OBJS += alsaaudio.o
111endif
112ifdef CONFIG_DSOUND
113AUDIO_OBJS += dsoundaudio.o
114endif
115ifdef CONFIG_FMOD
116AUDIO_OBJS += fmodaudio.o
117audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
118endif
ca9cc28c
AZ
119ifdef CONFIG_ESD
120AUDIO_PT = yes
121AUDIO_PT_INT = yes
122AUDIO_OBJS += esdaudio.o
123endif
b8e59f18 124ifdef CONFIG_PA
125AUDIO_PT = yes
126AUDIO_PT_INT = yes
127AUDIO_OBJS += paaudio.o
128endif
ca9cc28c
AZ
129ifdef AUDIO_PT
130LDFLAGS += -pthread
131endif
132ifdef AUDIO_PT_INT
133AUDIO_OBJS += audio_pt_int.o
134endif
4fb240a4
FB
135AUDIO_OBJS+= wavcapture.o
136OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
137
138ifdef CONFIG_SDL
139OBJS+=sdl.o x_keymap.o
140endif
4d3b6f6e
AZ
141ifdef CONFIG_CURSES
142OBJS+=curses.o
143endif
4fb240a4
FB
144OBJS+=vnc.o d3des.o
145
146ifdef CONFIG_COCOA
147OBJS+=cocoa.o
148endif
149
150ifdef CONFIG_SLIRP
151CPPFLAGS+=-I$(SRC_PATH)/slirp
152SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
153slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
154tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
155OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
156endif
157
8a16d273
TS
158LIBS+=$(VDE_LIBS)
159
4fb240a4 160cocoa.o: cocoa.m
40293e58 161 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
4fb240a4
FB
162
163sdl.o: sdl.c keymaps.c sdl_keysym.h
40293e58 164 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
4fb240a4
FB
165
166vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
40293e58 167 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
4fb240a4 168
4d3b6f6e 169curses.o: curses.c keymaps.c curses_keys.h
f5d28393 170 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
4d3b6f6e 171
fb599c9a
AZ
172bt-host.o: bt-host.c
173 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_BLUEZ_CFLAGS) -c -o $@ $<
174
4fb240a4 175audio/sdlaudio.o: audio/sdlaudio.c
40293e58 176 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
4fb240a4
FB
177
178libqemu_common.a: $(OBJS)
179 rm -f $@
180 $(AR) rcs $@ $(OBJS)
181
cec7d0b6
PB
182#######################################################################
183# USER_OBJS is code used by qemu userspace emulation
902b3d5c 184USER_OBJS=cutils.o cache-utils.o
cec7d0b6
PB
185
186libqemu_user.a: $(USER_OBJS)
187 rm -f $@
188 $(AR) rcs $@ $(USER_OBJS)
189
4fb240a4
FB
190######################################################################
191
03ff3ca3 192qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
40293e58 193 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
4fb240a4
FB
194
195%.o: %.c
40293e58 196 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
4fb240a4 197
03ff3ca3 198qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
7a5ca864
FB
199 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
200
31e31b8a 201clean:
2d80ae89 202# avoid old build problems by removing potentially incorrect old files
5fafdf24 203 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
86e840ee 204 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
4fb240a4 205 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
7d3505c5 206 $(MAKE) -C tests clean
626df76a 207 for d in $(TARGET_DIRS); do \
7d3505c5 208 $(MAKE) -C $$d $@ || exit 1 ; \
626df76a 209 done
31e31b8a 210
7d13299d 211distclean: clean
cc8ae6de 212 rm -f config-host.mak config-host.h $(DOCS)
0cb3fb1e 213 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
76bc6838 214 for d in $(TARGET_DIRS); do \
bc1b050d 215 rm -rf $$d || exit 1 ; \
76bc6838 216 done
7d13299d 217
fed4a9ad
FB
218KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
219ar de en-us fi fr-be hr it lv nl pl ru th \
220common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
221
77755340
TS
222ifdef INSTALL_BLOBS
223BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
e5d01b06
AJ
224video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
225pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
226bamboo.dtb
77755340
TS
227else
228BLOBS=
229endif
230
38954dca
PB
231install-doc: $(DOCS)
232 mkdir -p "$(DESTDIR)$(docdir)"
233 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
234ifndef CONFIG_WIN32
235 mkdir -p "$(DESTDIR)$(mandir)/man1"
236 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
7a5ca864
FB
237 mkdir -p "$(DESTDIR)$(mandir)/man8"
238 $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
38954dca
PB
239endif
240
241install: all $(if $(BUILD_DOCS),install-doc)
1236cab7 242 mkdir -p "$(DESTDIR)$(bindir)"
932a79df 243ifneq ($(TOOLS),)
6a882643 244 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
932a79df 245endif
77755340 246ifneq ($(BLOBS),)
1236cab7 247 mkdir -p "$(DESTDIR)$(datadir)"
77755340 248 set -e; for x in $(BLOBS); do \
6a882643 249 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
ad064840 250 done
77755340 251endif
11d9f695 252ifndef CONFIG_WIN32
1236cab7 253 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
18be8d77 254 set -e; for x in $(KEYMAPS); do \
6a882643 255 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
ad064840 256 done
11d9f695 257endif
626df76a 258 for d in $(TARGET_DIRS); do \
7d3505c5 259 $(MAKE) -C $$d $@ || exit 1 ; \
626df76a 260 done
612384d7 261
367e86e8 262# various test targets
9b0b8203 263test speed: all
7d3505c5 264 $(MAKE) -C tests $@
31e31b8a 265
5fafdf24 266TAGS:
b9adb4a6 267 etags *.[ch] tests/*.[ch]
31e31b8a 268
6688bc6d
FB
269cscope:
270 rm -f ./cscope.*
ede46085 271 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
6688bc6d
FB
272 cscope -b
273
3ef693a0 274# documentation
1f673135 275%.html: %.texi
3ef693a0
FB
276 texi2html -monolithic -number $<
277
f3548328
FB
278%.info: %.texi
279 makeinfo $< -o $@
280
281%.dvi: %.texi
282 texi2dvi $<
283
5a67135a 284qemu.1: qemu-doc.texi
ad064840 285 $(SRC_PATH)/texi2pod.pl $< qemu.pod
5a67135a
FB
286 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
287
acd935ef 288qemu-img.1: qemu-img.texi
ad064840 289 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
acd935ef
FB
290 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
291
7a5ca864
FB
292qemu-nbd.8: qemu-nbd.texi
293 $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
294 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
295
0cb3fb1e
PB
296info: qemu-doc.info qemu-tech.info
297
298dvi: qemu-doc.dvi qemu-tech.dvi
299
300html: qemu-doc.html qemu-tech.html
301
818220f5
AL
302qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
303
df5cf721
TS
304VERSION ?= $(shell cat VERSION)
305FILE = qemu-$(VERSION)
586314f2 306
1e43adfc 307# tar release (use 'make -k tar' on a checkouted tree)
586314f2
FB
308tar:
309 rm -rf /tmp/$(FILE)
1e43adfc 310 cp -r . /tmp/$(FILE)
99c6c082 311 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
586314f2
FB
312 rm -rf /tmp/$(FILE)
313
76b62fd0 314# generate a binary distribution
d691f669 315tarbin:
18be8d77 316 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
43095f31 317 $(bindir)/qemu \
43095f31 318 $(bindir)/qemu-system-x86_64 \
40e8a53b
AJ
319 $(bindir)/qemu-system-arm \
320 $(bindir)/qemu-system-cris \
321 $(bindir)/qemu-system-m68k \
93856aac 322 $(bindir)/qemu-system-mips \
38260998 323 $(bindir)/qemu-system-mipsel \
fbe4f65b
TS
324 $(bindir)/qemu-system-mips64 \
325 $(bindir)/qemu-system-mips64el \
40e8a53b
AJ
326 $(bindir)/qemu-system-ppc \
327 $(bindir)/qemu-system-ppcemb \
328 $(bindir)/qemu-system-ppc64 \
ff1aaf65 329 $(bindir)/qemu-system-sh4 \
85ffbdfc 330 $(bindir)/qemu-system-sh4eb \
40e8a53b 331 $(bindir)/qemu-system-sparc \
7efa4387 332 $(bindir)/qemu-i386 \
f0403c03 333 $(bindir)/qemu-x86_64 \
40e8a53b
AJ
334 $(bindir)/qemu-alpha \
335 $(bindir)/qemu-arm \
336 $(bindir)/qemu-armeb \
337 $(bindir)/qemu-cris \
338 $(bindir)/qemu-m68k \
339 $(bindir)/qemu-mips \
340 $(bindir)/qemu-mipsel \
341 $(bindir)/qemu-ppc \
342 $(bindir)/qemu-ppc64 \
343 $(bindir)/qemu-ppc64abi32 \
344 $(bindir)/qemu-sh4 \
345 $(bindir)/qemu-sh4eb \
346 $(bindir)/qemu-sparc \
347 $(bindir)/qemu-sparc64 \
348 $(bindir)/qemu-sparc32plus \
349 $(bindir)/qemu-img \
350 $(bindir)/qemu-nbd \
7efa4387
FB
351 $(datadir)/bios.bin \
352 $(datadir)/vgabios.bin \
de9258a8 353 $(datadir)/vgabios-cirrus.bin \
637f6cd7 354 $(datadir)/ppc_rom.bin \
d5295253 355 $(datadir)/video.x \
0986ac3b 356 $(datadir)/openbios-sparc32 \
938255d2 357 $(datadir)/openbios-sparc64 \
e5d01b06 358 $(datadir)/openbios-ppc \
40e8a53b 359 $(datadir)/pxe-ne2k_pci.bin \
19c80e50 360 $(datadir)/pxe-rtl8139.bin \
40e8a53b 361 $(datadir)/pxe-pcnet.bin \
2991990b 362 $(datadir)/pxe-e1000.bin \
1f50f8d1
FB
363 $(docdir)/qemu-doc.html \
364 $(docdir)/qemu-tech.html \
40e8a53b
AJ
365 $(mandir)/man1/qemu.1 \
366 $(mandir)/man1/qemu-img.1 \
7a5ca864 367 $(mandir)/man8/qemu-nbd.8
d691f669 368
4fb240a4
FB
369# Include automatically generated dependency files
370-include $(wildcard *.d audio/*.d slirp/*.d)