Statistics
| Branch: | Revision:

root / Makefile @ cd01b4a3

History | View | Annotate | Download (9.3 kB)

1
# Makefile for QEMU.
2

    
3
include config-host.mak
4

    
5
.PHONY: all clean distclean dvi info install install-doc tar tarbin \
6
	speed test html dvi info
7

    
8
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9

    
10
CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11
LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
12

    
13
CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
14
CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
15
LIBS=
16
ifdef CONFIG_STATIC
17
LDFLAGS += -static
18
endif
19
ifdef BUILD_DOCS
20
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
21
else
22
DOCS=
23
endif
24

    
25
LIBS+=$(AIOLIBS)
26

    
27
ifdef CONFIG_SOLARIS
28
LIBS+=-lsocket -lnsl -lresolv
29
endif
30

    
31
all: $(TOOLS) $(DOCS) recurse-all 
32

    
33
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
34

    
35
subdir-%: dyngen$(EXESUF)
36
	$(MAKE) -C $(subst subdir-,,$@) all
37

    
38
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
39
$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
40

    
41
recurse-all: $(SUBDIR_RULES)
42

    
43
#######################################################################
44
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
45

    
46
BLOCK_OBJS=cutils.o qemu-malloc.o
47
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
48
BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
49
BLOCK_OBJS+=block-qcow2.o block-parallels.o
50
ifndef CONFIG_WIN32
51
BLOCK_OBJS+=block-nbd.o
52
endif
53

    
54
######################################################################
55
# libqemu_common.a: Target independent part of system emulation. The
56
# long term path is to suppress *all* target specific code in case of
57
# system emulation, i.e. a single QEMU executable should support all
58
# CPUs and machines.
59

    
60
OBJS=$(BLOCK_OBJS)
61
OBJS+=readline.o console.o
62
OBJS+=block.o
63

    
64
ifndef CONFIG_WIN32
65
OBJS+=nbd.o
66
endif
67

    
68
OBJS+=irq.o
69
OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
70
OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
71
OBJS+=tmp105.o lm832x.o
72
OBJS+=scsi-disk.o cdrom.o
73
OBJS+=scsi-generic.o
74
OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o
75
OBJS+=usb-serial.o usb-net.o
76
OBJS+=sd.o ssi-sd.o
77

    
78
ifdef CONFIG_BRLAPI
79
OBJS+= baum.o
80
LIBS+=-lbrlapi
81
endif
82

    
83
ifdef CONFIG_WIN32
84
OBJS+=tap-win32.o
85
endif
86

    
87
AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
88
ifdef CONFIG_SDL
89
AUDIO_OBJS += sdlaudio.o
90
endif
91
ifdef CONFIG_OSS
92
AUDIO_OBJS += ossaudio.o
93
endif
94
ifdef CONFIG_COREAUDIO
95
AUDIO_OBJS += coreaudio.o
96
AUDIO_PT = yes
97
endif
98
ifdef CONFIG_ALSA
99
AUDIO_OBJS += alsaaudio.o
100
endif
101
ifdef CONFIG_DSOUND
102
AUDIO_OBJS += dsoundaudio.o
103
endif
104
ifdef CONFIG_FMOD
105
AUDIO_OBJS += fmodaudio.o
106
audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
107
endif
108
ifdef CONFIG_ESD
109
AUDIO_PT = yes
110
AUDIO_PT_INT = yes
111
AUDIO_OBJS += esdaudio.o
112
endif
113
ifdef CONFIG_PA
114
AUDIO_PT = yes
115
AUDIO_PT_INT = yes
116
AUDIO_OBJS += paaudio.o
117
endif
118
ifdef AUDIO_PT
119
LDFLAGS += -pthread
120
endif
121
ifdef AUDIO_PT_INT
122
AUDIO_OBJS += audio_pt_int.o
123
endif
124
AUDIO_OBJS+= wavcapture.o
125
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
126

    
127
ifdef CONFIG_SDL
128
OBJS+=sdl.o x_keymap.o
129
endif
130
ifdef CONFIG_CURSES
131
OBJS+=curses.o
132
endif
133
OBJS+=vnc.o d3des.o
134

    
135
ifdef CONFIG_COCOA
136
OBJS+=cocoa.o
137
endif
138

    
139
ifdef CONFIG_SLIRP
140
CPPFLAGS+=-I$(SRC_PATH)/slirp
141
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
142
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
143
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
144
OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
145
endif
146

    
147
LIBS+=$(VDE_LIBS)
148

    
149
cocoa.o: cocoa.m
150
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
151

    
152
sdl.o: sdl.c keymaps.c sdl_keysym.h
153
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
154

    
155
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
156
	$(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
157

    
158
curses.o: curses.c keymaps.c curses_keys.h
159
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
160

    
161
audio/sdlaudio.o: audio/sdlaudio.c
162
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
163

    
164
libqemu_common.a: $(OBJS)
165
	rm -f $@ 
166
	$(AR) rcs $@ $(OBJS)
167

    
168
#######################################################################
169
# USER_OBJS is code used by qemu userspace emulation
170
USER_OBJS=cutils.o
171

    
172
libqemu_user.a: $(USER_OBJS)
173
	rm -f $@ 
174
	$(AR) rcs $@ $(USER_OBJS)
175

    
176
QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
177
ifdef CONFIG_WIN32
178
QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
179
else
180
QEMU_IMG_BLOCK_OBJS += nbd.o qemu-img-block-raw-posix.o
181
endif
182

    
183
######################################################################
184

    
185
qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
186
	$(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
187

    
188
qemu-img-%.o: %.c
189
	$(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
190

    
191
%.o: %.c
192
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
193

    
194
qemu-nbd-%.o: %.c
195
	$(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_NBD -c -o $@ $<
196

    
197
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-nbd-nbd.o qemu-img-block.o \
198
		    osdep.o qemu-nbd-block-raw-posix.o $(BLOCK_OBJS)
199
	$(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
200

    
201
# dyngen host tool
202
dyngen$(EXESUF): dyngen.c
203
	$(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
204

    
205
clean:
206
# avoid old build problems by removing potentially incorrect old files
207
	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
208
	rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
209
	rm -rf dyngen.dSYM
210
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
211
	$(MAKE) -C tests clean
212
	for d in $(TARGET_DIRS); do \
213
	$(MAKE) -C $$d $@ || exit 1 ; \
214
        done
215

    
216
distclean: clean
217
	rm -f config-host.mak config-host.h $(DOCS)
218
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
219
	for d in $(TARGET_DIRS); do \
220
	rm -rf $$d || exit 1 ; \
221
        done
222

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

    
227
install-doc: $(DOCS)
228
	mkdir -p "$(DESTDIR)$(docdir)"
229
	$(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
230
ifndef CONFIG_WIN32
231
	mkdir -p "$(DESTDIR)$(mandir)/man1"
232
	$(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
233
	mkdir -p "$(DESTDIR)$(mandir)/man8"
234
	$(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
235
endif
236

    
237
install: all $(if $(BUILD_DOCS),install-doc)
238
	mkdir -p "$(DESTDIR)$(bindir)"
239
ifneq ($(TOOLS),)
240
	$(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
241
endif
242
	mkdir -p "$(DESTDIR)$(datadir)"
243
	set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
244
		video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
245
		pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin; do \
246
		$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
247
	done
248
ifndef CONFIG_WIN32
249
	mkdir -p "$(DESTDIR)$(datadir)/keymaps"
250
	set -e; for x in $(KEYMAPS); do \
251
		$(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
252
	done
253
endif
254
	for d in $(TARGET_DIRS); do \
255
	$(MAKE) -C $$d $@ || exit 1 ; \
256
        done
257

    
258
# various test targets
259
test speed: all
260
	$(MAKE) -C tests $@
261

    
262
TAGS:
263
	etags *.[ch] tests/*.[ch]
264

    
265
cscope:
266
	rm -f ./cscope.*
267
	find . -name "*.[ch]" -print > ./cscope.files
268
	cscope -b
269

    
270
# documentation
271
%.html: %.texi
272
	texi2html -monolithic -number $<
273

    
274
%.info: %.texi
275
	makeinfo $< -o $@
276

    
277
%.dvi: %.texi
278
	texi2dvi $<
279

    
280
qemu.1: qemu-doc.texi
281
	$(SRC_PATH)/texi2pod.pl $< qemu.pod
282
	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
283

    
284
qemu-img.1: qemu-img.texi
285
	$(SRC_PATH)/texi2pod.pl $< qemu-img.pod
286
	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
287

    
288
qemu-nbd.8: qemu-nbd.texi
289
	$(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
290
	pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
291

    
292
info: qemu-doc.info qemu-tech.info
293

    
294
dvi: qemu-doc.dvi qemu-tech.dvi
295

    
296
html: qemu-doc.html qemu-tech.html
297

    
298
VERSION ?= $(shell cat VERSION)
299
FILE = qemu-$(VERSION)
300

    
301
# tar release (use 'make -k tar' on a checkouted tree)
302
tar:
303
	rm -rf /tmp/$(FILE)
304
	cp -r . /tmp/$(FILE)
305
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
306
	rm -rf /tmp/$(FILE)
307

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

    
361
# Include automatically generated dependency files
362
-include $(wildcard *.d audio/*.d slirp/*.d)