Statistics
| Branch: | Revision:

root / Makefile @ a558ee17

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
.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
QEMU_CFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
20
QEMU_CFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
21
QEMU_CFLAGS += -U_FORTIFY_SOURCE
22
LIBS+=-lz
23

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

    
30
build-all: $(TOOLS) $(DOCS) recurse-all
31

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

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

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

    
44
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
45
$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
46

    
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
61
block-obj-$(CONFIG_AIO) += posix-aio-compat.o
62

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

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

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

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

    
81
obj-y += irq.o ptimer.o
82
obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
83
obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
84
obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o
85
obj-y += scsi-disk.o cdrom.o
86
obj-y += scsi-generic.o
87
obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
88
obj-y += usb-serial.o usb-net.o
89
obj-y += sd.o ssi-sd.o
90
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
91
obj-y += bt-hci-csr.o
92
obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
93
obj-y += qemu-char.o aio.o net-checksum.o savevm.o
94
obj-y += msmouse.o ps2.o
95
obj-y += qdev.o qdev-properties.o ssi.o
96

    
97
obj-$(CONFIG_BRLAPI) += baum.o
98

    
99
LIBS+=$(BRLAPI_LIBS)
100

    
101
obj-$(CONFIG_WIN32) += tap-win32.o
102
obj-$(CONFIG_POSIX) += migration-exec.o
103

    
104
ifdef CONFIG_COREAUDIO
105
AUDIO_PT = y
106
endif
107
ifdef CONFIG_FMOD
108
audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS := $(FMOD_CFLAGS) $(QEMU_CFLAGS)
109
endif
110
ifdef CONFIG_ESD
111
AUDIO_PT = y
112
AUDIO_PT_INT = y
113
endif
114
ifdef CONFIG_PA
115
AUDIO_PT = y
116
AUDIO_PT_INT = y
117
endif
118
ifdef AUDIO_PT
119
LDFLAGS += -pthread
120
endif
121

    
122
audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
123
audio-obj-$(CONFIG_SDL) += sdlaudio.o
124
audio-obj-$(CONFIG_OSS) += ossaudio.o
125
audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
126
audio-obj-$(CONFIG_ALSA) += alsaaudio.o
127
audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
128
audio-obj-$(CONFIG_FMOD) += fmodaudio.o
129
audio-obj-$(CONFIG_ESD) += esdaudio.o
130
audio-obj-$(CONFIG_PA) += paaudio.o
131
audio-obj-$(AUDIO_PT_INT) += audio_pt_int.o
132
audio-obj-y += wavcapture.o
133
obj-y += $(addprefix audio/, $(audio-obj-y))
134

    
135
obj-y += keymaps.o
136
obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
137
obj-$(CONFIG_CURSES) += curses.o
138
obj-y += vnc.o acl.o d3des.o
139
obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
140
obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
141
obj-$(CONFIG_COCOA) += cocoa.o
142
obj-$(CONFIG_IOTHREAD) += qemu-thread.o
143

    
144
ifdef CONFIG_SLIRP
145
QEMU_CFLAGS+=-I$(SRC_PATH)/slirp
146
endif
147

    
148
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
149
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
150
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
151
obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
152

    
153
LIBS+=$(VDE_LIBS)
154

    
155
# xen backend driver support
156
obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
157
obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
158

    
159
QEMU_CFLAGS+=$(CURL_CFLAGS)
160
LIBS+=$(CURL_LIBS)
161

    
162
cocoa.o: cocoa.m
163

    
164
keymaps.o: keymaps.c keymaps.h
165

    
166
sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
167

    
168
sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
169

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

    
172
acl.o: acl.h acl.c
173

    
174
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
175

    
176
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
177

    
178
vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
179

    
180
vnc-tls.o: vnc-tls.c vnc.h
181

    
182
vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
183

    
184
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
185

    
186
curses.o: curses.c keymaps.h curses_keys.h
187

    
188
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
189

    
190
libqemu_common.a: $(obj-y)
191

    
192
#######################################################################
193
# user-obj-y is code used by qemu userspace emulation
194
user-obj-y = cutils.o cache-utils.o
195

    
196
libqemu_user.a: $(user-obj-y)
197

    
198
######################################################################
199

    
200
qemu-img.o: qemu-img-cmds.h
201

    
202
qemu-img$(EXESUF): qemu-img.o qemu-tool.o tool-osdep.o $(block-obj-y)
203

    
204
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o tool-osdep.o $(block-obj-y)
205

    
206
qemu-io$(EXESUF):  qemu-io.o qemu-tool.o tool-osdep.o cmd.o $(block-obj-y)
207

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

    
211
clean:
212
# avoid old build problems by removing potentially incorrect old files
213
	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
214
	rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
215
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
216
	rm -f qemu-img-cmds.h
217
	$(MAKE) -C tests clean
218
	for d in $(ALL_SUBDIRS) libhw32 libhw64; do \
219
	$(MAKE) -C $$d $@ || exit 1 ; \
220
        done
221

    
222
distclean: clean
223
	rm -f config-host.mak config-host.h config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi
224
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
225
	for d in $(TARGET_DIRS) libhw32 libhw64; do \
226
	rm -rf $$d || exit 1 ; \
227
        done
228

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

    
233
ifdef INSTALL_BLOBS
234
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
235
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
236
pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
237
bamboo.dtb petalogix-s3adsp1800.dtb \
238
multiboot.bin
239
else
240
BLOBS=
241
endif
242

    
243
install-doc: $(DOCS)
244
	$(INSTALL_DIR) "$(DESTDIR)$(docdir)"
245
	$(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
246
ifndef CONFIG_WIN32
247
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
248
	$(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
249
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
250
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
251
endif
252

    
253
install: all $(if $(BUILD_DOCS),install-doc)
254
	$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
255
ifneq ($(TOOLS),)
256
	$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
257
endif
258
ifneq ($(BLOBS),)
259
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)"
260
	set -e; for x in $(BLOBS); do \
261
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
262
	done
263
endif
264
	$(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
265
	set -e; for x in $(KEYMAPS); do \
266
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
267
	done
268
	for d in $(TARGET_DIRS); do \
269
	$(MAKE) -C $$d $@ || exit 1 ; \
270
        done
271

    
272
# various test targets
273
test speed: all
274
	$(MAKE) -C tests $@
275

    
276
TAGS:
277
	etags *.[ch] tests/*.[ch] block/*.[ch] hw/*.[ch]
278

    
279
cscope:
280
	rm -f ./cscope.*
281
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
282
	cscope -b
283

    
284
# documentation
285
%.html: %.texi
286
	$(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
287

    
288
%.info: %.texi
289
	$(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
290

    
291
%.dvi: %.texi
292
	$(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
293

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

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

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

    
303
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
304
	$(call quiet-command, \
305
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
306
	  pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
307
	  "  GEN   $@")
308

    
309
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
310
	$(call quiet-command, \
311
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
312
	  pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
313
	  "  GEN   $@")
314

    
315
qemu-nbd.8: qemu-nbd.texi
316
	$(call quiet-command, \
317
	  perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
318
	  pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
319
	  "  GEN   $@")
320

    
321
info: qemu-doc.info qemu-tech.info
322

    
323
dvi: qemu-doc.dvi qemu-tech.dvi
324

    
325
html: qemu-doc.html qemu-tech.html
326

    
327
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
328

    
329
VERSION ?= $(shell cat VERSION)
330
FILE = qemu-$(VERSION)
331

    
332
# tar release (use 'make -k tar' on a checkouted tree)
333
tar:
334
	rm -rf /tmp/$(FILE)
335
	cp -r . /tmp/$(FILE)
336
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
337
	rm -rf /tmp/$(FILE)
338

    
339
# generate a binary distribution
340
tarbin:
341
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
342
	$(bindir)/qemu \
343
	$(bindir)/qemu-system-x86_64 \
344
	$(bindir)/qemu-system-arm \
345
	$(bindir)/qemu-system-cris \
346
	$(bindir)/qemu-system-m68k \
347
	$(bindir)/qemu-system-mips \
348
	$(bindir)/qemu-system-mipsel \
349
	$(bindir)/qemu-system-mips64 \
350
	$(bindir)/qemu-system-mips64el \
351
	$(bindir)/qemu-system-ppc \
352
	$(bindir)/qemu-system-ppcemb \
353
	$(bindir)/qemu-system-ppc64 \
354
	$(bindir)/qemu-system-sh4 \
355
	$(bindir)/qemu-system-sh4eb \
356
	$(bindir)/qemu-system-sparc \
357
	$(bindir)/qemu-i386 \
358
	$(bindir)/qemu-x86_64 \
359
	$(bindir)/qemu-alpha \
360
	$(bindir)/qemu-arm \
361
	$(bindir)/qemu-armeb \
362
	$(bindir)/qemu-cris \
363
	$(bindir)/qemu-m68k \
364
	$(bindir)/qemu-mips \
365
	$(bindir)/qemu-mipsel \
366
	$(bindir)/qemu-ppc \
367
	$(bindir)/qemu-ppc64 \
368
	$(bindir)/qemu-ppc64abi32 \
369
	$(bindir)/qemu-sh4 \
370
	$(bindir)/qemu-sh4eb \
371
	$(bindir)/qemu-sparc \
372
	$(bindir)/qemu-sparc64 \
373
	$(bindir)/qemu-sparc32plus \
374
	$(bindir)/qemu-img \
375
	$(bindir)/qemu-nbd \
376
	$(datadir)/bios.bin \
377
	$(datadir)/vgabios.bin \
378
	$(datadir)/vgabios-cirrus.bin \
379
	$(datadir)/ppc_rom.bin \
380
	$(datadir)/video.x \
381
	$(datadir)/openbios-sparc32 \
382
	$(datadir)/openbios-sparc64 \
383
	$(datadir)/openbios-ppc \
384
	$(datadir)/pxe-ne2k_pci.bin \
385
	$(datadir)/pxe-rtl8139.bin \
386
	$(datadir)/pxe-pcnet.bin \
387
	$(datadir)/pxe-e1000.bin \
388
	$(docdir)/qemu-doc.html \
389
	$(docdir)/qemu-tech.html \
390
	$(mandir)/man1/qemu.1 \
391
	$(mandir)/man1/qemu-img.1 \
392
	$(mandir)/man8/qemu-nbd.8
393

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