]> git.proxmox.com Git - qemu.git/blob - Makefile
async file I/O API
[qemu.git] / 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 test2 html dvi info
7
8 CFLAGS=-Wall -O2 -g -fno-strict-aliasing -I.
9 ifdef CONFIG_DARWIN
10 CFLAGS+= -mdynamic-no-pic
11 endif
12 ifeq ($(ARCH),sparc)
13 CFLAGS+=-mcpu=ultrasparc
14 endif
15 LDFLAGS=-g
16 LIBS=
17 DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
18 TOOLS=qemu-img$(EXESUF)
19 ifdef CONFIG_STATIC
20 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 ifndef CONFIG_DARWIN
29 ifndef CONFIG_WIN32
30 ifndef CONFIG_SOLARIS
31 LIBS+=-lrt
32 endif
33 endif
34 endif
35
36 all: $(TOOLS) $(DOCS) recurse-all
37
38 subdir-%: dyngen$(EXESUF)
39 $(MAKE) -C $(subst subdir-,,$@) all
40
41 recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
42
43 qemu-img$(EXESUF): qemu-img.c block.c block-raw.c block-cow.c block-qcow.c aes.c block-vmdk.c block-cloop.c block-dmg.c block-bochs.c block-vpc.c block-vvfat.c
44 $(CC) -DQEMU_TOOL $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ -lz $(LIBS)
45
46 dyngen$(EXESUF): dyngen.c
47 $(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
48
49 clean:
50 # avoid old build problems by removing potentially incorrect old files
51 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
52 rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS *.pod *~ */*~
53 $(MAKE) -C tests clean
54 for d in $(TARGET_DIRS); do \
55 $(MAKE) -C $$d $@ || exit 1 ; \
56 done
57
58 distclean: clean
59 rm -f config-host.mak config-host.h $(DOCS)
60 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
61 for d in $(TARGET_DIRS); do \
62 rm -rf $$d || exit 1 ; \
63 done
64
65 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
66 ar de en-us fi fr-be hr it lv nl pl ru th \
67 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
68
69 install-doc: $(DOCS)
70 mkdir -p "$(DESTDIR)$(docdir)"
71 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
72 ifndef CONFIG_WIN32
73 mkdir -p "$(DESTDIR)$(mandir)/man1"
74 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
75 endif
76
77 install: all $(if $(BUILD_DOCS),install-doc)
78 mkdir -p "$(DESTDIR)$(bindir)"
79 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
80 mkdir -p "$(DESTDIR)$(datadir)"
81 for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
82 video.x openbios-sparc32 linux_boot.bin; do \
83 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
84 done
85 ifndef CONFIG_WIN32
86 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
87 for x in $(KEYMAPS); do \
88 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
89 done
90 endif
91 for d in $(TARGET_DIRS); do \
92 $(MAKE) -C $$d $@ || exit 1 ; \
93 done
94
95 # various test targets
96 test speed test2: all
97 $(MAKE) -C tests $@
98
99 TAGS:
100 etags *.[ch] tests/*.[ch]
101
102 cscope:
103 rm -f ./cscope.*
104 find . -name "*.[ch]" -print > ./cscope.files
105 cscope -b
106
107 # documentation
108 %.html: %.texi
109 texi2html -monolithic -number $<
110
111 %.info: %.texi
112 makeinfo $< -o $@
113
114 %.dvi: %.texi
115 texi2dvi $<
116
117 qemu.1: qemu-doc.texi
118 $(SRC_PATH)/texi2pod.pl $< qemu.pod
119 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
120
121 qemu-img.1: qemu-img.texi
122 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
123 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
124
125 info: qemu-doc.info qemu-tech.info
126
127 dvi: qemu-doc.dvi qemu-tech.dvi
128
129 html: qemu-doc.html qemu-tech.html
130
131 FILE=qemu-$(shell cat VERSION)
132
133 # tar release (use 'make -k tar' on a checkouted tree)
134 tar:
135 rm -rf /tmp/$(FILE)
136 cp -r . /tmp/$(FILE)
137 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
138 rm -rf /tmp/$(FILE)
139
140 # generate a binary distribution
141 tarbin:
142 ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
143 $(bindir)/qemu \
144 $(bindir)/qemu-system-ppc \
145 $(bindir)/qemu-system-sparc \
146 $(bindir)/qemu-system-x86_64 \
147 $(bindir)/qemu-system-mips \
148 $(bindir)/qemu-system-mipsel \
149 $(bindir)/qemu-system-arm \
150 $(bindir)/qemu-i386 \
151 $(bindir)/qemu-arm \
152 $(bindir)/qemu-armeb \
153 $(bindir)/qemu-sparc \
154 $(bindir)/qemu-ppc \
155 $(bindir)/qemu-mips \
156 $(bindir)/qemu-mipsel \
157 $(bindir)/qemu-img \
158 $(datadir)/bios.bin \
159 $(datadir)/vgabios.bin \
160 $(datadir)/vgabios-cirrus.bin \
161 $(datadir)/ppc_rom.bin \
162 $(datadir)/video.x \
163 $(datadir)/openbios-sparc32 \
164 $(datadir)/linux_boot.bin \
165 $(docdir)/qemu-doc.html \
166 $(docdir)/qemu-tech.html \
167 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
168
169 ifneq ($(wildcard .depend),)
170 include .depend
171 endif