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