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