]> git.proxmox.com Git - qemu.git/blame - Makefile
oss: workaround for cases when OSS_GETVERSION is not defined
[qemu.git] / Makefile
CommitLineData
0cb3fb1e
PB
1# Makefile for QEMU.
2
a992fe3d 3GENERATED_HEADERS = config-host.h
f527c579 4
55d7e8f6 5ifneq ($(wildcard config-host.mak),)
1ad2134f
PB
6# Put the all: rule here so that config-host.mak can contain dependencies.
7all: build-all
ad064840 8include config-host.mak
17759187 9include $(SRC_PATH)/rules.mak
e5efe7f5
JQ
10config-host.mak: configure
11 @echo $@ is out-of-date, running configure
12 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
55d7e8f6
AJ
13else
14config-host.mak:
15 @echo "Please call configure before running make!"
16 @exit 1
17endif
766a487a 18
d9ace8b3
JQ
19# Don't try to regenerate Makefile or configure
20# We don't generate any of them
21Makefile: ;
22configure: ;
23
818220f5 24.PHONY: all clean cscope distclean dvi html info install install-doc \
9c927650 25 recurse-all speed tar tarbin test build-all
0cb3fb1e 26
8c462f8f
PB
27VPATH=$(SRC_PATH):$(SRC_PATH)/hw
28
3e2e0e6b 29LIBS+=-lz $(LIBS_TOOLS)
67c0f08d 30
cc8ae6de 31ifdef BUILD_DOCS
7a5ca864 32DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
cc8ae6de
PB
33else
34DOCS=
35endif
aa05ae6f 36
1215c6e7 37SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
1f3d3c8f
JQ
38SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
39
40config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
01d86a85 41 $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@")
1f3d3c8f 42
a992fe3d
PB
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." ;\
63e86b2e 47 echo "Run \"make defconfig\" to regenerate." ; \
a992fe3d
PB
48 rm $@.tmp ; \
49 else \
50 mv $@.tmp $@ ; \
51 fi
52
53defconfig:
54 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
55
1f3d3c8f 56-include config-all-devices.mak
1215c6e7 57
f527c579 58build-all: $(DOCS) $(TOOLS) recurse-all
b9dea4fb 59
1215c6e7
JQ
60config-host.h: config-host.h-timestamp
61config-host.h-timestamp: config-host.mak
62
cec7d0b6
PB
63SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
64
f527c579 65subdir-%: $(GENERATED_HEADERS)
0087375e 66 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
4aa42531 67
0e8c9214
AF
68include $(SRC_PATH)/Makefile.objs
69
70$(common-obj-y): $(GENERATED_HEADERS)
71$(filter %-softmmu,$(SUBDIR_RULES)): $(common-obj-y)
c05ac895 72
add16157
BS
73$(filter %-user,$(SUBDIR_RULES)): libuser.a
74
c1bb0dce 75libuser.a: $(GENERATED_HEADERS)
6a8a2803 76 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="libuser/" all,)
add16157 77
c05ac895
PB
78ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
79romsubdir-%:
80 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
81
82ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
83
84recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
83f64091 85
98b068a9 86audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
0e22fd2f 87
a558ee17 88QEMU_CFLAGS+=$(CURL_CFLAGS)
769ce76d 89
4fb240a4 90cocoa.o: cocoa.m
4fb240a4 91
0483755a
AL
92keymaps.o: keymaps.c keymaps.h
93
c18a2c36
SS
94sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
95
96sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
807544e2 97
a558ee17 98sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
4fb240a4 99
76655d6d
AL
100acl.o: acl.h acl.c
101
2f9606b3 102vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
5fb6c7a8 103
76655d6d 104vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
4fb240a4 105
a558ee17 106vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
4d3b6f6e 107
5fb6c7a8
AL
108vnc-tls.o: vnc-tls.c vnc.h
109
110vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
111
2f9606b3
AL
112vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
113
0483755a 114curses.o: curses.c keymaps.h curses_keys.h
fb599c9a 115
a558ee17 116bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
4fb240a4 117
4fb240a4
FB
118######################################################################
119
a73e8e43 120qemu-img.o: qemu-img-cmds.h
153859be 121
0e8c9214
AF
122obj-y = qemu-img.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
123
124qemu-img$(EXESUF): $(obj-y)
125
126obj-y = qemu-nbd.o qemu-tool.o $(block-obj-y) $(qobject-obj-y)
127$(obj-y): $(GENERATED_HEADERS)
128
129qemu-nbd$(EXESUF): $(obj-y)
4fb240a4 130
0e8c9214
AF
131obj-y = qemu-io.o qemu-tool.o cmd.o $(block-obj-y) $(qobject-obj-y)
132$(obj-y): $(GENERATED_HEADERS)
3aa892d7 133
0e8c9214 134qemu-io$(EXESUF): $(obj-y)
0a8e1acd 135
153859be
SB
136qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
137 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@")
138
33837ba6 139check-qint: check-qint.o qint.o qemu-malloc.o
5de65a07 140check-qstring: check-qstring.o qstring.o qemu-malloc.o
f2e17508 141check-qdict: check-qdict.o qdict.o qint.o qstring.o qbool.o qemu-malloc.o qlist.o
3aa3dcff 142check-qlist: check-qlist.o qlist.o qint.o qemu-malloc.o
9c9efb6b 143check-qfloat: check-qfloat.o qfloat.o qemu-malloc.o
422c46a8 144check-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
33837ba6 145
31e31b8a 146clean:
2d80ae89 147# avoid old build problems by removing potentially incorrect old files
25be210f 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
86e840ee 149 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
e1144d00 150 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d
07b44ce9 151 rm -f qemu-img-cmds.h
7d3505c5 152 $(MAKE) -C tests clean
add16157 153 for d in $(ALL_SUBDIRS) libhw32 libhw64 libuser; do \
fc8e320e 154 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
626df76a 155 done
31e31b8a 156
7d13299d 157distclean: clean
fc8e320e 158 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
a992fe3d 159 rm -f config-all-devices.mak
fc8e320e 160 rm -f roms/seabios/config.mak roms/vgabios/config.mak
0cb3fb1e 161 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
add16157 162 for d in $(TARGET_DIRS) libhw32 libhw64 libuser; do \
bc1b050d 163 rm -rf $$d || exit 1 ; \
76bc6838 164 done
7d13299d 165
fed4a9ad
FB
166KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
167ar de en-us fi fr-be hr it lv nl pl ru th \
168common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
169
77755340
TS
170ifdef INSTALL_BLOBS
171BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
e5d01b06 172video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
88e2b0a5
SW
173pxe-e1000.bin pxe-i82559er.bin \
174pxe-ne2k_pci.bin pxe-pcnet.bin \
175pxe-rtl8139.bin pxe-virtio.bin \
253d0942 176bamboo.dtb petalogix-s3adsp1800.dtb \
cfc6d90a 177multiboot.bin linuxboot.bin
77755340
TS
178else
179BLOBS=
180endif
181
38954dca 182install-doc: $(DOCS)
58f8aead
AL
183 $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
184 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
96d409eb 185ifdef CONFIG_POSIX
58f8aead
AL
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"
38954dca
PB
190endif
191
192install: all $(if $(BUILD_DOCS),install-doc)
58f8aead 193 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
932a79df 194ifneq ($(TOOLS),)
58f8aead 195 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
932a79df 196endif
77755340 197ifneq ($(BLOBS),)
58f8aead 198 $(INSTALL_DIR) "$(DESTDIR)$(datadir)"
77755340 199 set -e; for x in $(BLOBS); do \
58f8aead 200 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
ad064840 201 done
77755340 202endif
58f8aead 203 $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
18be8d77 204 set -e; for x in $(KEYMAPS); do \
79fd42aa 205 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
ad064840 206 done
626df76a 207 for d in $(TARGET_DIRS); do \
7d3505c5 208 $(MAKE) -C $$d $@ || exit 1 ; \
626df76a 209 done
612384d7 210
367e86e8 211# various test targets
9b0b8203 212test speed: all
7d3505c5 213 $(MAKE) -C tests $@
31e31b8a 214
21d4e8e3 215.PHONY: TAGS
5fafdf24 216TAGS:
21d4e8e3 217 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
31e31b8a 218
6688bc6d
FB
219cscope:
220 rm -f ./cscope.*
ede46085 221 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
6688bc6d
FB
222 cscope -b
223
3ef693a0 224# documentation
1f673135 225%.html: %.texi
0d00e563 226 $(call quiet-command,texi2html -I=. -monolithic -number $<," GEN $@")
3ef693a0 227
f3548328 228%.info: %.texi
0d00e563 229 $(call quiet-command,makeinfo -I . $< -o $@," GEN $@")
f3548328
FB
230
231%.dvi: %.texi
0d00e563 232 $(call quiet-command,texi2dvi -I . $<," GEN $@")
5824d651
BS
233
234qemu-options.texi: $(SRC_PATH)/qemu-options.hx
0d00e563 235 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
f3548328 236
2313086a
BS
237qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
238 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
239
153859be
SB
240qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
241 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
242
2313086a 243qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
0d00e563
AL
244 $(call quiet-command, \
245 perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
246 pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
247 " GEN $@")
5a67135a 248
153859be 249qemu-img.1: qemu-img.texi qemu-img-cmds.texi
0d00e563
AL
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 $@")
acd935ef 254
7a5ca864 255qemu-nbd.8: qemu-nbd.texi
0d00e563
AL
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 $@")
7a5ca864 260
0cb3fb1e
PB
261info: qemu-doc.info qemu-tech.info
262
263dvi: qemu-doc.dvi qemu-tech.dvi
264
265html: qemu-doc.html qemu-tech.html
266
153859be 267qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
818220f5 268
df5cf721
TS
269VERSION ?= $(shell cat VERSION)
270FILE = qemu-$(VERSION)
586314f2 271
1e43adfc 272# tar release (use 'make -k tar' on a checkouted tree)
586314f2
FB
273tar:
274 rm -rf /tmp/$(FILE)
1e43adfc 275 cp -r . /tmp/$(FILE)
99c6c082 276 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
586314f2
FB
277 rm -rf /tmp/$(FILE)
278
76b62fd0 279# generate a binary distribution
d691f669 280tarbin:
18be8d77 281 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
43095f31 282 $(bindir)/qemu \
43095f31 283 $(bindir)/qemu-system-x86_64 \
40e8a53b
AJ
284 $(bindir)/qemu-system-arm \
285 $(bindir)/qemu-system-cris \
286 $(bindir)/qemu-system-m68k \
bc6291a1 287 $(bindir)/qemu-system-microblaze \
93856aac 288 $(bindir)/qemu-system-mips \
38260998 289 $(bindir)/qemu-system-mipsel \
fbe4f65b
TS
290 $(bindir)/qemu-system-mips64 \
291 $(bindir)/qemu-system-mips64el \
40e8a53b
AJ
292 $(bindir)/qemu-system-ppc \
293 $(bindir)/qemu-system-ppcemb \
294 $(bindir)/qemu-system-ppc64 \
ff1aaf65 295 $(bindir)/qemu-system-sh4 \
85ffbdfc 296 $(bindir)/qemu-system-sh4eb \
40e8a53b 297 $(bindir)/qemu-system-sparc \
7efa4387 298 $(bindir)/qemu-i386 \
f0403c03 299 $(bindir)/qemu-x86_64 \
40e8a53b
AJ
300 $(bindir)/qemu-alpha \
301 $(bindir)/qemu-arm \
302 $(bindir)/qemu-armeb \
303 $(bindir)/qemu-cris \
304 $(bindir)/qemu-m68k \
bc6291a1 305 $(bindir)/qemu-microblaze \
40e8a53b
AJ
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 \
7efa4387
FB
318 $(datadir)/bios.bin \
319 $(datadir)/vgabios.bin \
de9258a8 320 $(datadir)/vgabios-cirrus.bin \
637f6cd7 321 $(datadir)/ppc_rom.bin \
d5295253 322 $(datadir)/video.x \
0986ac3b 323 $(datadir)/openbios-sparc32 \
938255d2 324 $(datadir)/openbios-sparc64 \
e5d01b06 325 $(datadir)/openbios-ppc \
40e8a53b 326 $(datadir)/pxe-ne2k_pci.bin \
19c80e50 327 $(datadir)/pxe-rtl8139.bin \
40e8a53b 328 $(datadir)/pxe-pcnet.bin \
2991990b 329 $(datadir)/pxe-e1000.bin \
1f50f8d1
FB
330 $(docdir)/qemu-doc.html \
331 $(docdir)/qemu-tech.html \
40e8a53b
AJ
332 $(mandir)/man1/qemu.1 \
333 $(mandir)/man1/qemu-img.1 \
7a5ca864 334 $(mandir)/man8/qemu-nbd.8
d691f669 335
4fb240a4 336# Include automatically generated dependency files
e1144d00 337-include $(wildcard *.d audio/*.d slirp/*.d block/*.d net/*.d)