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