Copy Sparc64 firmware when installing (Hervé Poussineau)
[qemu] / Makefile
1 # Makefile for QEMU.
2
3 include config-host.mak
4
5 .PHONY: all clean distclean dvi info install install-doc tar tarbin \
6         speed test html dvi info
7
8 VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9
10 CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11 LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
12
13 CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
14 CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
15 LIBS=
16 ifdef CONFIG_STATIC
17 LDFLAGS += -static
18 endif
19 ifdef BUILD_DOCS
20 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
21 else
22 DOCS=
23 endif
24
25 LIBS+=$(AIOLIBS)
26
27 all: $(TOOLS) $(DOCS) recurse-all 
28
29 subdir-%: dyngen$(EXESUF) libqemu_common.a
30         $(MAKE) -C $(subst subdir-,,$@) all
31
32 recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
33
34 #######################################################################
35 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
36
37 BLOCK_OBJS=cutils.o
38 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
39 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
40 BLOCK_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
48 OBJS=$(BLOCK_OBJS)
49 OBJS+=readline.o console.o
50 OBJS+=block.o
51
52 OBJS+=irq.o
53 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
54 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
55 OBJS+=tmp105.o
56 OBJS+=scsi-disk.o cdrom.o
57 OBJS+=scsi-generic.o
58 OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
59 OBJS+=sd.o ssi-sd.o
60
61 ifdef CONFIG_BRLAPI
62 OBJS+= baum.o
63 LIBS+=-lbrlapi
64 endif
65
66 ifdef CONFIG_WIN32
67 OBJS+=tap-win32.o
68 endif
69
70 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
71 ifdef CONFIG_SDL
72 AUDIO_OBJS += sdlaudio.o
73 endif
74 ifdef CONFIG_OSS
75 AUDIO_OBJS += ossaudio.o
76 endif
77 ifdef CONFIG_COREAUDIO
78 AUDIO_OBJS += coreaudio.o
79 AUDIO_PT = yes
80 endif
81 ifdef CONFIG_ALSA
82 AUDIO_OBJS += alsaaudio.o
83 endif
84 ifdef CONFIG_DSOUND
85 AUDIO_OBJS += dsoundaudio.o
86 endif
87 ifdef CONFIG_FMOD
88 AUDIO_OBJS += fmodaudio.o
89 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
90 endif
91 ifdef CONFIG_ESD
92 AUDIO_PT = yes
93 AUDIO_PT_INT = yes
94 AUDIO_OBJS += esdaudio.o
95 endif
96 ifdef AUDIO_PT
97 LDFLAGS += -pthread
98 endif
99 ifdef AUDIO_PT_INT
100 AUDIO_OBJS += audio_pt_int.o
101 endif
102 AUDIO_OBJS+= wavcapture.o
103 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
104
105 ifdef CONFIG_SDL
106 OBJS+=sdl.o x_keymap.o
107 endif
108 ifdef CONFIG_CURSES
109 OBJS+=curses.o
110 endif
111 OBJS+=vnc.o d3des.o
112
113 ifdef CONFIG_COCOA
114 OBJS+=cocoa.o
115 endif
116
117 ifdef CONFIG_SLIRP
118 CPPFLAGS+=-I$(SRC_PATH)/slirp
119 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
120 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
121 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
122 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
123 endif
124
125 cocoa.o: cocoa.m
126         $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
127
128 sdl.o: sdl.c keymaps.c sdl_keysym.h
129         $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
130
131 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
132         $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
133
134 curses.o: curses.c keymaps.c curses_keys.h
135         $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
136
137 audio/sdlaudio.o: audio/sdlaudio.c
138         $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
139
140 libqemu_common.a: $(OBJS)
141         rm -f $@ 
142         $(AR) rcs $@ $(OBJS)
143
144 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
145 ifdef CONFIG_WIN32
146 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
147 else
148 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
149 endif
150
151 ######################################################################
152
153 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
154         $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
155
156 qemu-img-%.o: %.c
157         $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
158
159 %.o: %.c
160         $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
161
162 # dyngen host tool
163 dyngen$(EXESUF): dyngen.c
164         $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
165
166 clean:
167 # avoid old build problems by removing potentially incorrect old files
168         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
169         rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
170         rm -rf dyngen.dSYM
171         rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
172         $(MAKE) -C tests clean
173         for d in $(TARGET_DIRS); do \
174         $(MAKE) -C $$d $@ || exit 1 ; \
175         done
176
177 distclean: clean
178         rm -f config-host.mak config-host.h $(DOCS)
179         rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
180         for d in $(TARGET_DIRS); do \
181         rm -rf $$d || exit 1 ; \
182         done
183
184 KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
185 ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
186 common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
187
188 install-doc: $(DOCS)
189         mkdir -p "$(DESTDIR)$(docdir)"
190         $(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
191 ifndef CONFIG_WIN32
192         mkdir -p "$(DESTDIR)$(mandir)/man1"
193         $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
194 endif
195
196 install: all $(if $(BUILD_DOCS),install-doc)
197         mkdir -p "$(DESTDIR)$(bindir)"
198 ifneq ($(TOOLS),)
199         $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
200 endif
201         mkdir -p "$(DESTDIR)$(datadir)"
202         set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
203                 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
204                 pxe-rtl8139.bin pxe-pcnet.bin; do \
205                 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
206         done
207 ifndef CONFIG_WIN32
208         mkdir -p "$(DESTDIR)$(datadir)/keymaps"
209         set -e; for x in $(KEYMAPS); do \
210                 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
211         done
212 endif
213         for d in $(TARGET_DIRS); do \
214         $(MAKE) -C $$d $@ || exit 1 ; \
215         done
216
217 # various test targets
218 test speed: all
219         $(MAKE) -C tests $@
220
221 TAGS:
222         etags *.[ch] tests/*.[ch]
223
224 cscope:
225         rm -f ./cscope.*
226         find . -name "*.[ch]" -print > ./cscope.files
227         cscope -b
228
229 # documentation
230 %.html: %.texi
231         texi2html -monolithic -number $<
232
233 %.info: %.texi
234         makeinfo $< -o $@
235
236 %.dvi: %.texi
237         texi2dvi $<
238
239 qemu.1: qemu-doc.texi
240         $(SRC_PATH)/texi2pod.pl $< qemu.pod
241         pod2man --section=1 --center=" " --release=" " qemu.pod > $@
242
243 qemu-img.1: qemu-img.texi
244         $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
245         pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
246
247 info: qemu-doc.info qemu-tech.info
248
249 dvi: qemu-doc.dvi qemu-tech.dvi
250
251 html: qemu-doc.html qemu-tech.html
252
253 VERSION ?= $(shell cat VERSION)
254 FILE = qemu-$(VERSION)
255
256 # tar release (use 'make -k tar' on a checkouted tree)
257 tar:
258         rm -rf /tmp/$(FILE)
259         cp -r . /tmp/$(FILE)
260         cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
261         rm -rf /tmp/$(FILE)
262
263 # generate a binary distribution
264 tarbin:
265         cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
266         $(bindir)/qemu \
267         $(bindir)/qemu-system-ppc \
268         $(bindir)/qemu-system-ppc64 \
269         $(bindir)/qemu-system-ppcemb \
270         $(bindir)/qemu-system-sparc \
271         $(bindir)/qemu-system-x86_64 \
272         $(bindir)/qemu-system-mips \
273         $(bindir)/qemu-system-mipsel \
274         $(bindir)/qemu-system-mips64 \
275         $(bindir)/qemu-system-mips64el \
276         $(bindir)/qemu-system-arm \
277         $(bindir)/qemu-system-m68k \
278         $(bindir)/qemu-system-sh4 \
279         $(bindir)/qemu-system-sh4eb \
280         $(bindir)/qemu-system-cris \
281         $(bindir)/qemu-i386 \
282         $(bindir)/qemu-x86_64 \
283         $(bindir)/qemu-arm \
284         $(bindir)/qemu-armeb \
285         $(bindir)/qemu-sparc \
286         $(bindir)/qemu-sparc32plus \
287         $(bindir)/qemu-sparc64 \
288         $(bindir)/qemu-ppc \
289         $(bindir)/qemu-ppc64 \
290         $(bindir)/qemu-ppc64abi32 \
291         $(bindir)/qemu-mips \
292         $(bindir)/qemu-mipsel \
293         $(bindir)/qemu-alpha \
294         $(bindir)/qemu-m68k \
295         $(bindir)/qemu-sh4 \
296         $(bindir)/qemu-sh4eb \
297         $(bindir)/qemu-cris \
298         $(bindir)/qemu-img \
299         $(datadir)/bios.bin \
300         $(datadir)/vgabios.bin \
301         $(datadir)/vgabios-cirrus.bin \
302         $(datadir)/ppc_rom.bin \
303         $(datadir)/video.x \
304         $(datadir)/openbios-sparc32 \
305         $(datadir)/openbios-sparc64 \
306         $(datadir)/pxe-ne2k_pci.bin \
307         $(datadir)/pxe-rtl8139.bin \
308         $(datadir)/pxe-pcnet.bin \
309         $(docdir)/qemu-doc.html \
310         $(docdir)/qemu-tech.html \
311         $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
312
313 # Include automatically generated dependency files
314 -include $(wildcard *.d audio/*.d slirp/*.d)