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