qemu-nbd tool (Anthony Liguori)
[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 qemu-nbd.8
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 lm832x.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 qemu-nbd$(EXESUF):  qemu-nbd.o nbd.o qemu-img-block.o \
163                     $(QEMU_IMG_BLOCK_OBJS)
164         $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
165
166 # dyngen host tool
167 dyngen$(EXESUF): dyngen.c
168         $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
169
170 clean:
171 # avoid old build problems by removing potentially incorrect old files
172         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
173         rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
174         rm -rf dyngen.dSYM
175         rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
176         $(MAKE) -C tests clean
177         for d in $(TARGET_DIRS); do \
178         $(MAKE) -C $$d $@ || exit 1 ; \
179         done
180
181 distclean: clean
182         rm -f config-host.mak config-host.h $(DOCS)
183         rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
184         for d in $(TARGET_DIRS); do \
185         rm -rf $$d || exit 1 ; \
186         done
187
188 KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
189 ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
190 common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
191
192 install-doc: $(DOCS)
193         mkdir -p "$(DESTDIR)$(docdir)"
194         $(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
195 ifndef CONFIG_WIN32
196         mkdir -p "$(DESTDIR)$(mandir)/man1"
197         $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
198         mkdir -p "$(DESTDIR)$(mandir)/man8"
199         $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
200 endif
201
202 install: all $(if $(BUILD_DOCS),install-doc)
203         mkdir -p "$(DESTDIR)$(bindir)"
204 ifneq ($(TOOLS),)
205         $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
206 endif
207         mkdir -p "$(DESTDIR)$(datadir)"
208         set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
209                 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
210                 pxe-rtl8139.bin pxe-pcnet.bin; do \
211                 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
212         done
213 ifndef CONFIG_WIN32
214         mkdir -p "$(DESTDIR)$(datadir)/keymaps"
215         set -e; for x in $(KEYMAPS); do \
216                 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
217         done
218 endif
219         for d in $(TARGET_DIRS); do \
220         $(MAKE) -C $$d $@ || exit 1 ; \
221         done
222
223 # various test targets
224 test speed: all
225         $(MAKE) -C tests $@
226
227 TAGS:
228         etags *.[ch] tests/*.[ch]
229
230 cscope:
231         rm -f ./cscope.*
232         find . -name "*.[ch]" -print > ./cscope.files
233         cscope -b
234
235 # documentation
236 %.html: %.texi
237         texi2html -monolithic -number $<
238
239 %.info: %.texi
240         makeinfo $< -o $@
241
242 %.dvi: %.texi
243         texi2dvi $<
244
245 qemu.1: qemu-doc.texi
246         $(SRC_PATH)/texi2pod.pl $< qemu.pod
247         pod2man --section=1 --center=" " --release=" " qemu.pod > $@
248
249 qemu-img.1: qemu-img.texi
250         $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
251         pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
252
253 qemu-nbd.8: qemu-nbd.texi
254         $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
255         pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
256
257 info: qemu-doc.info qemu-tech.info
258
259 dvi: qemu-doc.dvi qemu-tech.dvi
260
261 html: qemu-doc.html qemu-tech.html
262
263 VERSION ?= $(shell cat VERSION)
264 FILE = qemu-$(VERSION)
265
266 # tar release (use 'make -k tar' on a checkouted tree)
267 tar:
268         rm -rf /tmp/$(FILE)
269         cp -r . /tmp/$(FILE)
270         cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
271         rm -rf /tmp/$(FILE)
272
273 # generate a binary distribution
274 tarbin:
275         cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
276         $(bindir)/qemu \
277         $(bindir)/qemu-system-ppc \
278         $(bindir)/qemu-system-ppc64 \
279         $(bindir)/qemu-system-ppcemb \
280         $(bindir)/qemu-system-sparc \
281         $(bindir)/qemu-system-x86_64 \
282         $(bindir)/qemu-system-mips \
283         $(bindir)/qemu-system-mipsel \
284         $(bindir)/qemu-system-mips64 \
285         $(bindir)/qemu-system-mips64el \
286         $(bindir)/qemu-system-arm \
287         $(bindir)/qemu-system-m68k \
288         $(bindir)/qemu-system-sh4 \
289         $(bindir)/qemu-system-sh4eb \
290         $(bindir)/qemu-system-cris \
291         $(bindir)/qemu-i386 \
292         $(bindir)/qemu-x86_64 \
293         $(bindir)/qemu-arm \
294         $(bindir)/qemu-armeb \
295         $(bindir)/qemu-sparc \
296         $(bindir)/qemu-sparc32plus \
297         $(bindir)/qemu-sparc64 \
298         $(bindir)/qemu-ppc \
299         $(bindir)/qemu-ppc64 \
300         $(bindir)/qemu-ppc64abi32 \
301         $(bindir)/qemu-mips \
302         $(bindir)/qemu-mipsel \
303         $(bindir)/qemu-alpha \
304         $(bindir)/qemu-m68k \
305         $(bindir)/qemu-sh4 \
306         $(bindir)/qemu-sh4eb \
307         $(bindir)/qemu-cris \
308         $(bindir)/qemu-img \
309         $(bindir)/qemu-nbd \
310         $(datadir)/bios.bin \
311         $(datadir)/vgabios.bin \
312         $(datadir)/vgabios-cirrus.bin \
313         $(datadir)/ppc_rom.bin \
314         $(datadir)/video.x \
315         $(datadir)/openbios-sparc32 \
316         $(datadir)/openbios-sparc64 \
317         $(datadir)/pxe-ne2k_pci.bin \
318         $(datadir)/pxe-rtl8139.bin \
319         $(datadir)/pxe-pcnet.bin \
320         $(docdir)/qemu-doc.html \
321         $(docdir)/qemu-tech.html \
322         $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
323         $(mandir)/man8/qemu-nbd.8
324
325 # Include automatically generated dependency files
326 -include $(wildcard *.d audio/*.d slirp/*.d)