]> git.proxmox.com Git - qemu.git/blame_incremental - Makefile
Remove duplicated definition
[qemu.git] / Makefile
... / ...
CommitLineData
1# Makefile for QEMU.
2
3ifneq ($(wildcard config-host.mak),)
4# Put the all: rule here so that config-host.mak can contain dependencies.
5all: build-all
6include config-host.mak
7include $(SRC_PATH)/rules.mak
8else
9config-host.mak:
10 @echo "Please call configure before running make!"
11 @exit 1
12endif
13
14.PHONY: all clean cscope distclean dvi html info install install-doc \
15 recurse-all speed tar tarbin test
16
17VPATH=$(SRC_PATH):$(SRC_PATH)/hw
18
19
20CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
21LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
22
23CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
24CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
25CPPFLAGS += -U_FORTIFY_SOURCE
26LIBS=
27ifdef CONFIG_STATIC
28LDFLAGS += -static
29endif
30ifdef BUILD_DOCS
31DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
32else
33DOCS=
34endif
35
36LIBS+=$(PTHREADLIBS)
37LIBS+=$(CLOCKLIBS)
38
39ifdef CONFIG_SOLARIS
40LIBS+=-lsocket -lnsl -lresolv
41endif
42
43ifdef CONFIG_WIN32
44LIBS+=-lwinmm -lws2_32 -liphlpapi
45endif
46
47build-all: $(TOOLS) $(DOCS) roms recurse-all
48
49config-host.mak: configure
50ifneq ($(wildcard config-host.mak),)
51 @echo $@ is out-of-date, running configure
52 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
53endif
54
55SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
56SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
57
58subdir-%:
59 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
60
61$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
62$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
63
64recurse-all: $(SUBDIR_RULES)
65
66#######################################################################
67# block-obj-y is code used by both qemu system emulation and qemu-img
68
69block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
70block-obj-y += block/cow.o block/qcow.o aes.o block/vmdk.o block/cloop.o
71block-obj-y += block/dmg.o block/bochs.o block/vpc.o block/vvfat.o
72block-obj-y += block/qcow2.o block/qcow2-refcount.o block/qcow2-cluster.o
73block-obj-y += block/qcow2-snapshot.o
74block-obj-y += block/parallels.o block/nbd.o
75block-obj-y += nbd.o block.o aio.o
76
77ifdef CONFIG_WIN32
78block-obj-y += block/raw-win32.o
79else
80ifdef CONFIG_AIO
81block-obj-y += posix-aio-compat.o
82endif
83block-obj-y += block/raw-posix.o
84endif
85
86block-obj-$(CONFIG_CURL) += block/curl.o
87
88######################################################################
89# libqemu_common.a: Target independent part of system emulation. The
90# long term path is to suppress *all* target specific code in case of
91# system emulation, i.e. a single QEMU executable should support all
92# CPUs and machines.
93
94obj-y = $(block-obj-y)
95obj-y += readline.o console.o
96
97obj-y += irq.o ptimer.o
98obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
99obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
100obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o
101obj-y += scsi-disk.o cdrom.o
102obj-y += scsi-generic.o
103obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
104obj-y += usb-serial.o usb-net.o
105obj-y += sd.o ssi-sd.o
106obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
107obj-y += bt-hci-csr.o
108obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
109obj-y += qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
110obj-y += msmouse.o ps2.o
111obj-y += qdev.o qdev-properties.o ssi.o
112
113obj-$(CONFIG_BRLAPI) += baum.o
114
115ifdef CONFIG_BRLAPI
116LIBS+=-lbrlapi
117endif
118
119ifdef CONFIG_WIN32
120obj-y += tap-win32.o
121else
122obj-y += migration-exec.o
123endif
124
125ifdef CONFIG_COREAUDIO
126AUDIO_PT = y
127endif
128ifdef CONFIG_FMOD
129audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
130endif
131ifdef CONFIG_ESD
132AUDIO_PT = y
133AUDIO_PT_INT = y
134endif
135ifdef CONFIG_PA
136AUDIO_PT = y
137AUDIO_PT_INT = y
138endif
139ifdef AUDIO_PT
140LDFLAGS += -pthread
141endif
142
143audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
144audio-obj-$(CONFIG_SDL) += sdlaudio.o
145audio-obj-$(CONFIG_OSS) += ossaudio.o
146audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
147audio-obj-$(CONFIG_ALSA) += alsaaudio.o
148audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
149audio-obj-$(CONFIG_FMOD) += fmodaudio.o
150audio-obj-$(CONFIG_ESD) += esdaudio.o
151audio-obj-$(CONFIG_PA) += paaudio.o
152audio-obj-$(AUDIO_PT_INT) += audio_pt_int.o
153audio-obj-y += wavcapture.o
154obj-y += $(addprefix audio/, $(audio-obj-y))
155
156obj-y += keymaps.o
157obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
158obj-$(CONFIG_CURSES) += curses.o
159obj-y += vnc.o acl.o d3des.o
160obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
161obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
162obj-$(CONFIG_COCOA) += cocoa.o
163obj-$(CONFIG_IOTHREAD) += qemu-thread.o
164
165ifdef CONFIG_SLIRP
166CPPFLAGS+=-I$(SRC_PATH)/slirp
167endif
168
169slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
170slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
171slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
172obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
173
174LIBS+=$(VDE_LIBS)
175
176# xen backend driver support
177obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
178obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
179
180LIBS+=$(CURL_LIBS)
181
182cocoa.o: cocoa.m
183
184keymaps.o: keymaps.c keymaps.h
185
186sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
187
188sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
189
190sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: CFLAGS += $(SDL_CFLAGS)
191
192acl.o: acl.h acl.c
193
194vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
195
196vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
197
198vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
199
200vnc-tls.o: vnc-tls.c vnc.h
201
202vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
203
204vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
205
206curses.o: curses.c keymaps.h curses_keys.h
207
208bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
209
210libqemu_common.a: $(obj-y)
211
212#######################################################################
213# user-obj-y is code used by qemu userspace emulation
214user-obj-y = cutils.o cache-utils.o
215
216libqemu_user.a: $(user-obj-y)
217
218######################################################################
219
220qemu-img.o: qemu-img-cmds.h
221
222qemu-img$(EXESUF): qemu-img.o qemu-tool.o tool-osdep.o $(block-obj-y)
223
224qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o tool-osdep.o $(block-obj-y)
225
226qemu-io$(EXESUF): qemu-io.o qemu-tool.o tool-osdep.o cmd.o $(block-obj-y)
227
228qemu-img$(EXESUF) qemu-nbd$(EXESUF) qemu-io$(EXESUF): LIBS += -lz
229
230qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
231 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@")
232
233clean:
234# avoid old build problems by removing potentially incorrect old files
235 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
236 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
237 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
238 rm -f qemu-img-cmds.h
239 $(MAKE) -C tests clean
240 for d in $(TARGET_DIRS) $(ROMS) libhw32 libhw64; do \
241 $(MAKE) -C $$d $@ || exit 1 ; \
242 done
243
244distclean: clean
245 rm -f config-host.mak config-host.h $(DOCS) qemu-options.texi qemu-img-cmds.texi
246 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
247 for d in $(TARGET_DIRS) libhw32 libhw64; do \
248 rm -rf $$d || exit 1 ; \
249 done
250
251KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
252ar de en-us fi fr-be hr it lv nl pl ru th \
253common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
254
255ifdef INSTALL_BLOBS
256BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
257video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
258pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
259bamboo.dtb petalogix-s3adsp1800.dtb \
260multiboot.bin
261else
262BLOBS=
263endif
264
265roms:
266 for d in $(ROMS); do \
267 $(MAKE) -C $$d || exit 1 ; \
268 done
269
270install-doc: $(DOCS)
271 $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
272 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
273ifndef CONFIG_WIN32
274 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
275 $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
276 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
277 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
278endif
279
280install: all $(if $(BUILD_DOCS),install-doc)
281 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
282ifneq ($(TOOLS),)
283 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
284endif
285ifneq ($(BLOBS),)
286 $(INSTALL_DIR) "$(DESTDIR)$(datadir)"
287 set -e; for x in $(BLOBS); do \
288 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
289 done
290endif
291 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
292 set -e; for x in $(KEYMAPS); do \
293 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
294 done
295 for d in $(TARGET_DIRS); do \
296 $(MAKE) -C $$d $@ || exit 1 ; \
297 done
298
299# various test targets
300test speed: all
301 $(MAKE) -C tests $@
302
303TAGS:
304 etags *.[ch] tests/*.[ch] block/*.[ch] hw/*.[ch]
305
306cscope:
307 rm -f ./cscope.*
308 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
309 cscope -b
310
311# documentation
312%.html: %.texi
313 $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@")
314
315%.info: %.texi
316 $(call quiet-command,makeinfo -I . $< -o $@," GEN $@")
317
318%.dvi: %.texi
319 $(call quiet-command,texi2dvi -I . $<," GEN $@")
320
321qemu-options.texi: $(SRC_PATH)/qemu-options.hx
322 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
323
324qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
325 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
326
327qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
328 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
329
330qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
331 $(call quiet-command, \
332 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
333 pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
334 " GEN $@")
335
336qemu-img.1: qemu-img.texi qemu-img-cmds.texi
337 $(call quiet-command, \
338 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
339 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
340 " GEN $@")
341
342qemu-nbd.8: qemu-nbd.texi
343 $(call quiet-command, \
344 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
345 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
346 " GEN $@")
347
348info: qemu-doc.info qemu-tech.info
349
350dvi: qemu-doc.dvi qemu-tech.dvi
351
352html: qemu-doc.html qemu-tech.html
353
354qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
355
356VERSION ?= $(shell cat VERSION)
357FILE = qemu-$(VERSION)
358
359# tar release (use 'make -k tar' on a checkouted tree)
360tar:
361 rm -rf /tmp/$(FILE)
362 cp -r . /tmp/$(FILE)
363 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
364 rm -rf /tmp/$(FILE)
365
366# generate a binary distribution
367tarbin:
368 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
369 $(bindir)/qemu \
370 $(bindir)/qemu-system-x86_64 \
371 $(bindir)/qemu-system-arm \
372 $(bindir)/qemu-system-cris \
373 $(bindir)/qemu-system-m68k \
374 $(bindir)/qemu-system-mips \
375 $(bindir)/qemu-system-mipsel \
376 $(bindir)/qemu-system-mips64 \
377 $(bindir)/qemu-system-mips64el \
378 $(bindir)/qemu-system-ppc \
379 $(bindir)/qemu-system-ppcemb \
380 $(bindir)/qemu-system-ppc64 \
381 $(bindir)/qemu-system-sh4 \
382 $(bindir)/qemu-system-sh4eb \
383 $(bindir)/qemu-system-sparc \
384 $(bindir)/qemu-i386 \
385 $(bindir)/qemu-x86_64 \
386 $(bindir)/qemu-alpha \
387 $(bindir)/qemu-arm \
388 $(bindir)/qemu-armeb \
389 $(bindir)/qemu-cris \
390 $(bindir)/qemu-m68k \
391 $(bindir)/qemu-mips \
392 $(bindir)/qemu-mipsel \
393 $(bindir)/qemu-ppc \
394 $(bindir)/qemu-ppc64 \
395 $(bindir)/qemu-ppc64abi32 \
396 $(bindir)/qemu-sh4 \
397 $(bindir)/qemu-sh4eb \
398 $(bindir)/qemu-sparc \
399 $(bindir)/qemu-sparc64 \
400 $(bindir)/qemu-sparc32plus \
401 $(bindir)/qemu-img \
402 $(bindir)/qemu-nbd \
403 $(datadir)/bios.bin \
404 $(datadir)/vgabios.bin \
405 $(datadir)/vgabios-cirrus.bin \
406 $(datadir)/ppc_rom.bin \
407 $(datadir)/video.x \
408 $(datadir)/openbios-sparc32 \
409 $(datadir)/openbios-sparc64 \
410 $(datadir)/openbios-ppc \
411 $(datadir)/pxe-ne2k_pci.bin \
412 $(datadir)/pxe-rtl8139.bin \
413 $(datadir)/pxe-pcnet.bin \
414 $(datadir)/pxe-e1000.bin \
415 $(docdir)/qemu-doc.html \
416 $(docdir)/qemu-tech.html \
417 $(mandir)/man1/qemu.1 \
418 $(mandir)/man1/qemu-img.1 \
419 $(mandir)/man8/qemu-nbd.8
420
421# Include automatically generated dependency files
422-include $(wildcard *.d audio/*.d slirp/*.d block/*.d)