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