]>
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 | ||
40293e58 FB |
10 | CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS) |
11 | LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS) | |
3142255c | 12 | |
96935aa4 | 13 | CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@ |
4fb240a4 | 14 | CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
766a487a | 15 | LIBS= |
1f50f8d1 | 16 | ifdef CONFIG_STATIC |
40293e58 | 17 | LDFLAGS += -static |
1f50f8d1 | 18 | endif |
cc8ae6de | 19 | ifdef BUILD_DOCS |
7a5ca864 | 20 | DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 |
cc8ae6de PB |
21 | else |
22 | DOCS= | |
23 | endif | |
aa05ae6f | 24 | |
70956b77 | 25 | LIBS+=$(AIOLIBS) |
83f64091 | 26 | |
7e00eb9b AL |
27 | ifdef CONFIG_SOLARIS |
28 | LIBS+=-lsocket -lnsl -lresolv | |
29 | endif | |
30 | ||
03ff3ca3 AL |
31 | ifdef CONFIG_WIN32 |
32 | LIBS+=-lwinmm -lws2_32 -liphlpapi | |
33 | endif | |
34 | ||
da0b0df8 | 35 | all: $(TOOLS) $(DOCS) recurse-all |
b9dea4fb | 36 | |
cec7d0b6 PB |
37 | SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) |
38 | ||
39 | subdir-%: dyngen$(EXESUF) | |
4aa42531 PB |
40 | $(MAKE) -C $(subst subdir-,,$@) all |
41 | ||
cec7d0b6 PB |
42 | $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a |
43 | $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a | |
44 | ||
45 | recurse-all: $(SUBDIR_RULES) | |
83f64091 | 46 | |
faf07963 PB |
47 | ####################################################################### |
48 | # BLOCK_OBJS is code used by both qemu system emulation and qemu-img | |
49 | ||
17e2377a | 50 | BLOCK_OBJS=cutils.o qemu-malloc.o |
faf07963 PB |
51 | BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o |
52 | BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o | |
03ff3ca3 AL |
53 | BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o |
54 | BLOCK_OBJS+=nbd.o block.o | |
55 | ||
56 | ifdef CONFIG_WIN32 | |
57 | BLOCK_OBJS += block-raw-win32.o | |
58 | else | |
59 | BLOCK_OBJS += block-raw-posix.o | |
60 | endif | |
61 | ||
62 | ifdef CONFIG_AIO | |
63 | BLOCK_OBJS += compatfd.o | |
cd01b4a3 | 64 | endif |
faf07963 | 65 | |
4fb240a4 | 66 | ###################################################################### |
2e2ea909 | 67 | # libqemu_common.a: Target independent part of system emulation. The |
4fb240a4 FB |
68 | # long term path is to suppress *all* target specific code in case of |
69 | # system emulation, i.e. a single QEMU executable should support all | |
70 | # CPUs and machines. | |
47cea614 | 71 | |
cd01b4a3 | 72 | OBJS=$(BLOCK_OBJS) |
87ecb68b | 73 | OBJS+=readline.o console.o |
cd01b4a3 | 74 | |
87ecb68b PB |
75 | OBJS+=irq.o |
76 | OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o | |
7e7c5e4c | 77 | OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o |
1d4e547b | 78 | OBJS+=tmp105.o lm832x.o |
87ecb68b | 79 | OBJS+=scsi-disk.o cdrom.o |
985a03b0 | 80 | OBJS+=scsi-generic.o |
6c9f886c AZ |
81 | OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o |
82 | OBJS+=usb-serial.o usb-net.o | |
775616c3 | 83 | OBJS+=sd.o ssi-sd.o |
87ecb68b | 84 | |
2e4d9fb1 AJ |
85 | ifdef CONFIG_BRLAPI |
86 | OBJS+= baum.o | |
87 | LIBS+=-lbrlapi | |
88 | endif | |
89 | ||
4fb240a4 FB |
90 | ifdef CONFIG_WIN32 |
91 | OBJS+=tap-win32.o | |
92 | endif | |
93 | ||
94 | AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o | |
95 | ifdef CONFIG_SDL | |
96 | AUDIO_OBJS += sdlaudio.o | |
97 | endif | |
98 | ifdef CONFIG_OSS | |
99 | AUDIO_OBJS += ossaudio.o | |
100 | endif | |
101 | ifdef CONFIG_COREAUDIO | |
102 | AUDIO_OBJS += coreaudio.o | |
ca9cc28c | 103 | AUDIO_PT = yes |
4fb240a4 FB |
104 | endif |
105 | ifdef CONFIG_ALSA | |
106 | AUDIO_OBJS += alsaaudio.o | |
107 | endif | |
108 | ifdef CONFIG_DSOUND | |
109 | AUDIO_OBJS += dsoundaudio.o | |
110 | endif | |
111 | ifdef CONFIG_FMOD | |
112 | AUDIO_OBJS += fmodaudio.o | |
113 | audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) | |
114 | endif | |
ca9cc28c AZ |
115 | ifdef CONFIG_ESD |
116 | AUDIO_PT = yes | |
117 | AUDIO_PT_INT = yes | |
118 | AUDIO_OBJS += esdaudio.o | |
119 | endif | |
b8e59f18 | 120 | ifdef CONFIG_PA |
121 | AUDIO_PT = yes | |
122 | AUDIO_PT_INT = yes | |
123 | AUDIO_OBJS += paaudio.o | |
124 | endif | |
ca9cc28c AZ |
125 | ifdef AUDIO_PT |
126 | LDFLAGS += -pthread | |
127 | endif | |
128 | ifdef AUDIO_PT_INT | |
129 | AUDIO_OBJS += audio_pt_int.o | |
130 | endif | |
4fb240a4 FB |
131 | AUDIO_OBJS+= wavcapture.o |
132 | OBJS+=$(addprefix audio/, $(AUDIO_OBJS)) | |
133 | ||
134 | ifdef CONFIG_SDL | |
135 | OBJS+=sdl.o x_keymap.o | |
136 | endif | |
4d3b6f6e AZ |
137 | ifdef CONFIG_CURSES |
138 | OBJS+=curses.o | |
139 | endif | |
4fb240a4 FB |
140 | OBJS+=vnc.o d3des.o |
141 | ||
142 | ifdef CONFIG_COCOA | |
143 | OBJS+=cocoa.o | |
144 | endif | |
145 | ||
146 | ifdef CONFIG_SLIRP | |
147 | CPPFLAGS+=-I$(SRC_PATH)/slirp | |
148 | SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ | |
149 | slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \ | |
150 | tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o | |
151 | OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) | |
152 | endif | |
153 | ||
8a16d273 TS |
154 | LIBS+=$(VDE_LIBS) |
155 | ||
4fb240a4 | 156 | cocoa.o: cocoa.m |
40293e58 | 157 | $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< |
4fb240a4 FB |
158 | |
159 | sdl.o: sdl.c keymaps.c sdl_keysym.h | |
40293e58 | 160 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $< |
4fb240a4 FB |
161 | |
162 | vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h | |
40293e58 | 163 | $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $< |
4fb240a4 | 164 | |
4d3b6f6e | 165 | curses.o: curses.c keymaps.c curses_keys.h |
f5d28393 | 166 | $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< |
4d3b6f6e | 167 | |
4fb240a4 | 168 | audio/sdlaudio.o: audio/sdlaudio.c |
40293e58 | 169 | $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $< |
4fb240a4 FB |
170 | |
171 | libqemu_common.a: $(OBJS) | |
172 | rm -f $@ | |
173 | $(AR) rcs $@ $(OBJS) | |
174 | ||
cec7d0b6 PB |
175 | ####################################################################### |
176 | # USER_OBJS is code used by qemu userspace emulation | |
177 | USER_OBJS=cutils.o | |
178 | ||
179 | libqemu_user.a: $(USER_OBJS) | |
180 | rm -f $@ | |
181 | $(AR) rcs $@ $(USER_OBJS) | |
182 | ||
4fb240a4 FB |
183 | ###################################################################### |
184 | ||
03ff3ca3 | 185 | qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS) |
40293e58 | 186 | $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS) |
4fb240a4 FB |
187 | |
188 | %.o: %.c | |
40293e58 | 189 | $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< |
4fb240a4 | 190 | |
03ff3ca3 | 191 | qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS) |
7a5ca864 FB |
192 | $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS) |
193 | ||
4fb240a4 | 194 | # dyngen host tool |
11d9f695 | 195 | dyngen$(EXESUF): dyngen.c |
40293e58 | 196 | $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ |
31e31b8a FB |
197 | |
198 | clean: | |
2d80ae89 | 199 | # avoid old build problems by removing potentially incorrect old files |
5fafdf24 | 200 | 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 | 201 | rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~ |
b94ec3ec | 202 | rm -rf dyngen.dSYM |
4fb240a4 | 203 | rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d |
7d3505c5 | 204 | $(MAKE) -C tests clean |
626df76a | 205 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 206 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 207 | done |
31e31b8a | 208 | |
7d13299d | 209 | distclean: clean |
cc8ae6de | 210 | rm -f config-host.mak config-host.h $(DOCS) |
0cb3fb1e | 211 | rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr} |
76bc6838 | 212 | for d in $(TARGET_DIRS); do \ |
bc1b050d | 213 | rm -rf $$d || exit 1 ; \ |
76bc6838 | 214 | done |
7d13299d | 215 | |
fed4a9ad FB |
216 | KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \ |
217 | ar de en-us fi fr-be hr it lv nl pl ru th \ | |
218 | common de-ch es fo fr-ca hu ja mk nl-be pt sl tr | |
219 | ||
38954dca PB |
220 | install-doc: $(DOCS) |
221 | mkdir -p "$(DESTDIR)$(docdir)" | |
222 | $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)" | |
223 | ifndef CONFIG_WIN32 | |
224 | mkdir -p "$(DESTDIR)$(mandir)/man1" | |
225 | $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1" | |
7a5ca864 FB |
226 | mkdir -p "$(DESTDIR)$(mandir)/man8" |
227 | $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8" | |
38954dca PB |
228 | endif |
229 | ||
230 | install: all $(if $(BUILD_DOCS),install-doc) | |
1236cab7 | 231 | mkdir -p "$(DESTDIR)$(bindir)" |
932a79df | 232 | ifneq ($(TOOLS),) |
6a882643 | 233 | $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)" |
932a79df | 234 | endif |
1236cab7 | 235 | mkdir -p "$(DESTDIR)$(datadir)" |
18be8d77 | 236 | set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ |
938255d2 | 237 | video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \ |
2991990b | 238 | pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin; do \ |
6a882643 | 239 | $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ |
ad064840 | 240 | done |
11d9f695 | 241 | ifndef CONFIG_WIN32 |
1236cab7 | 242 | mkdir -p "$(DESTDIR)$(datadir)/keymaps" |
18be8d77 | 243 | set -e; for x in $(KEYMAPS); do \ |
6a882643 | 244 | $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ |
ad064840 | 245 | done |
11d9f695 | 246 | endif |
626df76a | 247 | for d in $(TARGET_DIRS); do \ |
7d3505c5 | 248 | $(MAKE) -C $$d $@ || exit 1 ; \ |
626df76a | 249 | done |
612384d7 | 250 | |
367e86e8 | 251 | # various test targets |
9b0b8203 | 252 | test speed: all |
7d3505c5 | 253 | $(MAKE) -C tests $@ |
31e31b8a | 254 | |
5fafdf24 | 255 | TAGS: |
b9adb4a6 | 256 | etags *.[ch] tests/*.[ch] |
31e31b8a | 257 | |
6688bc6d FB |
258 | cscope: |
259 | rm -f ./cscope.* | |
260 | find . -name "*.[ch]" -print > ./cscope.files | |
261 | cscope -b | |
262 | ||
3ef693a0 | 263 | # documentation |
1f673135 | 264 | %.html: %.texi |
3ef693a0 FB |
265 | texi2html -monolithic -number $< |
266 | ||
f3548328 FB |
267 | %.info: %.texi |
268 | makeinfo $< -o $@ | |
269 | ||
270 | %.dvi: %.texi | |
271 | texi2dvi $< | |
272 | ||
5a67135a | 273 | qemu.1: qemu-doc.texi |
ad064840 | 274 | $(SRC_PATH)/texi2pod.pl $< qemu.pod |
5a67135a FB |
275 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@ |
276 | ||
acd935ef | 277 | qemu-img.1: qemu-img.texi |
ad064840 | 278 | $(SRC_PATH)/texi2pod.pl $< qemu-img.pod |
acd935ef FB |
279 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@ |
280 | ||
7a5ca864 FB |
281 | qemu-nbd.8: qemu-nbd.texi |
282 | $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod | |
283 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@ | |
284 | ||
0cb3fb1e PB |
285 | info: qemu-doc.info qemu-tech.info |
286 | ||
287 | dvi: qemu-doc.dvi qemu-tech.dvi | |
288 | ||
289 | html: qemu-doc.html qemu-tech.html | |
290 | ||
df5cf721 TS |
291 | VERSION ?= $(shell cat VERSION) |
292 | FILE = qemu-$(VERSION) | |
586314f2 | 293 | |
1e43adfc | 294 | # tar release (use 'make -k tar' on a checkouted tree) |
586314f2 FB |
295 | tar: |
296 | rm -rf /tmp/$(FILE) | |
1e43adfc | 297 | cp -r . /tmp/$(FILE) |
99c6c082 | 298 | cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn |
586314f2 FB |
299 | rm -rf /tmp/$(FILE) |
300 | ||
76b62fd0 | 301 | # generate a binary distribution |
d691f669 | 302 | tarbin: |
18be8d77 | 303 | cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ |
43095f31 | 304 | $(bindir)/qemu \ |
7efa4387 | 305 | $(bindir)/qemu-system-ppc \ |
d4082e95 JM |
306 | $(bindir)/qemu-system-ppc64 \ |
307 | $(bindir)/qemu-system-ppcemb \ | |
acd935ef | 308 | $(bindir)/qemu-system-sparc \ |
43095f31 | 309 | $(bindir)/qemu-system-x86_64 \ |
93856aac | 310 | $(bindir)/qemu-system-mips \ |
38260998 | 311 | $(bindir)/qemu-system-mipsel \ |
fbe4f65b TS |
312 | $(bindir)/qemu-system-mips64 \ |
313 | $(bindir)/qemu-system-mips64el \ | |
ea31eb5b | 314 | $(bindir)/qemu-system-arm \ |
ff1aaf65 TS |
315 | $(bindir)/qemu-system-m68k \ |
316 | $(bindir)/qemu-system-sh4 \ | |
85ffbdfc | 317 | $(bindir)/qemu-system-sh4eb \ |
f0403c03 | 318 | $(bindir)/qemu-system-cris \ |
7efa4387 | 319 | $(bindir)/qemu-i386 \ |
f0403c03 | 320 | $(bindir)/qemu-x86_64 \ |
7efa4387 | 321 | $(bindir)/qemu-arm \ |
ea31eb5b | 322 | $(bindir)/qemu-armeb \ |
7efa4387 | 323 | $(bindir)/qemu-sparc \ |
f0403c03 FB |
324 | $(bindir)/qemu-sparc32plus \ |
325 | $(bindir)/qemu-sparc64 \ | |
7efa4387 | 326 | $(bindir)/qemu-ppc \ |
d4082e95 | 327 | $(bindir)/qemu-ppc64 \ |
f0403c03 | 328 | $(bindir)/qemu-ppc64abi32 \ |
ea31eb5b FB |
329 | $(bindir)/qemu-mips \ |
330 | $(bindir)/qemu-mipsel \ | |
cf6c1b16 | 331 | $(bindir)/qemu-alpha \ |
ff1aaf65 TS |
332 | $(bindir)/qemu-m68k \ |
333 | $(bindir)/qemu-sh4 \ | |
85ffbdfc | 334 | $(bindir)/qemu-sh4eb \ |
f0403c03 | 335 | $(bindir)/qemu-cris \ |
b932caba | 336 | $(bindir)/qemu-img \ |
7a5ca864 | 337 | $(bindir)/qemu-nbd \ |
7efa4387 FB |
338 | $(datadir)/bios.bin \ |
339 | $(datadir)/vgabios.bin \ | |
de9258a8 | 340 | $(datadir)/vgabios-cirrus.bin \ |
637f6cd7 | 341 | $(datadir)/ppc_rom.bin \ |
d5295253 | 342 | $(datadir)/video.x \ |
0986ac3b | 343 | $(datadir)/openbios-sparc32 \ |
938255d2 | 344 | $(datadir)/openbios-sparc64 \ |
19c80e50 FB |
345 | $(datadir)/pxe-ne2k_pci.bin \ |
346 | $(datadir)/pxe-rtl8139.bin \ | |
347 | $(datadir)/pxe-pcnet.bin \ | |
2991990b | 348 | $(datadir)/pxe-e1000.bin \ |
1f50f8d1 FB |
349 | $(docdir)/qemu-doc.html \ |
350 | $(docdir)/qemu-tech.html \ | |
18be8d77 | 351 | $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 |
7a5ca864 | 352 | $(mandir)/man8/qemu-nbd.8 |
d691f669 | 353 | |
4fb240a4 FB |
354 | # Include automatically generated dependency files |
355 | -include $(wildcard *.d audio/*.d slirp/*.d) |