Statistics
| Branch: | Revision:

root / Makefile @ 75818250

History | View | Annotate | Download (9.1 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
all: $(TOOLS) $(DOCS) recurse-all 
28

    
29
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
30

    
31
subdir-%: dyngen$(EXESUF)
32
	$(MAKE) -C $(subst subdir-,,$@) all
33

    
34
$(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
35
$(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
36

    
37
recurse-all: $(SUBDIR_RULES)
38

    
39
#######################################################################
40
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
41

    
42
BLOCK_OBJS=cutils.o qemu-malloc.o
43
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
44
BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
45
BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
46

    
47
######################################################################
48
# libqemu_common.a: Target independent part of system emulation. The
49
# long term path is to suppress *all* target specific code in case of
50
# system emulation, i.e. a single QEMU executable should support all
51
# CPUs and machines.
52

    
53
OBJS=nbd.o $(BLOCK_OBJS)
54
OBJS+=readline.o console.o
55
OBJS+=block.o
56

    
57
OBJS+=irq.o
58
OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
59
OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
60
OBJS+=tmp105.o lm832x.o
61
OBJS+=scsi-disk.o cdrom.o
62
OBJS+=scsi-generic.o
63
OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
64
OBJS+=sd.o ssi-sd.o
65

    
66
ifdef CONFIG_BRLAPI
67
OBJS+= baum.o
68
LIBS+=-lbrlapi
69
endif
70

    
71
ifdef CONFIG_WIN32
72
OBJS+=tap-win32.o
73
endif
74

    
75
AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
76
ifdef CONFIG_SDL
77
AUDIO_OBJS += sdlaudio.o
78
endif
79
ifdef CONFIG_OSS
80
AUDIO_OBJS += ossaudio.o
81
endif
82
ifdef CONFIG_COREAUDIO
83
AUDIO_OBJS += coreaudio.o
84
AUDIO_PT = yes
85
endif
86
ifdef CONFIG_ALSA
87
AUDIO_OBJS += alsaaudio.o
88
endif
89
ifdef CONFIG_DSOUND
90
AUDIO_OBJS += dsoundaudio.o
91
endif
92
ifdef CONFIG_FMOD
93
AUDIO_OBJS += fmodaudio.o
94
audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
95
endif
96
ifdef CONFIG_ESD
97
AUDIO_PT = yes
98
AUDIO_PT_INT = yes
99
AUDIO_OBJS += esdaudio.o
100
endif
101
ifdef CONFIG_PA
102
AUDIO_PT = yes
103
AUDIO_PT_INT = yes
104
AUDIO_OBJS += paaudio.o
105
endif
106
ifdef AUDIO_PT
107
LDFLAGS += -pthread
108
endif
109
ifdef AUDIO_PT_INT
110
AUDIO_OBJS += audio_pt_int.o
111
endif
112
AUDIO_OBJS+= wavcapture.o
113
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
114

    
115
ifdef CONFIG_SDL
116
OBJS+=sdl.o x_keymap.o
117
endif
118
ifdef CONFIG_CURSES
119
OBJS+=curses.o
120
endif
121
OBJS+=vnc.o d3des.o
122

    
123
ifdef CONFIG_COCOA
124
OBJS+=cocoa.o
125
endif
126

    
127
ifdef CONFIG_SLIRP
128
CPPFLAGS+=-I$(SRC_PATH)/slirp
129
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
130
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
131
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
132
OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
133
endif
134

    
135
cocoa.o: cocoa.m
136
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
137

    
138
sdl.o: sdl.c keymaps.c sdl_keysym.h
139
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
140

    
141
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
142
	$(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
143

    
144
curses.o: curses.c keymaps.c curses_keys.h
145
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
146

    
147
audio/sdlaudio.o: audio/sdlaudio.c
148
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
149

    
150
libqemu_common.a: $(OBJS)
151
	rm -f $@ 
152
	$(AR) rcs $@ $(OBJS)
153

    
154
#######################################################################
155
# USER_OBJS is code used by qemu userspace emulation
156
USER_OBJS=cutils.o
157

    
158
libqemu_user.a: $(USER_OBJS)
159
	rm -f $@ 
160
	$(AR) rcs $@ $(USER_OBJS)
161

    
162
QEMU_IMG_BLOCK_OBJS = nbd.o $(BLOCK_OBJS)
163
ifdef CONFIG_WIN32
164
QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
165
else
166
QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
167
endif
168

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

    
171
qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
172
	$(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
173

    
174
qemu-img-%.o: %.c
175
	$(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
176

    
177
%.o: %.c
178
	$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
179

    
180
qemu-nbd-%.o: %.c
181
	$(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_NBD -c -o $@ $<
182

    
183
qemu-nbd$(EXESUF):  qemu-nbd.o qemu-nbd-nbd.o qemu-img-block.o \
184
		    osdep.o qemu-nbd-block-raw-posix.o $(BLOCK_OBJS)
185
	$(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
186

    
187
# dyngen host tool
188
dyngen$(EXESUF): dyngen.c
189
	$(HOST_CC) $(CFLAGS) $(CPPFLAGS) -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) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
195
	rm -rf dyngen.dSYM
196
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
197
	$(MAKE) -C tests clean
198
	for d in $(TARGET_DIRS); do \
199
	$(MAKE) -C $$d $@ || exit 1 ; \
200
        done
201

    
202
distclean: clean
203
	rm -f config-host.mak config-host.h $(DOCS)
204
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
205
	for d in $(TARGET_DIRS); 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
install-doc: $(DOCS)
214
	mkdir -p "$(DESTDIR)$(docdir)"
215
	$(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
216
ifndef CONFIG_WIN32
217
	mkdir -p "$(DESTDIR)$(mandir)/man1"
218
	$(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
219
	mkdir -p "$(DESTDIR)$(mandir)/man8"
220
	$(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
221
endif
222

    
223
install: all $(if $(BUILD_DOCS),install-doc)
224
	mkdir -p "$(DESTDIR)$(bindir)"
225
ifneq ($(TOOLS),)
226
	$(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
227
endif
228
	mkdir -p "$(DESTDIR)$(datadir)"
229
	set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
230
		video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
231
		pxe-rtl8139.bin pxe-pcnet.bin; do \
232
		$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
233
	done
234
ifndef CONFIG_WIN32
235
	mkdir -p "$(DESTDIR)$(datadir)/keymaps"
236
	set -e; for x in $(KEYMAPS); do \
237
		$(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
238
	done
239
endif
240
	for d in $(TARGET_DIRS); do \
241
	$(MAKE) -C $$d $@ || exit 1 ; \
242
        done
243

    
244
# various test targets
245
test speed: all
246
	$(MAKE) -C tests $@
247

    
248
TAGS:
249
	etags *.[ch] tests/*.[ch]
250

    
251
cscope:
252
	rm -f ./cscope.*
253
	find . -name "*.[ch]" -print > ./cscope.files
254
	cscope -b
255

    
256
# documentation
257
%.html: %.texi
258
	texi2html -monolithic -number $<
259

    
260
%.info: %.texi
261
	makeinfo $< -o $@
262

    
263
%.dvi: %.texi
264
	texi2dvi $<
265

    
266
qemu.1: qemu-doc.texi
267
	$(SRC_PATH)/texi2pod.pl $< qemu.pod
268
	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
269

    
270
qemu-img.1: qemu-img.texi
271
	$(SRC_PATH)/texi2pod.pl $< qemu-img.pod
272
	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
273

    
274
qemu-nbd.8: qemu-nbd.texi
275
	$(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
276
	pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
277

    
278
info: qemu-doc.info qemu-tech.info
279

    
280
dvi: qemu-doc.dvi qemu-tech.dvi
281

    
282
html: qemu-doc.html qemu-tech.html
283

    
284
VERSION ?= $(shell cat VERSION)
285
FILE = qemu-$(VERSION)
286

    
287
# tar release (use 'make -k tar' on a checkouted tree)
288
tar:
289
	rm -rf /tmp/$(FILE)
290
	cp -r . /tmp/$(FILE)
291
	cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
292
	rm -rf /tmp/$(FILE)
293

    
294
# generate a binary distribution
295
tarbin:
296
	cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
297
	$(bindir)/qemu \
298
	$(bindir)/qemu-system-ppc \
299
	$(bindir)/qemu-system-ppc64 \
300
	$(bindir)/qemu-system-ppcemb \
301
	$(bindir)/qemu-system-sparc \
302
	$(bindir)/qemu-system-x86_64 \
303
	$(bindir)/qemu-system-mips \
304
	$(bindir)/qemu-system-mipsel \
305
	$(bindir)/qemu-system-mips64 \
306
	$(bindir)/qemu-system-mips64el \
307
	$(bindir)/qemu-system-arm \
308
	$(bindir)/qemu-system-m68k \
309
	$(bindir)/qemu-system-sh4 \
310
	$(bindir)/qemu-system-sh4eb \
311
	$(bindir)/qemu-system-cris \
312
	$(bindir)/qemu-i386 \
313
	$(bindir)/qemu-x86_64 \
314
        $(bindir)/qemu-arm \
315
        $(bindir)/qemu-armeb \
316
        $(bindir)/qemu-sparc \
317
        $(bindir)/qemu-sparc32plus \
318
        $(bindir)/qemu-sparc64 \
319
        $(bindir)/qemu-ppc \
320
        $(bindir)/qemu-ppc64 \
321
        $(bindir)/qemu-ppc64abi32 \
322
        $(bindir)/qemu-mips \
323
        $(bindir)/qemu-mipsel \
324
        $(bindir)/qemu-alpha \
325
        $(bindir)/qemu-m68k \
326
        $(bindir)/qemu-sh4 \
327
        $(bindir)/qemu-sh4eb \
328
        $(bindir)/qemu-cris \
329
        $(bindir)/qemu-img \
330
        $(bindir)/qemu-nbd \
331
	$(datadir)/bios.bin \
332
	$(datadir)/vgabios.bin \
333
	$(datadir)/vgabios-cirrus.bin \
334
	$(datadir)/ppc_rom.bin \
335
	$(datadir)/video.x \
336
	$(datadir)/openbios-sparc32 \
337
	$(datadir)/openbios-sparc64 \
338
        $(datadir)/pxe-ne2k_pci.bin \
339
	$(datadir)/pxe-rtl8139.bin \
340
        $(datadir)/pxe-pcnet.bin \
341
	$(docdir)/qemu-doc.html \
342
	$(docdir)/qemu-tech.html \
343
	$(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
344
	$(mandir)/man8/qemu-nbd.8
345

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