Blame view

Makefile 9.55 KB
1
2
# Makefile for QEMU.
pbrook authored
3
include config-host.mak
4
include $(SRC_PATH)/rules.mak
bellard authored
5
6
7
.PHONY: all clean cscope distclean dvi html info install install-doc \
	recurse-all speed tar tarbin test
8
pbrook authored
9
10
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
11
12
13
CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
14
malc authored
15
CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
bellard authored
16
CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
bellard authored
17
LIBS=
bellard authored
18
ifdef CONFIG_STATIC
19
LDFLAGS += -static
bellard authored
20
endif
21
ifdef BUILD_DOCS
22
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
23
24
25
else
DOCS=
endif
bellard authored
26
27
LIBS+=$(AIOLIBS)
bellard authored
28
29
30
31
32
ifdef CONFIG_SOLARIS
LIBS+=-lsocket -lnsl -lresolv
endif
33
34
35
36
ifdef CONFIG_WIN32
LIBS+=-lwinmm -lws2_32 -liphlpapi
endif
37
all: $(TOOLS) $(DOCS) recurse-all
pbrook authored
38
39
40
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
41
subdir-%:
42
	$(call quiet-command,$(MAKE) -C $* V="$(V)" TARGET_DIR="$*/" all,)
pbrook authored
43
44
45
46
47
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a

recurse-all: $(SUBDIR_RULES)
bellard authored
48
pbrook authored
49
50
51
#######################################################################
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
52
BLOCK_OBJS=cutils.o qemu-malloc.o
pbrook authored
53
54
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
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
57
58
59
60

ifdef CONFIG_WIN32
BLOCK_OBJS += block-raw-win32.o
else
61
62
63
ifdef CONFIG_AIO
BLOCK_OBJS += posix-aio-compat.o
endif
64
65
66
BLOCK_OBJS += block-raw-posix.o
endif
bellard authored
67
######################################################################
bellard authored
68
# libqemu_common.a: Target independent part of system emulation. The
bellard authored
69
70
71
# long term path is to suppress *all* target specific code in case of
# system emulation, i.e. a single QEMU executable should support all
# CPUs and machines.
72
aliguori authored
73
OBJS=$(BLOCK_OBJS)
pbrook authored
74
OBJS+=readline.o console.o
aliguori authored
75
pbrook authored
76
77
OBJS+=irq.o
OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
78
OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
79
OBJS+=tmp105.o lm832x.o
pbrook authored
80
OBJS+=scsi-disk.o cdrom.o
81
OBJS+=scsi-generic.o
82
OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
83
OBJS+=usb-serial.o usb-net.o
84
OBJS+=sd.o ssi-sd.o
85
OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
86
OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
87
OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
pbrook authored
88
aurel32 authored
89
90
91
92
93
ifdef CONFIG_BRLAPI
OBJS+= baum.o
LIBS+=-lbrlapi
endif
bellard authored
94
95
ifdef CONFIG_WIN32
OBJS+=tap-win32.o
96
97
else
OBJS+=migration-exec.o
bellard authored
98
99
100
101
102
103
104
105
106
107
108
endif

AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
ifdef CONFIG_SDL
AUDIO_OBJS += sdlaudio.o
endif
ifdef CONFIG_OSS
AUDIO_OBJS += ossaudio.o
endif
ifdef CONFIG_COREAUDIO
AUDIO_OBJS += coreaudio.o
109
AUDIO_PT = yes
bellard authored
110
111
112
113
114
115
116
117
118
119
120
endif
ifdef CONFIG_ALSA
AUDIO_OBJS += alsaaudio.o
endif
ifdef CONFIG_DSOUND
AUDIO_OBJS += dsoundaudio.o
endif
ifdef CONFIG_FMOD
AUDIO_OBJS += fmodaudio.o
audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
endif
121
122
123
124
125
ifdef CONFIG_ESD
AUDIO_PT = yes
AUDIO_PT_INT = yes
AUDIO_OBJS += esdaudio.o
endif
malc authored
126
127
128
129
130
ifdef CONFIG_PA
AUDIO_PT = yes
AUDIO_PT_INT = yes
AUDIO_OBJS += paaudio.o
endif
131
132
133
134
135
136
ifdef AUDIO_PT
LDFLAGS += -pthread
endif
ifdef AUDIO_PT_INT
AUDIO_OBJS += audio_pt_int.o
endif
bellard authored
137
138
139
AUDIO_OBJS+= wavcapture.o
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
140
OBJS+=keymaps.o
bellard authored
141
142
143
ifdef CONFIG_SDL
OBJS+=sdl.o x_keymap.o
endif
balrog authored
144
145
146
ifdef CONFIG_CURSES
OBJS+=curses.o
endif
147
OBJS+=vnc.o acl.o d3des.o
148
149
150
ifdef CONFIG_VNC_TLS
OBJS+=vnc-tls.o vnc-auth-vencrypt.o
endif
151
152
153
ifdef CONFIG_VNC_SASL
OBJS+=vnc-auth-sasl.o
endif
bellard authored
154
155
156
157
158
159
160
161
162
163
164
165
166

ifdef CONFIG_COCOA
OBJS+=cocoa.o
endif

ifdef CONFIG_SLIRP
CPPFLAGS+=-I$(SRC_PATH)/slirp
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
endif
167
168
LIBS+=$(VDE_LIBS)
bellard authored
169
170
cocoa.o: cocoa.m
171
172
173
keymaps.o: keymaps.c keymaps.h

sdl.o: sdl.c keymaps.h sdl_keysym.h
174
175

sdl.o audio/sdlaudio.o: CFLAGS += $(SDL_CFLAGS)
bellard authored
176
177
178
acl.o: acl.h acl.c
179
vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
180
181
vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
bellard authored
182
183
vnc.o: CFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
balrog authored
184
185
186
187
188
vnc-tls.o: vnc-tls.c vnc.h

vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
189
190
vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
191
curses.o: curses.c keymaps.h curses_keys.h
192
193
bt-host.o: CFLAGS += $(CONFIG_BLUEZ_CFLAGS)
bellard authored
194
195
196

libqemu_common.a: $(OBJS)
197
198
#######################################################################
# USER_OBJS is code used by qemu userspace emulation
199
USER_OBJS=cutils.o  cache-utils.o
200
201
202

libqemu_user.a: $(USER_OBJS)
bellard authored
203
204
######################################################################
205
qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
bellard authored
206
207
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
208
209

qemu-img$(EXESUF) qemu-nbd$(EXESUF): LIBS += -lz
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 *~ */*~
bellard authored
215
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
bellard authored
216
	$(MAKE) -C tests clean
217
	for d in $(TARGET_DIRS); do \
bellard authored
218
	$(MAKE) -C $$d $@ || exit 1 ; \
219
        done
220
bellard authored
221
distclean: clean
222
	rm -f config-host.mak config-host.h $(DOCS)
223
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
bellard authored
224
	for d in $(TARGET_DIRS); do \
bellard authored
225
	rm -rf $$d || exit 1 ; \
bellard authored
226
        done
bellard authored
227
bellard authored
228
229
230
231
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
232
233
ifdef INSTALL_BLOBS
BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
234
235
236
video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
bamboo.dtb
237
238
239
240
else
BLOBS=
endif
241
242
243
244
245
install-doc: $(DOCS)
	mkdir -p "$(DESTDIR)$(docdir)"
	$(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
ifndef CONFIG_WIN32
	mkdir -p "$(DESTDIR)$(mandir)/man1"
246
	$(INSTALL) -m 644 qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
247
	mkdir -p "$(DESTDIR)$(mandir)/man8"
248
	$(INSTALL) -m 644 qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
249
250
251
endif

install: all $(if $(BUILD_DOCS),install-doc)
pbrook authored
252
	mkdir -p "$(DESTDIR)$(bindir)"
253
ifneq ($(TOOLS),)
254
	$(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
255
endif
256
ifneq ($(BLOBS),)
pbrook authored
257
	mkdir -p "$(DESTDIR)$(datadir)"
258
	set -e; for x in $(BLOBS); do \
259
		$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
pbrook authored
260
	done
261
endif
bellard authored
262
ifndef CONFIG_WIN32
pbrook authored
263
	mkdir -p "$(DESTDIR)$(datadir)/keymaps"
264
	set -e; for x in $(KEYMAPS); do \
265
		$(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
pbrook authored
266
	done
bellard authored
267
endif
268
	for d in $(TARGET_DIRS); do \
bellard authored
269
	$(MAKE) -C $$d $@ || exit 1 ; \
270
        done
bellard authored
271
bellard authored
272
# various test targets
273
test speed: all
bellard authored
274
	$(MAKE) -C tests $@
275
276
TAGS:
bellard authored
277
	etags *.[ch] tests/*.[ch]
278
bellard authored
279
280
cscope:
	rm -f ./cscope.*
281
	find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
bellard authored
282
283
	cscope -b
bellard authored
284
# documentation
bellard authored
285
%.html: %.texi
286
	texi2html -I=. -monolithic -number $<
bellard authored
287
bellard authored
288
%.info: %.texi
289
	makeinfo -I . $< -o $@
bellard authored
290
291

%.dvi: %.texi
292
293
294
	texi2dvi -I . $<

qemu-options.texi: $(SRC_PATH)/qemu-options.hx
295
	sh $(SRC_PATH)/hxtool -t < $< > $@
bellard authored
296
297
qemu.1: qemu-doc.texi
298
	perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod
299
300
	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
301
qemu-img.1: qemu-img.texi
302
	perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
303
304
	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
305
qemu-nbd.8: qemu-nbd.texi
306
	perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
307
308
	pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
309
310
311
312
313
314
info: qemu-doc.info qemu-tech.info

dvi: qemu-doc.dvi qemu-tech.dvi

html: qemu-doc.html qemu-tech.html
315
qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi
316
317
318
VERSION ?= $(shell cat VERSION)
FILE = qemu-$(VERSION)
bellard authored
319
320
# tar release (use 'make -k tar' on a checkouted tree)
bellard authored
321
322
tar:
	rm -rf /tmp/$(FILE)
323
	cp -r . /tmp/$(FILE)
324
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
bellard authored
325
326
	rm -rf /tmp/$(FILE)
bellard authored
327
# generate a binary distribution
328
tarbin:
329
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
bellard authored
330
331
	$(bindir)/qemu \
	$(bindir)/qemu-system-x86_64 \
332
333
334
	$(bindir)/qemu-system-arm \
	$(bindir)/qemu-system-cris \
	$(bindir)/qemu-system-m68k \
bellard authored
335
	$(bindir)/qemu-system-mips \
336
	$(bindir)/qemu-system-mipsel \
ths authored
337
338
	$(bindir)/qemu-system-mips64 \
	$(bindir)/qemu-system-mips64el \
339
340
341
	$(bindir)/qemu-system-ppc \
	$(bindir)/qemu-system-ppcemb \
	$(bindir)/qemu-system-ppc64 \
ths authored
342
	$(bindir)/qemu-system-sh4 \
343
	$(bindir)/qemu-system-sh4eb \
344
	$(bindir)/qemu-system-sparc \
bellard authored
345
	$(bindir)/qemu-i386 \
bellard authored
346
	$(bindir)/qemu-x86_64 \
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
	$(bindir)/qemu-alpha \
	$(bindir)/qemu-arm \
	$(bindir)/qemu-armeb \
	$(bindir)/qemu-cris \
	$(bindir)/qemu-m68k \
	$(bindir)/qemu-mips \
	$(bindir)/qemu-mipsel \
	$(bindir)/qemu-ppc \
	$(bindir)/qemu-ppc64 \
	$(bindir)/qemu-ppc64abi32 \
	$(bindir)/qemu-sh4 \
	$(bindir)/qemu-sh4eb \
	$(bindir)/qemu-sparc \
	$(bindir)/qemu-sparc64 \
	$(bindir)/qemu-sparc32plus \
	$(bindir)/qemu-img \
	$(bindir)/qemu-nbd \
bellard authored
364
365
	$(datadir)/bios.bin \
	$(datadir)/vgabios.bin \
366
	$(datadir)/vgabios-cirrus.bin \
bellard authored
367
	$(datadir)/ppc_rom.bin \
bellard authored
368
	$(datadir)/video.x \
369
	$(datadir)/openbios-sparc32 \
370
	$(datadir)/openbios-sparc64 \
371
	$(datadir)/openbios-ppc \
372
	$(datadir)/pxe-ne2k_pci.bin \
bellard authored
373
	$(datadir)/pxe-rtl8139.bin \
374
	$(datadir)/pxe-pcnet.bin \
375
	$(datadir)/pxe-e1000.bin \
bellard authored
376
377
	$(docdir)/qemu-doc.html \
	$(docdir)/qemu-tech.html \
378
379
	$(mandir)/man1/qemu.1 \
	$(mandir)/man1/qemu-img.1 \
380
	$(mandir)/man8/qemu-nbd.8
381
bellard authored
382
383
# Include automatically generated dependency files
-include $(wildcard *.d audio/*.d slirp/*.d)