Statistics
| Branch: | Revision:

root / Makefile @ 8c462f8f

History | View | Annotate | Download (7.5 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
BASE_CFLAGS=
11
BASE_LDFLAGS=
12

    
13
BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
14
BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
15

    
16
CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
17
CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
18
LIBS=
19
ifdef CONFIG_STATIC
20
BASE_LDFLAGS += -static
21
endif
22
ifdef BUILD_DOCS
23
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
24
else
25
DOCS=
26
endif
27

    
28
LIBS+=$(AIOLIBS)
29

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

    
32
subdir-%: dyngen$(EXESUF) libqemu_common.a
33
	$(MAKE) -C $(subst subdir-,,$@) all
34

    
35
recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
36

    
37
#######################################################################
38
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
39

    
40
BLOCK_OBJS=cutils.o
41
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
42
BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
43
BLOCK_OBJS+=block-qcow2.o block-parallels.o
44

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

    
51
OBJS=$(BLOCK_OBJS)
52
OBJS+=readline.o console.o
53
OBJS+=block.o
54

    
55
OBJS+=irq.o
56
OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
57
OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o
58
OBJS+=scsi-disk.o cdrom.o
59
OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o
60

    
61
ifdef CONFIG_WIN32
62
OBJS+=tap-win32.o
63
endif
64

    
65
AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
66
ifdef CONFIG_SDL
67
AUDIO_OBJS += sdlaudio.o
68
endif
69
ifdef CONFIG_OSS
70
AUDIO_OBJS += ossaudio.o
71
endif
72
ifdef CONFIG_COREAUDIO
73
AUDIO_OBJS += coreaudio.o
74
endif
75
ifdef CONFIG_ALSA
76
AUDIO_OBJS += alsaaudio.o
77
endif
78
ifdef CONFIG_DSOUND
79
AUDIO_OBJS += dsoundaudio.o
80
endif
81
ifdef CONFIG_FMOD
82
AUDIO_OBJS += fmodaudio.o
83
audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
84
endif
85
AUDIO_OBJS+= wavcapture.o
86
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
87

    
88
ifdef CONFIG_SDL
89
OBJS+=sdl.o x_keymap.o
90
endif
91
OBJS+=vnc.o d3des.o
92

    
93
ifdef CONFIG_COCOA
94
OBJS+=cocoa.o
95
endif
96

    
97
ifdef CONFIG_SLIRP
98
CPPFLAGS+=-I$(SRC_PATH)/slirp
99
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
100
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
101
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
102
OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
103
endif
104

    
105
cocoa.o: cocoa.m
106
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
107

    
108
sdl.o: sdl.c keymaps.c sdl_keysym.h
109
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
110

    
111
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
112
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
113

    
114
audio/sdlaudio.o: audio/sdlaudio.c
115
	$(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
116

    
117
libqemu_common.a: $(OBJS)
118
	rm -f $@ 
119
	$(AR) rcs $@ $(OBJS)
120

    
121
######################################################################
122

    
123
qemu-img$(EXESUF): qemu-img.o qemu-img-block.o qemu-img-block-raw.o $(BLOCK_OBJS)
124
	$(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS)
125

    
126
qemu-img-%.o: %.c
127
	$(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG $(BASE_CFLAGS) -c -o $@ $<
128

    
129
%.o: %.c
130
	$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
131

    
132
# dyngen host tool
133
dyngen$(EXESUF): dyngen.c
134
	$(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^
135

    
136
clean:
137
# avoid old build problems by removing potentially incorrect old files
138
	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
139
	rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
140
	rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
141
	$(MAKE) -C tests clean
142
	for d in $(TARGET_DIRS); do \
143
	$(MAKE) -C $$d $@ || exit 1 ; \
144
        done
145

    
146
distclean: clean
147
	rm -f config-host.mak config-host.h $(DOCS)
148
	rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
149
	for d in $(TARGET_DIRS); do \
150
	rm -rf $$d || exit 1 ; \
151
        done
152

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

    
157
install-doc: $(DOCS)
158
	mkdir -p "$(DESTDIR)$(docdir)"
159
	$(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
160
ifndef CONFIG_WIN32
161
	mkdir -p "$(DESTDIR)$(mandir)/man1"
162
	$(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
163
endif
164

    
165
install: all $(if $(BUILD_DOCS),install-doc)
166
	mkdir -p "$(DESTDIR)$(bindir)"
167
ifneq ($(TOOLS),)
168
	$(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
169
endif
170
	mkdir -p "$(DESTDIR)$(datadir)"
171
	for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
172
		video.x openbios-sparc32 pxe-ne2k_pci.bin \
173
		pxe-rtl8139.bin pxe-pcnet.bin; do \
174
		$(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
175
	done
176
ifndef CONFIG_WIN32
177
	mkdir -p "$(DESTDIR)$(datadir)/keymaps"
178
	for x in $(KEYMAPS); do \
179
		$(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
180
	done
181
endif
182
	for d in $(TARGET_DIRS); do \
183
	$(MAKE) -C $$d $@ || exit 1 ; \
184
        done
185

    
186
# various test targets
187
test speed: all
188
	$(MAKE) -C tests $@
189

    
190
TAGS:
191
	etags *.[ch] tests/*.[ch]
192

    
193
cscope:
194
	rm -f ./cscope.*
195
	find . -name "*.[ch]" -print > ./cscope.files
196
	cscope -b
197

    
198
# documentation
199
%.html: %.texi
200
	texi2html -monolithic -number $<
201

    
202
%.info: %.texi
203
	makeinfo $< -o $@
204

    
205
%.dvi: %.texi
206
	texi2dvi $<
207

    
208
qemu.1: qemu-doc.texi
209
	$(SRC_PATH)/texi2pod.pl $< qemu.pod
210
	pod2man --section=1 --center=" " --release=" " qemu.pod > $@
211

    
212
qemu-img.1: qemu-img.texi
213
	$(SRC_PATH)/texi2pod.pl $< qemu-img.pod
214
	pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
215

    
216
info: qemu-doc.info qemu-tech.info
217

    
218
dvi: qemu-doc.dvi qemu-tech.dvi
219

    
220
html: qemu-doc.html qemu-tech.html
221

    
222
VERSION ?= $(shell cat VERSION)
223
FILE = qemu-$(VERSION)
224

    
225
# tar release (use 'make -k tar' on a checkouted tree)
226
tar:
227
	rm -rf /tmp/$(FILE)
228
	cp -r . /tmp/$(FILE)
229
	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
230
	rm -rf /tmp/$(FILE)
231

    
232
# generate a binary distribution
233
tarbin:
234
	( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
235
	$(bindir)/qemu \
236
	$(bindir)/qemu-system-ppc \
237
	$(bindir)/qemu-system-ppc64 \
238
	$(bindir)/qemu-system-ppcemb \
239
	$(bindir)/qemu-system-sparc \
240
	$(bindir)/qemu-system-x86_64 \
241
	$(bindir)/qemu-system-mips \
242
	$(bindir)/qemu-system-mipsel \
243
	$(bindir)/qemu-system-mips64 \
244
	$(bindir)/qemu-system-mips64el \
245
	$(bindir)/qemu-system-arm \
246
	$(bindir)/qemu-system-m68k \
247
	$(bindir)/qemu-system-sh4 \
248
	$(bindir)/qemu-i386 \
249
        $(bindir)/qemu-arm \
250
        $(bindir)/qemu-armeb \
251
        $(bindir)/qemu-sparc \
252
        $(bindir)/qemu-ppc \
253
        $(bindir)/qemu-ppc64 \
254
        $(bindir)/qemu-mips \
255
        $(bindir)/qemu-mipsel \
256
        $(bindir)/qemu-mipsn32 \
257
        $(bindir)/qemu-mipsn32el \
258
        $(bindir)/qemu-mips64 \
259
        $(bindir)/qemu-mips64el \
260
        $(bindir)/qemu-alpha \
261
        $(bindir)/qemu-m68k \
262
        $(bindir)/qemu-sh4 \
263
        $(bindir)/qemu-img \
264
	$(datadir)/bios.bin \
265
	$(datadir)/vgabios.bin \
266
	$(datadir)/vgabios-cirrus.bin \
267
	$(datadir)/ppc_rom.bin \
268
	$(datadir)/video.x \
269
	$(datadir)/openbios-sparc32 \
270
        $(datadir)/pxe-ne2k_pci.bin \
271
	$(datadir)/pxe-rtl8139.bin \
272
        $(datadir)/pxe-pcnet.bin \
273
	$(docdir)/qemu-doc.html \
274
	$(docdir)/qemu-tech.html \
275
	$(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
276

    
277
ifneq ($(wildcard .depend),)
278
include .depend
279
endif
280

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