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