]> git.proxmox.com Git - qemu.git/blob - Makefile
Use vpath directive
[qemu.git] / Makefile
1 # Makefile for QEMU.
2
3 GENERATED_HEADERS = config-host.h
4
5 ifneq ($(wildcard config-host.mak),)
6 # Put the all: rule here so that config-host.mak can contain dependencies.
7 all: build-all
8 include config-host.mak
9 include $(SRC_PATH)/rules.mak
10 config-host.mak: configure
11 @echo $@ is out-of-date, running configure
12 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
13 else
14 config-host.mak:
15 @echo "Please call configure before running make!"
16 @exit 1
17 endif
18
19 # Don't try to regenerate Makefile or configure
20 # We don't generate any of them
21 Makefile: ;
22 configure: ;
23
24 .PHONY: all clean cscope distclean dvi html info install install-doc \
25 recurse-all speed tar tarbin test build-all
26
27 $(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
28
29 LIBS+=-lz $(LIBS_TOOLS)
30
31 ifdef BUILD_DOCS
32 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
33 else
34 DOCS=
35 endif
36
37 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
38 SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
39
40 config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
41 $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@")
42
43 %/config-devices.mak: default-configs/%.mak
44 $(call quiet-command,cat $< > $@.tmp, " GEN $@")
45 @if test -f $@ ; then \
46 echo "WARNING: $@ out of date." ;\
47 echo "Run \"make defconfig\" to regenerate." ; \
48 rm $@.tmp ; \
49 else \
50 mv $@.tmp $@ ; \
51 fi
52
53 defconfig:
54 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
55
56 -include config-all-devices.mak
57
58 build-all: $(DOCS) $(TOOLS) recurse-all
59
60 config-host.h: config-host.h-timestamp
61 config-host.h-timestamp: config-host.mak
62
63 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
64
65 subdir-%: $(GENERATED_HEADERS)
66 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
67
68 include $(SRC_PATH)/Makefile.objs
69
70 $(common-obj-y): $(GENERATED_HEADERS)
71 $(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
72
73 $(filter %-user,$(SUBDIR_RULES)): libuser.a
74
75 libuser.a: $(GENERATED_HEADERS)
76 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="libuser/" all,)
77
78 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
79 romsubdir-%:
80 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
81
82 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
83
84 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
85
86 audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
87
88 QEMU_CFLAGS+=$(CURL_CFLAGS)
89
90 cocoa.o: cocoa.m
91
92 keymaps.o: keymaps.c keymaps.h
93
94 sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
95
96 sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
97
98 sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
99
100 acl.o: acl.h acl.c
101
102 vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
103
104 vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
105
106 vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
107
108 vnc-tls.o: vnc-tls.c vnc.h
109
110 vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
111
112 vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
113
114 curses.o: curses.c keymaps.h curses_keys.h
115
116 bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
117
118 ######################################################################
119
120 qemu-img.o: qemu-img-cmds.h
121
122 obj-y = qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
123
124 qemu-img$(EXESUF): $(obj-y)
125
126 obj-y = qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
127 $(obj-y): $(GENERATED_HEADERS)
128
129 qemu-nbd$(EXESUF): $(obj-y)
130
131 obj-y = qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
132 $(obj-y): $(GENERATED_HEADERS)
133
134 qemu-io$(EXESUF): $(obj-y)
135
136 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
137 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@")
138
139 check-qint: check-qint.o qint.o qemu-malloc.o
140 check-qstring: check-qstring.o qstring.o qemu-malloc.o
141 check-qdict: check-qdict.o qdict.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
142 check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
143 check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
144 check-qjson: check-qjson.o qfloat.o qint.o qdict.o qstring.o qlist.o qbool.o qjson.o json-streamer.o json-lexer.o json-parser.o qemu-malloc.o
145
146 clean:
147 # avoid old build problems by removing potentially incorrect old files
148 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
149 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
150 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d
151 rm -f qemu-img-cmds.h
152 $(MAKE) -C tests clean
153 for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
154 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
155 done
156
157 distclean: clean
158 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
159 rm -f config-all-devices.mak
160 rm -f roms/seabios/config.mak roms/vgabios/config.mak
161 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
162 for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
163 rm -rf $$d || exit 1 ; \
164 done
165
166 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
167 ar de en-us fi fr-be hr it lv nl pl ru th \
168 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
169
170 ifdef INSTALL_BLOBS
171 BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
172 video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
173 pxe-e1000.bin pxe-i82559er.bin \
174 pxe-ne2k_pci.bin pxe-pcnet.bin \
175 pxe-rtl8139.bin pxe-virtio.bin \
176 bamboo.dtb petalogix-s3adsp1800.dtb \
177 multiboot.bin linuxboot.bin
178 else
179 BLOBS=
180 endif
181
182 install-doc: $(DOCS)
183 $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
184 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
185 ifdef CONFIG_POSIX
186 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
187 $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
188 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
189 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
190 endif
191
192 install: all $(if $(BUILD_DOCS),install-doc)
193 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
194 ifneq ($(TOOLS),)
195 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
196 endif
197 ifneq ($(BLOBS),)
198 $(INSTALL_DIR) "$(DESTDIR)$(datadir)"
199 set -e; for x in $(BLOBS); do \
200 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
201 done
202 endif
203 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
204 set -e; for x in $(KEYMAPS); do \
205 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
206 done
207 for d in $(TARGET_DIRS); do \
208 $(MAKE) -C $$d $@ || exit 1 ; \
209 done
210
211 # various test targets
212 test speed: all
213 $(MAKE) -C tests $@
214
215 .PHONY: TAGS
216 TAGS:
217 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
218
219 cscope:
220 rm -f ./cscope.*
221 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
222 cscope -b
223
224 # documentation
225 %.html: %.texi
226 $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@")
227
228 %.info: %.texi
229 $(call quiet-command,makeinfo -I . $< -o $@," GEN $@")
230
231 %.dvi: %.texi
232 $(call quiet-command,texi2dvi -I . $<," GEN $@")
233
234 qemu-options.texi: $(SRC_PATH)/qemu-options.hx
235 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
236
237 qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
238 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
239
240 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
241 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
242
243 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
244 $(call quiet-command, \
245 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
246 pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
247 " GEN $@")
248
249 qemu-img.1: qemu-img.texi qemu-img-cmds.texi
250 $(call quiet-command, \
251 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
252 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
253 " GEN $@")
254
255 qemu-nbd.8: qemu-nbd.texi
256 $(call quiet-command, \
257 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
258 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
259 " GEN $@")
260
261 info: qemu-doc.info qemu-tech.info
262
263 dvi: qemu-doc.dvi qemu-tech.dvi
264
265 html: qemu-doc.html qemu-tech.html
266
267 qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
268
269 VERSION ?= $(shell cat VERSION)
270 FILE = qemu-$(VERSION)
271
272 # tar release (use 'make -k tar' on a checkouted tree)
273 tar:
274 rm -rf /tmp/$(FILE)
275 cp -r . /tmp/$(FILE)
276 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
277 rm -rf /tmp/$(FILE)
278
279 # generate a binary distribution
280 tarbin:
281 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
282 $(bindir)/qemu \
283 $(bindir)/qemu-system-x86_64 \
284 $(bindir)/qemu-system-arm \
285 $(bindir)/qemu-system-cris \
286 $(bindir)/qemu-system-m68k \
287 $(bindir)/qemu-system-microblaze \
288 $(bindir)/qemu-system-mips \
289 $(bindir)/qemu-system-mipsel \
290 $(bindir)/qemu-system-mips64 \
291 $(bindir)/qemu-system-mips64el \
292 $(bindir)/qemu-system-ppc \
293 $(bindir)/qemu-system-ppcemb \
294 $(bindir)/qemu-system-ppc64 \
295 $(bindir)/qemu-system-sh4 \
296 $(bindir)/qemu-system-sh4eb \
297 $(bindir)/qemu-system-sparc \
298 $(bindir)/qemu-i386 \
299 $(bindir)/qemu-x86_64 \
300 $(bindir)/qemu-alpha \
301 $(bindir)/qemu-arm \
302 $(bindir)/qemu-armeb \
303 $(bindir)/qemu-cris \
304 $(bindir)/qemu-m68k \
305 $(bindir)/qemu-microblaze \
306 $(bindir)/qemu-mips \
307 $(bindir)/qemu-mipsel \
308 $(bindir)/qemu-ppc \
309 $(bindir)/qemu-ppc64 \
310 $(bindir)/qemu-ppc64abi32 \
311 $(bindir)/qemu-sh4 \
312 $(bindir)/qemu-sh4eb \
313 $(bindir)/qemu-sparc \
314 $(bindir)/qemu-sparc64 \
315 $(bindir)/qemu-sparc32plus \
316 $(bindir)/qemu-img \
317 $(bindir)/qemu-nbd \
318 $(datadir)/bios.bin \
319 $(datadir)/vgabios.bin \
320 $(datadir)/vgabios-cirrus.bin \
321 $(datadir)/ppc_rom.bin \
322 $(datadir)/video.x \
323 $(datadir)/openbios-sparc32 \
324 $(datadir)/openbios-sparc64 \
325 $(datadir)/openbios-ppc \
326 $(datadir)/pxe-ne2k_pci.bin \
327 $(datadir)/pxe-rtl8139.bin \
328 $(datadir)/pxe-pcnet.bin \
329 $(datadir)/pxe-e1000.bin \
330 $(docdir)/qemu-doc.html \
331 $(docdir)/qemu-tech.html \
332 $(mandir)/man1/qemu.1 \
333 $(mandir)/man1/qemu-img.1 \
334 $(mandir)/man8/qemu-nbd.8
335
336 # Include automatically generated dependency files
337 -include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)