Statistics
| Branch: | Revision:

root / Makefile @ d9ace8b3

History | View | Annotate | Download (11.6 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
# Don't try to regenerate Makefile or configure
15
# We don't generate any of them
16
Makefile: ;
17
configure: ;
18

    
19
.PHONY: all clean cscope distclean dvi html info install install-doc \
20
	recurse-all speed tar tarbin test build-all
21

    
22
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
23

    
24
LIBS+=-lz $(LIBS_TOOLS)
25

    
26
ifdef BUILD_DOCS
27
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
28
else
29
DOCS=
30
endif
31

    
32
build-all: $(TOOLS) $(DOCS) recurse-all
33

    
34
config-host.mak: configure
35
ifneq ($(wildcard config-host.mak),)
36
	@echo $@ is out-of-date, running configure
37
	@sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
38
endif
39

    
40
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
41
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
42

    
43
subdir-%:
44
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
45

    
46
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
47

    
48
$(filter %-user,$(SUBDIR_RULES)): libuser.a
49

    
50
libuser.a:
51
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="$*/" all,)
52

    
53
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
54
romsubdir-%:
55
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
56

    
57
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
58

    
59
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
60

    
61
#######################################################################
62
# block-obj-y is code used by both qemu system emulation and qemu-img
63

    
64
block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
65
block-obj-y += nbd.o block.o aio.o aes.o osdep.o
66
block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
67
block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
68

    
69
block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o
70
block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o
71
block-nested-y += parallels.o nbd.o
72
block-nested-$(CONFIG_WIN32) += raw-win32.o
73
block-nested-$(CONFIG_POSIX) += raw-posix.o
74
block-nested-$(CONFIG_CURL) += curl.o
75

    
76
block-obj-y +=  $(addprefix block/, $(block-nested-y))
77

    
78
######################################################################
79
# libqemu_common.a: Target independent part of system emulation. The
80
# long term path is to suppress *all* target specific code in case of
81
# system emulation, i.e. a single QEMU executable should support all
82
# CPUs and machines.
83

    
84
obj-y = $(block-obj-y)
85
obj-y += readline.o console.o
86

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

    
105
obj-$(CONFIG_BRLAPI) += baum.o
106
obj-$(CONFIG_WIN32) += tap-win32.o
107
obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
108

    
109
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
110

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

    
124
obj-y += keymaps.o
125
obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
126
obj-$(CONFIG_CURSES) += curses.o
127
obj-y += vnc.o acl.o d3des.o
128
obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
129
obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
130
obj-$(CONFIG_COCOA) += cocoa.o
131
obj-$(CONFIG_IOTHREAD) += qemu-thread.o
132

    
133
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
134
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
135
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
136
obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
137

    
138
# xen backend driver support
139
obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
140
obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
141

    
142
QEMU_CFLAGS+=$(CURL_CFLAGS)
143

    
144
cocoa.o: cocoa.m
145

    
146
keymaps.o: keymaps.c keymaps.h
147

    
148
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
149

    
150
sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
151

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

    
154
acl.o: acl.h acl.c
155

    
156
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
157

    
158
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
159

    
160
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
161

    
162
vnc-tls.o: vnc-tls.c vnc.h
163

    
164
vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
165

    
166
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
167

    
168
curses.o: curses.c keymaps.h curses_keys.h
169

    
170
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
171

    
172
libqemu_common.a: $(obj-y)
173

    
174
######################################################################
175

    
176
qemu-img.o: qemu-img-cmds.h
177

    
178
qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y)
179

    
180
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o $(block-obj-y)
181

    
182
qemu-io$(EXESUF):  qemu-io.o qemu-tool.o cmd.o $(block-obj-y)
183

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

    
187
check-qint: check-qint.o qint.o qemu-malloc.o
188
check-qstring: check-qstring.o qstring.o qemu-malloc.o
189
check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o
190

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

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

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

    
213
ifdef INSTALL_BLOBS
214
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
215
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
216
pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
217
bamboo.dtb petalogix-s3adsp1800.dtb \
218
multiboot.bin
219
else
220
BLOBS=
221
endif
222

    
223
install-doc: $(DOCS)
224
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
225
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
226
ifdef CONFIG_POSIX
227
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
228
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
229
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
230
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
231
endif
232

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

    
252
# various test targets
253
test speed: all
254
	$(MAKE) -C tests $@
255

    
256
.PHONY: TAGS
257
TAGS:
258
	find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
259

    
260
cscope:
261
	rm -f ./cscope.*
262
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
263
	cscope -b
264

    
265
# documentation
266
%.html: %.texi
267
	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
268

    
269
%.info: %.texi
270
	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
271

    
272
%.dvi: %.texi
273
	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
274

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

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

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

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

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

    
296
qemu-nbd.8: qemu-nbd.texi
297
	$(call quiet-command, \
298
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
299
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
300
	  "  GEN   $@")
301

    
302
info: qemu-doc.info qemu-tech.info
303

    
304
dvi: qemu-doc.dvi qemu-tech.dvi
305

    
306
html: qemu-doc.html qemu-tech.html
307

    
308
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
309

    
310
VERSION ?= $(shell cat VERSION)
311
FILE = qemu-$(VERSION)
312

    
313
# tar release (use 'make -k tar' on a checkouted tree)
314
tar:
315
	rm -rf /tmp/$(FILE)
316
	cp -r . /tmp/$(FILE)
317
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
318
	rm -rf /tmp/$(FILE)
319

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

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