]> Git Repo - qemu.git/blame_incremental - Makefile
Add an ncurses UI.
[qemu.git] / Makefile
... / ...
CommitLineData
1# Makefile for QEMU.
2
3include config-host.mak
4
5.PHONY: all clean distclean dvi info install install-doc tar tarbin \
6 speed test html dvi info
7
8VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9
10CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
12
13CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
14CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
15LIBS=
16ifdef CONFIG_STATIC
17LDFLAGS += -static
18endif
19ifdef BUILD_DOCS
20DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
21else
22DOCS=
23endif
24
25LIBS+=$(AIOLIBS)
26
27all: $(TOOLS) $(DOCS) recurse-all
28
29subdir-%: dyngen$(EXESUF) libqemu_common.a
30 $(MAKE) -C $(subst subdir-,,$@) all
31
32recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
33
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
42######################################################################
43# libqemu_common.a: Target independent part of system emulation. The
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.
47
48OBJS=$(BLOCK_OBJS)
49OBJS+=readline.o console.o
50OBJS+=block.o
51
52OBJS+=irq.o
53OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
54OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o
55OBJS+=scsi-disk.o cdrom.o
56OBJS+=scsi-generic.o
57OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
58OBJS+=sd.o ssi-sd.o
59
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
73AUDIO_PT = yes
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
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
96AUDIO_OBJS+= wavcapture.o
97OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
98
99ifdef CONFIG_SDL
100OBJS+=sdl.o x_keymap.o
101endif
102ifdef CONFIG_CURSES
103OBJS+=curses.o
104endif
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
120 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
121
122sdl.o: sdl.c keymaps.c sdl_keysym.h
123 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
124
125vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
126 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
127
128curses.o: curses.c keymaps.c curses_keys.h
129 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
130
131audio/sdlaudio.o: audio/sdlaudio.c
132 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
133
134libqemu_common.a: $(OBJS)
135 rm -f $@
136 $(AR) rcs $@ $(OBJS)
137
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
145######################################################################
146
147qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
148 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
149
150qemu-img-%.o: %.c
151 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
152
153%.o: %.c
154 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
155
156# dyngen host tool
157dyngen$(EXESUF): dyngen.c
158 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
159
160clean:
161# avoid old build problems by removing potentially incorrect old files
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
163 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
164 rm -rf dyngen.dSYM
165 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
166 $(MAKE) -C tests clean
167 for d in $(TARGET_DIRS); do \
168 $(MAKE) -C $$d $@ || exit 1 ; \
169 done
170
171distclean: clean
172 rm -f config-host.mak config-host.h $(DOCS)
173 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
174 for d in $(TARGET_DIRS); do \
175 rm -rf $$d || exit 1 ; \
176 done
177
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
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)
191 mkdir -p "$(DESTDIR)$(bindir)"
192ifneq ($(TOOLS),)
193 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
194endif
195 mkdir -p "$(DESTDIR)$(datadir)"
196 for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
197 video.x openbios-sparc32 pxe-ne2k_pci.bin \
198 pxe-rtl8139.bin pxe-pcnet.bin; do \
199 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
200 done
201ifndef CONFIG_WIN32
202 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
203 for x in $(KEYMAPS); do \
204 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
205 done
206endif
207 for d in $(TARGET_DIRS); do \
208 $(MAKE) -C $$d $@ || exit 1 ; \
209 done
210
211# various test targets
212test speed: all
213 $(MAKE) -C tests $@
214
215TAGS:
216 etags *.[ch] tests/*.[ch]
217
218cscope:
219 rm -f ./cscope.*
220 find . -name "*.[ch]" -print > ./cscope.files
221 cscope -b
222
223# documentation
224%.html: %.texi
225 texi2html -monolithic -number $<
226
227%.info: %.texi
228 makeinfo $< -o $@
229
230%.dvi: %.texi
231 texi2dvi $<
232
233qemu.1: qemu-doc.texi
234 $(SRC_PATH)/texi2pod.pl $< qemu.pod
235 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
236
237qemu-img.1: qemu-img.texi
238 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
239 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
240
241info: qemu-doc.info qemu-tech.info
242
243dvi: qemu-doc.dvi qemu-tech.dvi
244
245html: qemu-doc.html qemu-tech.html
246
247VERSION ?= $(shell cat VERSION)
248FILE = qemu-$(VERSION)
249
250# tar release (use 'make -k tar' on a checkouted tree)
251tar:
252 rm -rf /tmp/$(FILE)
253 cp -r . /tmp/$(FILE)
254 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
255 rm -rf /tmp/$(FILE)
256
257# generate a binary distribution
258tarbin:
259 ( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
260 $(bindir)/qemu \
261 $(bindir)/qemu-system-ppc \
262 $(bindir)/qemu-system-ppc64 \
263 $(bindir)/qemu-system-ppcemb \
264 $(bindir)/qemu-system-sparc \
265 $(bindir)/qemu-system-x86_64 \
266 $(bindir)/qemu-system-mips \
267 $(bindir)/qemu-system-mipsel \
268 $(bindir)/qemu-system-mips64 \
269 $(bindir)/qemu-system-mips64el \
270 $(bindir)/qemu-system-arm \
271 $(bindir)/qemu-system-m68k \
272 $(bindir)/qemu-system-sh4 \
273 $(bindir)/qemu-system-sh4eb \
274 $(bindir)/qemu-system-cris \
275 $(bindir)/qemu-i386 \
276 $(bindir)/qemu-x86_64 \
277 $(bindir)/qemu-arm \
278 $(bindir)/qemu-armeb \
279 $(bindir)/qemu-sparc \
280 $(bindir)/qemu-sparc32plus \
281 $(bindir)/qemu-sparc64 \
282 $(bindir)/qemu-ppc \
283 $(bindir)/qemu-ppc64 \
284 $(bindir)/qemu-ppc64abi32 \
285 $(bindir)/qemu-mips \
286 $(bindir)/qemu-mipsel \
287 $(bindir)/qemu-alpha \
288 $(bindir)/qemu-m68k \
289 $(bindir)/qemu-sh4 \
290 $(bindir)/qemu-sh4eb \
291 $(bindir)/qemu-cris \
292 $(bindir)/qemu-img \
293 $(datadir)/bios.bin \
294 $(datadir)/vgabios.bin \
295 $(datadir)/vgabios-cirrus.bin \
296 $(datadir)/ppc_rom.bin \
297 $(datadir)/video.x \
298 $(datadir)/openbios-sparc32 \
299 $(datadir)/pxe-ne2k_pci.bin \
300 $(datadir)/pxe-rtl8139.bin \
301 $(datadir)/pxe-pcnet.bin \
302 $(docdir)/qemu-doc.html \
303 $(docdir)/qemu-tech.html \
304 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
305
306# Include automatically generated dependency files
307-include $(wildcard *.d audio/*.d slirp/*.d)
This page took 0.024817 seconds and 4 git commands to generate.