add "xchg ax, reg" emulator test
[qemu-kvm/amd-iommu.git] / Makefile
blob61b2d767a81e5e2b1aeb5f149725af7ab551713e
1 # Makefile for QEMU.
3 GENERATED_HEADERS = config-host.h
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: $(SRC_PATH)/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
19 # Don't try to regenerate Makefile or configure
20 # We don't generate any of them
21 Makefile: ;
22 configure: ;
24 .PHONY: all clean cscope distclean dvi html info install install-doc \
25 pdf recurse-all speed tar tarbin test build-all
27 $(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
29 LIBS+=-lz $(LIBS_TOOLS)
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
37 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
38 SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
40 config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
41 $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@")
43 %/config-devices.mak: default-configs/%.mak
44 $(call quiet-command,cat $< > $@.tmp, " GEN $@")
45 @if test -f $@; then \
46 if cmp -s $@.old $@ || cmp -s $@ $@.tmp; then \
47 mv $@.tmp $@; \
48 cp -p $@ $@.old; \
49 else \
50 if test -f $@.old; then \
51 echo "WARNING: $@ (user modified) out of date.";\
52 else \
53 echo "WARNING: $@ out of date.";\
54 fi; \
55 echo "Run \"make defconfig\" to regenerate."; \
56 rm $@.tmp; \
57 fi; \
58 else \
59 mv $@.tmp $@; \
60 cp -p $@ $@.old; \
63 defconfig:
64 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
66 -include config-all-devices.mak
68 build-all: $(DOCS) $(TOOLS) recurse-all
70 config-host.h: config-host.h-timestamp
71 config-host.h-timestamp: config-host.mak
73 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
75 ifeq ($(KVM_KMOD),yes)
77 .PHONEY: kvm-kmod
79 all: kvm-kmod
81 kvm-kmod:
82 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C kvm/kernel V="$(V)" )
85 endif
87 subdir-%: $(GENERATED_HEADERS)
88 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
90 ifneq ($(wildcard config-host.mak),)
91 include $(SRC_PATH)/Makefile.objs
92 endif
94 $(common-obj-y): $(GENERATED_HEADERS)
95 $(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
97 $(filter %-user,$(SUBDIR_RULES)): $(GENERATED_HEADERS) subdir-libuser
99 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
100 romsubdir-%:
101 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
103 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
105 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
107 audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
109 QEMU_CFLAGS+=$(CURL_CFLAGS)
111 cocoa.o: cocoa.m
113 keymaps.o: keymaps.c keymaps.h
115 sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
117 sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
119 sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
121 acl.o: acl.h acl.c
123 vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
125 vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
127 vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
129 vnc-tls.o: vnc-tls.c vnc.h
131 vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
133 vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
135 curses.o: curses.c keymaps.h curses_keys.h
137 bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
139 ######################################################################
141 qemu-img.o: qemu-img-cmds.h
142 qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o: $(GENERATED_HEADERS)
144 qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
146 qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
148 qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
150 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
151 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@")
153 check-qint: check-qint.o qint.o qemu-malloc.o
154 check-qstring: check-qstring.o qstring.o qemu-malloc.o
155 check-qdict: check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
156 check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
157 check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
158 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
160 clean:
161 # avoid old build problems by removing potentially incorrect old files
162 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
163 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
164 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d
165 rm -f qemu-img-cmds.h
166 $(MAKE) -C tests clean
167 for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
168 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
169 done
171 distclean: clean
172 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
173 rm -f config-all-devices.mak
174 rm -f roms/seabios/config.mak roms/vgabios/config.mak
175 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pdf,pg,toc,tp,vr}
176 for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
177 rm -rf $$d || exit 1 ; \
178 done
180 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
181 ar de en-us fi fr-be hr it lv nl pl ru th \
182 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
184 ifdef INSTALL_BLOBS
185 BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
186 video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
187 gpxe-eepro100-80861209.rom \
188 gpxe-eepro100-80861229.rom \
189 pxe-e1000.bin \
190 pxe-ne2k_pci.bin pxe-pcnet.bin \
191 pxe-rtl8139.bin pxe-virtio.bin \
192 bamboo.dtb petalogix-s3adsp1800.dtb \
193 multiboot.bin linuxboot.bin
194 BLOBS += extboot.bin
195 BLOBS += vapic.bin
196 else
197 BLOBS=
198 endif
200 install-doc: $(DOCS)
201 $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
202 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
203 ifdef CONFIG_POSIX
204 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
205 $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
206 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
207 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
208 endif
210 install-sysconfig:
211 $(INSTALL_DIR) "$(DESTDIR)$(sysconfdir)/qemu"
212 $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(sysconfdir)/qemu"
214 install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig
215 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
216 ifneq ($(TOOLS),)
217 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
218 endif
219 ifneq ($(BLOBS),)
220 $(INSTALL_DIR) "$(DESTDIR)$(datadir)"
221 set -e; for x in $(BLOBS); do \
222 if [ -f $(SRC_PATH)/pc-bios/$$x ];then \
223 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
224 fi \
225 ; if [ -f pc-bios/optionrom/$$x ];then \
226 $(INSTALL_DATA) pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \
227 fi \
228 done
229 endif
230 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
231 set -e; for x in $(KEYMAPS); do \
232 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
233 done
234 for d in $(TARGET_DIRS); do \
235 $(MAKE) -C $$d $@ || exit 1 ; \
236 done
237 ifeq ($(KVM_KMOD),yes)
238 $(MAKE) -C kvm/kernel $@
239 endif
241 # various test targets
242 test speed: all
243 $(MAKE) -C tests $@
245 .PHONY: TAGS
246 TAGS:
247 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
249 cscope:
250 rm -f ./cscope.*
251 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
252 cscope -b
254 # documentation
255 MAKEINFO=makeinfo
256 MAKEINFOFLAGS=--no-headers --no-split --number-sections
257 TEXIFLAG=$(if $(V),,--quiet)
258 %.dvi: %.texi
259 $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@")
261 %.html: %.texi
262 $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
263 " GEN $@")
265 %.info: %.texi
266 $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@")
268 %.pdf: %.texi
269 $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@")
271 qemu-options.texi: $(SRC_PATH)/qemu-options.hx
272 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
274 qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
275 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
277 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
278 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
280 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
281 $(call quiet-command, \
282 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
283 pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
284 " GEN $@")
286 qemu-img.1: qemu-img.texi qemu-img-cmds.texi
287 $(call quiet-command, \
288 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
289 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
290 " GEN $@")
292 qemu-nbd.8: qemu-nbd.texi
293 $(call quiet-command, \
294 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
295 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
296 " GEN $@")
298 dvi: qemu-doc.dvi qemu-tech.dvi
299 html: qemu-doc.html qemu-tech.html
300 info: qemu-doc.info qemu-tech.info
301 pdf: qemu-doc.pdf qemu-tech.pdf
303 qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
304 qemu-img.texi qemu-nbd.texi qemu-options.texi \
305 qemu-monitor.texi qemu-img-cmds.texi
307 VERSION ?= $(shell cat VERSION)
308 FILE = qemu-$(VERSION)
310 # tar release (use 'make -k tar' on a checkouted tree)
311 tar:
312 rm -rf /tmp/$(FILE)
313 cp -r . /tmp/$(FILE)
314 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
315 rm -rf /tmp/$(FILE)
317 # generate a binary distribution
318 tarbin:
319 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
320 $(bindir)/qemu \
321 $(bindir)/qemu-system-x86_64 \
322 $(bindir)/qemu-system-arm \
323 $(bindir)/qemu-system-cris \
324 $(bindir)/qemu-system-m68k \
325 $(bindir)/qemu-system-microblaze \
326 $(bindir)/qemu-system-mips \
327 $(bindir)/qemu-system-mipsel \
328 $(bindir)/qemu-system-mips64 \
329 $(bindir)/qemu-system-mips64el \
330 $(bindir)/qemu-system-ppc \
331 $(bindir)/qemu-system-ppcemb \
332 $(bindir)/qemu-system-ppc64 \
333 $(bindir)/qemu-system-sh4 \
334 $(bindir)/qemu-system-sh4eb \
335 $(bindir)/qemu-system-sparc \
336 $(bindir)/qemu-i386 \
337 $(bindir)/qemu-x86_64 \
338 $(bindir)/qemu-alpha \
339 $(bindir)/qemu-arm \
340 $(bindir)/qemu-armeb \
341 $(bindir)/qemu-cris \
342 $(bindir)/qemu-m68k \
343 $(bindir)/qemu-microblaze \
344 $(bindir)/qemu-mips \
345 $(bindir)/qemu-mipsel \
346 $(bindir)/qemu-ppc \
347 $(bindir)/qemu-ppc64 \
348 $(bindir)/qemu-ppc64abi32 \
349 $(bindir)/qemu-sh4 \
350 $(bindir)/qemu-sh4eb \
351 $(bindir)/qemu-sparc \
352 $(bindir)/qemu-sparc64 \
353 $(bindir)/qemu-sparc32plus \
354 $(bindir)/qemu-img \
355 $(bindir)/qemu-nbd \
356 $(datadir)/bios.bin \
357 $(datadir)/vgabios.bin \
358 $(datadir)/vgabios-cirrus.bin \
359 $(datadir)/ppc_rom.bin \
360 $(datadir)/video.x \
361 $(datadir)/openbios-sparc32 \
362 $(datadir)/openbios-sparc64 \
363 $(datadir)/openbios-ppc \
364 $(datadir)/pxe-ne2k_pci.bin \
365 $(datadir)/pxe-rtl8139.bin \
366 $(datadir)/pxe-pcnet.bin \
367 $(datadir)/pxe-e1000.bin \
368 $(datadir)/extboot.bin \
369 $(docdir)/qemu-doc.html \
370 $(docdir)/qemu-tech.html \
371 $(mandir)/man1/qemu.1 \
372 $(mandir)/man1/qemu-img.1 \
373 $(mandir)/man8/qemu-nbd.8
375 # Include automatically generated dependency files
376 -include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)