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