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