Make binary stripping conditional (Riku Voipio)
[qemu-kvm/fedora.git] / Makefile
blob297625ea574dce95ef38a47cd706752397cc767d
1 # Makefile for QEMU.
3 include config-host.mak
4 include $(SRC_PATH)/rules.mak
6 .PHONY: all clean cscope distclean dvi html info install install-doc \
7 recurse-all speed tar tarbin test
9 VPATH=$(SRC_PATH):$(SRC_PATH)/hw
12 CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
13 LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
15 CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
16 CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
17 LIBS=
18 ifdef CONFIG_STATIC
19 LDFLAGS += -static
20 endif
21 ifdef BUILD_DOCS
22 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
23 else
24 DOCS=
25 endif
27 LIBS+=$(AIOLIBS)
29 ifdef CONFIG_SOLARIS
30 LIBS+=-lsocket -lnsl -lresolv
31 endif
33 ifdef CONFIG_WIN32
34 LIBS+=-lwinmm -lws2_32 -liphlpapi
35 endif
37 all: $(TOOLS) $(DOCS) recurse-all
39 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
41 subdir-%:
42 $(call quiet-command,$(MAKE) -C $* V="$(V)" TARGET_DIR="$*/" all,)
44 $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
45 $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
47 recurse-all: $(SUBDIR_RULES)
49 #######################################################################
50 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
52 BLOCK_OBJS=cutils.o qemu-malloc.o
53 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
54 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
55 BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
56 BLOCK_OBJS+=nbd.o block.o aio.o
58 ifdef CONFIG_WIN32
59 BLOCK_OBJS += block-raw-win32.o
60 else
61 ifdef CONFIG_AIO
62 BLOCK_OBJS += posix-aio-compat.o
63 endif
64 BLOCK_OBJS += block-raw-posix.o
65 endif
67 ifdef CONFIG_AIO
68 BLOCK_OBJS += compatfd.o
69 endif
71 ######################################################################
72 # libqemu_common.a: Target independent part of system emulation. The
73 # long term path is to suppress *all* target specific code in case of
74 # system emulation, i.e. a single QEMU executable should support all
75 # CPUs and machines.
77 OBJS=$(BLOCK_OBJS)
78 OBJS+=readline.o console.o
80 OBJS+=irq.o
81 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
82 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
83 OBJS+=tmp105.o lm832x.o
84 OBJS+=scsi-disk.o cdrom.o
85 OBJS+=scsi-generic.o
86 OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
87 OBJS+=usb-serial.o usb-net.o
88 OBJS+=sd.o ssi-sd.o
89 OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
90 OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
91 OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
93 ifdef CONFIG_BRLAPI
94 OBJS+= baum.o
95 LIBS+=-lbrlapi
96 endif
98 ifdef CONFIG_WIN32
99 OBJS+=tap-win32.o
100 else
101 OBJS+=migration-exec.o
102 endif
104 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
105 ifdef CONFIG_SDL
106 AUDIO_OBJS += sdlaudio.o
107 endif
108 ifdef CONFIG_OSS
109 AUDIO_OBJS += ossaudio.o
110 endif
111 ifdef CONFIG_COREAUDIO
112 AUDIO_OBJS += coreaudio.o
113 AUDIO_PT = yes
114 endif
115 ifdef CONFIG_ALSA
116 AUDIO_OBJS += alsaaudio.o
117 endif
118 ifdef CONFIG_DSOUND
119 AUDIO_OBJS += dsoundaudio.o
120 endif
121 ifdef CONFIG_FMOD
122 AUDIO_OBJS += fmodaudio.o
123 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
124 endif
125 ifdef CONFIG_ESD
126 AUDIO_PT = yes
127 AUDIO_PT_INT = yes
128 AUDIO_OBJS += esdaudio.o
129 endif
130 ifdef CONFIG_PA
131 AUDIO_PT = yes
132 AUDIO_PT_INT = yes
133 AUDIO_OBJS += paaudio.o
134 endif
135 ifdef AUDIO_PT
136 LDFLAGS += -pthread
137 endif
138 ifdef AUDIO_PT_INT
139 AUDIO_OBJS += audio_pt_int.o
140 endif
141 AUDIO_OBJS+= wavcapture.o
142 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
144 OBJS+=keymaps.o
145 ifdef CONFIG_SDL
146 OBJS+=sdl.o x_keymap.o
147 endif
148 ifdef CONFIG_CURSES
149 OBJS+=curses.o
150 endif
151 OBJS+=vnc.o acl.o d3des.o
152 ifdef CONFIG_VNC_TLS
153 OBJS+=vnc-tls.o vnc-auth-vencrypt.o
154 endif
155 ifdef CONFIG_VNC_SASL
156 OBJS+=vnc-auth-sasl.o
157 endif
159 ifdef CONFIG_COCOA
160 OBJS+=cocoa.o
161 endif
163 ifdef CONFIG_SLIRP
164 CPPFLAGS+=-I$(SRC_PATH)/slirp
165 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
166 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
167 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
168 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
169 endif
171 LIBS+=$(VDE_LIBS)
173 cocoa.o: cocoa.m
175 keymaps.o: keymaps.c keymaps.h
177 sdl.o: sdl.c keymaps.h sdl_keysym.h
179 sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
181 acl.o: acl.h acl.c
183 vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
185 vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
187 vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
189 vnc-tls.o: vnc-tls.c vnc.h
191 vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
193 vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
195 curses.o: curses.c keymaps.h curses_keys.h
197 bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
199 libqemu_common.a: $(OBJS)
201 #######################################################################
202 # USER_OBJS is code used by qemu userspace emulation
203 USER_OBJS=cutils.o cache-utils.o
205 libqemu_user.a: $(USER_OBJS)
207 ######################################################################
209 qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
211 qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
213 qemu-img$(EXESUF) qemu-nbd$(EXESUF): LIBS += -lz
215 clean:
216 # avoid old build problems by removing potentially incorrect old files
217 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
218 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
219 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
220 $(MAKE) -C tests clean
221 for d in $(TARGET_DIRS); do \
222 $(MAKE) -C $$d $@ || exit 1 ; \
223 done
225 distclean: clean
226 rm -f config-host.mak config-host.h $(DOCS)
227 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
228 for d in $(TARGET_DIRS); do \
229 rm -rf $$d || exit 1 ; \
230 done
232 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
233 ar de en-us fi fr-be hr it lv nl pl ru th \
234 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
236 ifdef INSTALL_BLOBS
237 BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
238 video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
239 pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
240 bamboo.dtb
241 BLOBS += extboot.bin
242 else
243 BLOBS=
244 endif
246 install-doc: $(DOCS)
247 mkdir -p "$(DESTDIR)$(docdir)"
248 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
249 ifndef CONFIG_WIN32
250 mkdir -p "$(DESTDIR)$(mandir)/man1"
251 $(INSTALL) -m 644 qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
252 mkdir -p "$(DESTDIR)$(mandir)/man8"
253 $(INSTALL) -m 644 qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
254 endif
256 install: all $(if $(BUILD_DOCS),install-doc)
257 mkdir -p "$(DESTDIR)$(bindir)"
258 ifneq ($(TOOLS),)
259 $(INSTALL) -m 755 $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
260 endif
261 ifneq ($(BLOBS),)
262 mkdir -p "$(DESTDIR)$(datadir)"
263 set -e; for x in $(BLOBS); do \
264 if [ -f $(SRC_PATH)/pc-bios/$$x ];then \
265 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
266 fi \
267 done
268 endif
269 ifndef CONFIG_WIN32
270 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
271 set -e; for x in $(KEYMAPS); do \
272 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
273 done
274 endif
275 for d in $(TARGET_DIRS); do \
276 $(MAKE) -C $$d $@ || exit 1 ; \
277 done
279 # various test targets
280 test speed: all
281 $(MAKE) -C tests $@
283 TAGS:
284 etags *.[ch] tests/*.[ch]
286 cscope:
287 rm -f ./cscope.*
288 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
289 cscope -b
291 # documentation
292 %.html: %.texi
293 texi2html -monolithic -number $<
295 %.info: %.texi
296 makeinfo $< -o $@
298 %.dvi: %.texi
299 texi2dvi $<
301 qemu.1: qemu-doc.texi
302 $(SRC_PATH)/texi2pod.pl $< qemu.pod
303 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
305 qemu-img.1: qemu-img.texi
306 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
307 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
309 qemu-nbd.8: qemu-nbd.texi
310 $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
311 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
313 info: qemu-doc.info qemu-tech.info
315 dvi: qemu-doc.dvi qemu-tech.dvi
317 html: qemu-doc.html qemu-tech.html
319 qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
321 VERSION ?= $(shell cat VERSION)
322 FILE = qemu-$(VERSION)
324 # tar release (use 'make -k tar' on a checkouted tree)
325 tar:
326 rm -rf /tmp/$(FILE)
327 cp -r . /tmp/$(FILE)
328 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
329 rm -rf /tmp/$(FILE)
331 # generate a binary distribution
332 tarbin:
333 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
334 $(bindir)/qemu \
335 $(bindir)/qemu-system-x86_64 \
336 $(bindir)/qemu-system-arm \
337 $(bindir)/qemu-system-cris \
338 $(bindir)/qemu-system-m68k \
339 $(bindir)/qemu-system-mips \
340 $(bindir)/qemu-system-mipsel \
341 $(bindir)/qemu-system-mips64 \
342 $(bindir)/qemu-system-mips64el \
343 $(bindir)/qemu-system-ppc \
344 $(bindir)/qemu-system-ppcemb \
345 $(bindir)/qemu-system-ppc64 \
346 $(bindir)/qemu-system-sh4 \
347 $(bindir)/qemu-system-sh4eb \
348 $(bindir)/qemu-system-sparc \
349 $(bindir)/qemu-i386 \
350 $(bindir)/qemu-x86_64 \
351 $(bindir)/qemu-alpha \
352 $(bindir)/qemu-arm \
353 $(bindir)/qemu-armeb \
354 $(bindir)/qemu-cris \
355 $(bindir)/qemu-m68k \
356 $(bindir)/qemu-mips \
357 $(bindir)/qemu-mipsel \
358 $(bindir)/qemu-ppc \
359 $(bindir)/qemu-ppc64 \
360 $(bindir)/qemu-ppc64abi32 \
361 $(bindir)/qemu-sh4 \
362 $(bindir)/qemu-sh4eb \
363 $(bindir)/qemu-sparc \
364 $(bindir)/qemu-sparc64 \
365 $(bindir)/qemu-sparc32plus \
366 $(bindir)/qemu-img \
367 $(bindir)/qemu-nbd \
368 $(datadir)/bios.bin \
369 $(datadir)/vgabios.bin \
370 $(datadir)/vgabios-cirrus.bin \
371 $(datadir)/ppc_rom.bin \
372 $(datadir)/video.x \
373 $(datadir)/openbios-sparc32 \
374 $(datadir)/openbios-sparc64 \
375 $(datadir)/openbios-ppc \
376 $(datadir)/pxe-ne2k_pci.bin \
377 $(datadir)/pxe-rtl8139.bin \
378 $(datadir)/pxe-pcnet.bin \
379 $(datadir)/pxe-e1000.bin \
380 $(datadir)/extboot.bin \
381 $(docdir)/qemu-doc.html \
382 $(docdir)/qemu-tech.html \
383 $(mandir)/man1/qemu.1 \
384 $(mandir)/man1/qemu-img.1 \
385 $(mandir)/man8/qemu-nbd.8
387 # Include automatically generated dependency files
388 -include $(wildcard *.d audio/*.d slirp/*.d)
390 .PHONY: kvm/extboot
392 build-targets-i386 = $(build-targets-x86)
393 build-targets-x86_64 = $(build-targets-x86)
394 build-targets-x86 = kvm/extboot
395 build-targets-ia64 =
397 all: $(build-targets-$(ARCH))
399 kvm/extboot:
400 $(MAKE) -C $@
401 if ! [ -f pc-bios/extboot.bin ] \
402 || ! cmp -s pc-bios/extboot.bin $@/extboot.bin; then \
403 cp $@/extboot.bin pc-bios/extboot.bin; \