Statistics
| Branch: | Revision:

root / Makefile @ add16157

History | View | Annotate | Download (11.4 kB)

1
# Makefile for QEMU.
2

    
3
ifneq ($(wildcard config-host.mak),)
4
# Put the all: rule here so that config-host.mak can contain dependencies.
5
all: build-all
6
include config-host.mak
7
include $(SRC_PATH)/rules.mak
8
else
9
config-host.mak:
10
	@echo "Please call configure before running make!"
11
	@exit 1
12
endif
13

    
14
.PHONY: all clean cscope distclean dvi html info install install-doc \
15
	recurse-all speed tar tarbin test
16

    
17
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
18

    
19
LIBS+=-lz $(LIBS_TOOLS)
20

    
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
26

    
27
build-all: $(TOOLS) $(DOCS) recurse-all
28

    
29
config-host.mak: configure
30
ifneq ($(wildcard config-host.mak),)
31
	@echo $@ is out-of-date, running configure
32
	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
33
endif
34

    
35
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
36
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
37

    
38
subdir-%:
39
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
40

    
41
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
42

    
43
$(filter %-user,$(SUBDIR_RULES)): libuser.a
44

    
45
libuser.a:
46
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="$*/" all,)
47

    
48
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
49
romsubdir-%:
50
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
51

    
52
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
53

    
54
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
55

    
56
#######################################################################
57
# block-obj-y is code used by both qemu system emulation and qemu-img
58

    
59
block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
60
block-obj-y += nbd.o block.o aio.o aes.o osdep.o
61
block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
62
block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
63

    
64
block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o
65
block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o
66
block-nested-y += parallels.o nbd.o
67
block-nested-$(CONFIG_WIN32) += raw-win32.o
68
block-nested-$(CONFIG_POSIX) += raw-posix.o
69
block-nested-$(CONFIG_CURL) += curl.o
70

    
71
block-obj-y +=  $(addprefix block/, $(block-nested-y))
72

    
73
######################################################################
74
# libqemu_common.a: Target independent part of system emulation. The
75
# long term path is to suppress *all* target specific code in case of
76
# system emulation, i.e. a single QEMU executable should support all
77
# CPUs and machines.
78

    
79
obj-y = $(block-obj-y)
80
obj-y += readline.o console.o
81

    
82
obj-y += tcg-runtime.o host-utils.o
83
obj-y += irq.o ptimer.o ioport.o
84
obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
85
obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
86
obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o
87
obj-y += scsi-disk.o cdrom.o
88
obj-y += scsi-generic.o scsi-bus.o
89
obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
90
obj-y += usb-serial.o usb-net.o usb-bus.o
91
obj-y += sd.o ssi-sd.o
92
obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
93
obj-y += bt-hci-csr.o
94
obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
95
obj-y += qemu-char.o aio.o net-checksum.o savevm.o
96
obj-y += msmouse.o ps2.o
97
obj-y += qdev.o qdev-properties.o ssi.o
98
obj-y += qint.o qstring.o qdict.o qemu-config.o
99

    
100
obj-$(CONFIG_BRLAPI) += baum.o
101
obj-$(CONFIG_WIN32) += tap-win32.o
102
obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
103

    
104
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
105

    
106
audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
107
audio-obj-$(CONFIG_SDL) += sdlaudio.o
108
audio-obj-$(CONFIG_OSS) += ossaudio.o
109
audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
110
audio-obj-$(CONFIG_ALSA) += alsaaudio.o
111
audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
112
audio-obj-$(CONFIG_FMOD) += fmodaudio.o
113
audio-obj-$(CONFIG_ESD) += esdaudio.o
114
audio-obj-$(CONFIG_PA) += paaudio.o
115
audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
116
audio-obj-y += wavcapture.o
117
obj-y += $(addprefix audio/, $(audio-obj-y))
118

    
119
obj-y += keymaps.o
120
obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
121
obj-$(CONFIG_CURSES) += curses.o
122
obj-y += vnc.o acl.o d3des.o
123
obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
124
obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
125
obj-$(CONFIG_COCOA) += cocoa.o
126
obj-$(CONFIG_IOTHREAD) += qemu-thread.o
127

    
128
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
129
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
130
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
131
obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
132

    
133
# xen backend driver support
134
obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
135
obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
136

    
137
QEMU_CFLAGS+=$(CURL_CFLAGS)
138

    
139
cocoa.o: cocoa.m
140

    
141
keymaps.o: keymaps.c keymaps.h
142

    
143
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
144

    
145
sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
146

    
147
sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
148

    
149
acl.o: acl.h acl.c
150

    
151
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
152

    
153
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
154

    
155
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
156

    
157
vnc-tls.o: vnc-tls.c vnc.h
158

    
159
vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
160

    
161
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
162

    
163
curses.o: curses.c keymaps.h curses_keys.h
164

    
165
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
166

    
167
libqemu_common.a: $(obj-y)
168

    
169
######################################################################
170

    
171
qemu-img.o: qemu-img-cmds.h
172

    
173
qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y)
174

    
175
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o $(block-obj-y)
176

    
177
qemu-io$(EXESUF):  qemu-io.o qemu-tool.o cmd.o $(block-obj-y)
178

    
179
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
180
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $@")
181

    
182
check-qint: check-qint.o qint.o qemu-malloc.o
183
check-qstring: check-qstring.o qstring.o qemu-malloc.o
184
check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o
185

    
186
clean:
187
# avoid old build problems by removing potentially incorrect old files
188
	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
189
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
190
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
191
	rm -f qemu-img-cmds.h
192
	$(MAKE) -C tests clean
193
	for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
194
	$(MAKE) -C $$d $@ || exit 1 ; \
195
        done
196

    
197
distclean: clean
198
	rm -f config-host.mak config-host.h config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi
199
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
200
	for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
201
	rm -rf $$d || exit 1 ; \
202
        done
203

    
204
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
205
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
206
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
207

    
208
ifdef INSTALL_BLOBS
209
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
210
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
211
pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
212
bamboo.dtb petalogix-s3adsp1800.dtb \
213
multiboot.bin
214
else
215
BLOBS=
216
endif
217

    
218
install-doc: $(DOCS)
219
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
220
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
221
ifdef CONFIG_POSIX
222
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
223
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
224
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
225
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
226
endif
227

    
228
install: all $(if $(BUILD_DOCS),install-doc)
229
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
230
ifneq ($(TOOLS),)
231
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
232
endif
233
ifneq ($(BLOBS),)
234
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
235
	set -e; for x in $(BLOBS); do \
236
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
237
	done
238
endif
239
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
240
	set -e; for x in $(KEYMAPS); do \
241
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
242
	done
243
	for d in $(TARGET_DIRS); do \
244
	$(MAKE) -C $$d $@ || exit 1 ; \
245
        done
246

    
247
# various test targets
248
test speed: all
249
	$(MAKE) -C tests $@
250

    
251
.PHONY: TAGS
252
TAGS:
253
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
254

    
255
cscope:
256
	rm -f ./cscope.*
257
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
258
	cscope -b
259

    
260
# documentation
261
%.html: %.texi
262
	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
263

    
264
%.info: %.texi
265
	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
266

    
267
%.dvi: %.texi
268
	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
269

    
270
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
271
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
272

    
273
qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
274
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
275

    
276
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
277
	$(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
278

    
279
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
280
	$(call quiet-command, \
281
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
282
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
283
	  "  GEN   $@")
284

    
285
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
286
	$(call quiet-command, \
287
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
288
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
289
	  "  GEN   $@")
290

    
291
qemu-nbd.8: qemu-nbd.texi
292
	$(call quiet-command, \
293
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
294
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
295
	  "  GEN   $@")
296

    
297
info: qemu-doc.info qemu-tech.info
298

    
299
dvi: qemu-doc.dvi qemu-tech.dvi
300

    
301
html: qemu-doc.html qemu-tech.html
302

    
303
qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
304

    
305
VERSION ?= $(shell cat VERSION)
306
FILE = qemu-$(VERSION)
307

    
308
# tar release (use 'make -k tar' on a checkouted tree)
309
tar:
310
	rm -rf /tmp/$(FILE)
311
	cp -r . /tmp/$(FILE)
312
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
313
	rm -rf /tmp/$(FILE)
314

    
315
# generate a binary distribution
316
tarbin:
317
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
318
	$(bindir)/qemu \
319
	$(bindir)/qemu-system-x86_64 \
320
	$(bindir)/qemu-system-arm \
321
	$(bindir)/qemu-system-cris \
322
	$(bindir)/qemu-system-m68k \
323
	$(bindir)/qemu-system-mips \
324
	$(bindir)/qemu-system-mipsel \
325
	$(bindir)/qemu-system-mips64 \
326
	$(bindir)/qemu-system-mips64el \
327
	$(bindir)/qemu-system-ppc \
328
	$(bindir)/qemu-system-ppcemb \
329
	$(bindir)/qemu-system-ppc64 \
330
	$(bindir)/qemu-system-sh4 \
331
	$(bindir)/qemu-system-sh4eb \
332
	$(bindir)/qemu-system-sparc \
333
	$(bindir)/qemu-i386 \
334
	$(bindir)/qemu-x86_64 \
335
	$(bindir)/qemu-alpha \
336
	$(bindir)/qemu-arm \
337
	$(bindir)/qemu-armeb \
338
	$(bindir)/qemu-cris \
339
	$(bindir)/qemu-m68k \
340
	$(bindir)/qemu-mips \
341
	$(bindir)/qemu-mipsel \
342
	$(bindir)/qemu-ppc \
343
	$(bindir)/qemu-ppc64 \
344
	$(bindir)/qemu-ppc64abi32 \
345
	$(bindir)/qemu-sh4 \
346
	$(bindir)/qemu-sh4eb \
347
	$(bindir)/qemu-sparc \
348
	$(bindir)/qemu-sparc64 \
349
	$(bindir)/qemu-sparc32plus \
350
	$(bindir)/qemu-img \
351
	$(bindir)/qemu-nbd \
352
	$(datadir)/bios.bin \
353
	$(datadir)/vgabios.bin \
354
	$(datadir)/vgabios-cirrus.bin \
355
	$(datadir)/ppc_rom.bin \
356
	$(datadir)/video.x \
357
	$(datadir)/openbios-sparc32 \
358
	$(datadir)/openbios-sparc64 \
359
	$(datadir)/openbios-ppc \
360
	$(datadir)/pxe-ne2k_pci.bin \
361
	$(datadir)/pxe-rtl8139.bin \
362
	$(datadir)/pxe-pcnet.bin \
363
	$(datadir)/pxe-e1000.bin \
364
	$(docdir)/qemu-doc.html \
365
	$(docdir)/qemu-tech.html \
366
	$(mandir)/man1/qemu.1 \
367
	$(mandir)/man1/qemu-img.1 \
368
	$(mandir)/man8/qemu-nbd.8
369

    
370
# Include automatically generated dependency files
371
-include $(wildcard *.d audio/*.d slirp/*.d block/*.d)