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