]>
Commit | Line | Data |
---|---|---|
0cb3fb1e PB |
1 | # Makefile for QEMU. |
2 | ||
ad064840 | 3 | include config-host.mak |
766a487a | 4 | |
0cb3fb1e | 5 | .PHONY: all clean distclean dvi info install install-doc tar tarbin \ |
9b0b8203 | 6 | speed test html dvi info |
0cb3fb1e | 7 | |
8c462f8f PB |
8 | VPATH=$(SRC_PATH):$(SRC_PATH)/hw |
9 | ||
6f30fa85 TS |
10 | BASE_CFLAGS= |
11 | BASE_LDFLAGS= | |
12 | ||
3142255c BS |
13 | BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS) |
14 | BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS) | |
15 | ||
4fb240a4 FB |
16 | CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP |
17 | CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE | |
766a487a | 18 | LIBS= |
1f50f8d1 | 19 | ifdef CONFIG_STATIC |
6f30fa85 | 20 | BASE_LDFLAGS += -static |
1f50f8d1 | 21 | endif |
cc8ae6de | 22 | ifdef BUILD_DOCS |
acd935ef | 23 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 |
cc8ae6de PB |
24 | else |
25 | DOCS= | |
26 | endif | |
aa05ae6f | 27 | |
70956b77 | 28 | LIBS+=$(AIOLIBS) |
83f64091 | 29 | |
da0b0df8 | 30 | all: $(TOOLS) $(DOCS) recurse-all |
b9dea4fb | 31 | |
da0b0df8 | 32 | subdir-%: dyngen$(EXESUF) libqemu_common.a |
4aa42531 PB |
33 | $(MAKE) -C $(subst subdir-,,$@) all |
34 | ||
35 | recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS)) | |
83f64091 | 36 | |
faf07963 PB |
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 | ||
4fb240a4 | 45 | ###################################################################### |
faf07963 | 46 | # libqemu_common.a: Target indepedent part of system emulation. The |
4fb240a4 FB |
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. | |
47cea614 | 50 | |
faf07963 | 51 | OBJS=$(BLOCK_OBJS) |
87ecb68b | 52 | OBJS+=readline.o console.o |
faf07963 | 53 | OBJS+=block.o |
4fb240a4 | 54 | |
87ecb68b PB |
55 | OBJS+=irq.o |
56 | OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o | |
cf0dbb21 | 57 | OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o |
87ecb68b PB |
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 | |
775616c3 | 60 | OBJS+=sd.o ssi-sd.o |
87ecb68b | 61 | |
4fb240a4 FB |
62 | ifdef CONFIG_WIN32 |
63 | OBJS+=tap-win32.o | |
64 | endif | |
65 | ||
66 | AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o | |
67 | ifdef CONFIG_SDL | |
68 | AUDIO_OBJS += sdlaudio.o | |
69 | endif | |
70 | ifdef CONFIG_OSS | |
71 | AUDIO_OBJS += ossaudio.o | |
72 | endif | |
73 | ifdef CONFIG_COREAUDIO | |
74 | AUDIO_OBJS += coreaudio.o | |
75 | endif | |
76 | ifdef CONFIG_ALSA | |
77 | AUDIO_OBJS += alsaaudio.o | |
78 | endif | |
79 | ifdef CONFIG_DSOUND | |
80 | AUDIO_OBJS += dsoundaudio.o | |
81 | endif | |
82 | ifdef CONFIG_FMOD | |
83 | AUDIO_OBJS += fmodaudio.o | |
84 | audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) | |
85 | endif | |
86 | AUDIO_OBJS+= wavcapture.o | |
87 | OBJS+=$(addprefix audio/, $(AUDIO_OBJS)) | |
88 | ||
89 | ifdef CONFIG_SDL | |
90 | OBJS+=sdl.o x_keymap.o | |
91 | endif | |
92 | OBJS+=vnc.o d3des.o | |
93 | ||
94 | ifdef CONFIG_COCOA | |
95 | OBJS+=cocoa.o | |
96 | endif | |
97 | ||
98 | ifdef CONFIG_SLIRP | |
99 | CPPFLAGS+=-I$(SRC_PATH)/slirp | |
100 | SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ | |
101 | slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \ | |
102 | tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o | |
103 | OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) | |
104 | endif | |
105 | ||
106 | cocoa.o: cocoa.m | |
107 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< | |
108 | ||
109 | sdl.o: sdl.c keymaps.c sdl_keysym.h | |
110 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $< | |
111 | ||
112 | vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h | |
d5db4246 | 113 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $< |
4fb240a4 FB |
114 | |
115 | audio/sdlaudio.o: audio/sdlaudio.c | |
116 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $< | |
117 | ||
118 | libqemu_common.a: $(OBJS) | |
119 | rm -f $@ | |
120 | $(AR) rcs $@ $(OBJS) | |
121 | ||
223d4670 TS |
122 | QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS) |
123 | ifdef CONFIG_WIN32 | |
124 | QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o | |
125 | else | |
126 | QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o | |
127 | endif | |
128 | ||
4fb240a4 FB |
129 | ###################################################################### |
130 | ||
223d4670 | 131 | qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS) |
4fb240a4 FB |
132 | $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS) |
133 | ||
faf07963 PB |
134 | qemu-img-%.o: %.c |
135 | $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG $(BASE_CFLAGS) -c -o $@ $< | |
136 | ||
4fb240a4 FB |
137 | %.o: %.c |
138 | $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< | |
139 | ||
140 | # dyngen host tool | |
11d9f695 | 141 | dyngen$(EXESUF): dyngen.c |
6f30fa85 | 142 | $(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^ |
31e31b8a FB |
143 | |
144 | clean: | |
2d80ae89 | 145 | # avoid old build problems by removing potentially incorrect old files |
5fafdf24 | 146 | 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 |
4fb240a4 FB |
147 | rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~ |
148 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d | |
7d3505c5 | 149 | $(MAKE) -C tests clean |
626df76a | 150 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 151 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 152 | done |
31e31b8a | 153 | |
7d13299d | 154 | distclean: clean |
cc8ae6de | 155 | rm -f config-host.mak config-host.h $(DOCS) |
0cb3fb1e | 156 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
76bc6838 | 157 | for d in $(TARGET_DIRS); do \ |
bc1b050d | 158 | rm -rf $$d || exit 1 ; \ |
76bc6838 | 159 | done |
7d13299d | 160 | |
fed4a9ad FB |
161 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
162 | ar de en-us fi fr-be hr it lv nl pl ru th \ | |
163 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr | |
164 | ||
38954dca PB |
165 | install-doc: $(DOCS) |
166 | mkdir -p "$(DESTDIR)$(docdir)" | |
167 | $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" | |
168 | ifndef CONFIG_WIN32 | |
169 | mkdir -p "$(DESTDIR)$(mandir)/man1" | |
170 | $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" | |
171 | endif | |
172 | ||
173 | install: all $(if $(BUILD_DOCS),install-doc) | |
1236cab7 | 174 | mkdir -p "$(DESTDIR)$(bindir)" |
932a79df | 175 | ifneq ($(TOOLS),) |
6a882643 | 176 | $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)" |
932a79df | 177 | endif |
1236cab7 | 178 | mkdir -p "$(DESTDIR)$(datadir)" |
ad064840 | 179 | for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ |
860c6c52 | 180 | video.x openbios-sparc32 pxe-ne2k_pci.bin \ |
eec85c2a | 181 | pxe-rtl8139.bin pxe-pcnet.bin; do \ |
6a882643 | 182 | $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
ad064840 | 183 | done |
11d9f695 | 184 | ifndef CONFIG_WIN32 |
1236cab7 | 185 | mkdir -p "$(DESTDIR)$(datadir)/keymaps" |
ad064840 | 186 | for x in $(KEYMAPS); do \ |
6a882643 | 187 | $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
ad064840 | 188 | done |
11d9f695 | 189 | endif |
626df76a | 190 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 191 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 192 | done |
612384d7 | 193 | |
367e86e8 | 194 | # various test targets |
9b0b8203 | 195 | test speed: all |
7d3505c5 | 196 | $(MAKE) -C tests $@ |
31e31b8a | 197 | |
5fafdf24 | 198 | TAGS: |
b9adb4a6 | 199 | etags *.[ch] tests/*.[ch] |
31e31b8a | 200 | |
6688bc6d FB |
201 | cscope: |
202 | rm -f ./cscope.* | |
203 | find . -name "*.[ch]" -print > ./cscope.files | |
204 | cscope -b | |
205 | ||
3ef693a0 | 206 | # documentation |
1f673135 | 207 | %.html: %.texi |
3ef693a0 FB |
208 | texi2html -monolithic -number $< |
209 | ||
f3548328 FB |
210 | %.info: %.texi |
211 | makeinfo $< -o $@ | |
212 | ||
213 | %.dvi: %.texi | |
214 | texi2dvi $< | |
215 | ||
5a67135a | 216 | qemu.1: qemu-doc.texi |
ad064840 | 217 | $(SRC_PATH)/texi2pod.pl $< qemu.pod |
5a67135a FB |
218 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@ |
219 | ||
acd935ef | 220 | qemu-img.1: qemu-img.texi |
ad064840 | 221 | $(SRC_PATH)/texi2pod.pl $< qemu-img.pod |
acd935ef FB |
222 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@ |
223 | ||
0cb3fb1e PB |
224 | info: qemu-doc.info qemu-tech.info |
225 | ||
226 | dvi: qemu-doc.dvi qemu-tech.dvi | |
227 | ||
228 | html: qemu-doc.html qemu-tech.html | |
229 | ||
df5cf721 TS |
230 | VERSION ?= $(shell cat VERSION) |
231 | FILE = qemu-$(VERSION) | |
586314f2 | 232 | |
1e43adfc | 233 | # tar release (use 'make -k tar' on a checkouted tree) |
586314f2 FB |
234 | tar: |
235 | rm -rf /tmp/$(FILE) | |
1e43adfc | 236 | cp -r . /tmp/$(FILE) |
76b62fd0 | 237 | ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS ) |
586314f2 FB |
238 | rm -rf /tmp/$(FILE) |
239 | ||
76b62fd0 | 240 | # generate a binary distribution |
d691f669 | 241 | tarbin: |
4887d78b | 242 | ( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
43095f31 | 243 | $(bindir)/qemu \ |
7efa4387 | 244 | $(bindir)/qemu-system-ppc \ |
d4082e95 JM |
245 | $(bindir)/qemu-system-ppc64 \ |
246 | $(bindir)/qemu-system-ppcemb \ | |
acd935ef | 247 | $(bindir)/qemu-system-sparc \ |
43095f31 | 248 | $(bindir)/qemu-system-x86_64 \ |
93856aac | 249 | $(bindir)/qemu-system-mips \ |
38260998 | 250 | $(bindir)/qemu-system-mipsel \ |
fbe4f65b TS |
251 | $(bindir)/qemu-system-mips64 \ |
252 | $(bindir)/qemu-system-mips64el \ | |
ea31eb5b | 253 | $(bindir)/qemu-system-arm \ |
ff1aaf65 TS |
254 | $(bindir)/qemu-system-m68k \ |
255 | $(bindir)/qemu-system-sh4 \ | |
85ffbdfc | 256 | $(bindir)/qemu-system-sh4eb \ |
7efa4387 FB |
257 | $(bindir)/qemu-i386 \ |
258 | $(bindir)/qemu-arm \ | |
ea31eb5b | 259 | $(bindir)/qemu-armeb \ |
7efa4387 FB |
260 | $(bindir)/qemu-sparc \ |
261 | $(bindir)/qemu-ppc \ | |
d4082e95 | 262 | $(bindir)/qemu-ppc64 \ |
ea31eb5b FB |
263 | $(bindir)/qemu-mips \ |
264 | $(bindir)/qemu-mipsel \ | |
540635ba TS |
265 | $(bindir)/qemu-mipsn32 \ |
266 | $(bindir)/qemu-mipsn32el \ | |
267 | $(bindir)/qemu-mips64 \ | |
268 | $(bindir)/qemu-mips64el \ | |
cf6c1b16 | 269 | $(bindir)/qemu-alpha \ |
ff1aaf65 TS |
270 | $(bindir)/qemu-m68k \ |
271 | $(bindir)/qemu-sh4 \ | |
85ffbdfc | 272 | $(bindir)/qemu-sh4eb \ |
b932caba | 273 | $(bindir)/qemu-img \ |
7efa4387 FB |
274 | $(datadir)/bios.bin \ |
275 | $(datadir)/vgabios.bin \ | |
de9258a8 | 276 | $(datadir)/vgabios-cirrus.bin \ |
637f6cd7 | 277 | $(datadir)/ppc_rom.bin \ |
d5295253 | 278 | $(datadir)/video.x \ |
0986ac3b | 279 | $(datadir)/openbios-sparc32 \ |
19c80e50 FB |
280 | $(datadir)/pxe-ne2k_pci.bin \ |
281 | $(datadir)/pxe-rtl8139.bin \ | |
282 | $(datadir)/pxe-pcnet.bin \ | |
1f50f8d1 FB |
283 | $(docdir)/qemu-doc.html \ |
284 | $(docdir)/qemu-tech.html \ | |
acd935ef | 285 | $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 ) |
d691f669 | 286 | |
31e31b8a FB |
287 | ifneq ($(wildcard .depend),) |
288 | include .depend | |
289 | endif | |
4fb240a4 FB |
290 | |
291 | # Include automatically generated dependency files | |
292 | -include $(wildcard *.d audio/*.d slirp/*.d) |