stellaris: Removed SSI mux
[qemu-kvm.git] / Makefile
bloba9c22bf1d99a7bd50d6a2f97f1f0eba40ab6f467
1 # Makefile for QEMU.
3 # Always point to the root of the build tree (needs GNU make).
4 BUILD_DIR=$(CURDIR)
6 # All following code might depend on configuration variables
7 ifneq ($(wildcard config-host.mak),)
8 # Put the all: rule here so that config-host.mak can contain dependencies.
9 all:
10 include config-host.mak
11 include $(SRC_PATH)/rules.mak
12 config-host.mak: $(SRC_PATH)/configure
13 @echo $@ is out-of-date, running configure
14 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
15 else
16 config-host.mak:
17 @echo "Please call configure before running make!"
18 @exit 1
19 endif
21 GENERATED_HEADERS = config-host.h trace.h qemu-options.def
22 ifeq ($(TRACE_BACKEND),dtrace)
23 GENERATED_HEADERS += trace-dtrace.h
24 endif
25 GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h
26 GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c trace.c
28 # Don't try to regenerate Makefile or configure
29 # We don't generate any of them
30 Makefile: ;
31 configure: ;
33 .PHONY: all clean cscope distclean dvi html info install install-doc \
34 pdf recurse-all speed test dist
36 $(call set-vpath, $(SRC_PATH))
38 LIBS+=-lz $(LIBS_TOOLS)
40 HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
42 ifdef BUILD_DOCS
43 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 QMP/qmp-commands.txt
44 ifdef CONFIG_VIRTFS
45 DOCS+=fsdev/virtfs-proxy-helper.1
46 endif
47 else
48 DOCS=
49 endif
51 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
52 SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
53 SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %/config-devices.mak.d, $(TARGET_DIRS))
55 ifeq ($(SUBDIR_DEVICES_MAK),)
56 config-all-devices.mak:
57 $(call quiet-command,echo '# no devices' > $@," GEN $@")
58 else
59 config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
60 $(call quiet-command,cat $(SUBDIR_DEVICES_MAK) | grep =y | sort -u > $@," GEN $@")
61 endif
63 -include $(SUBDIR_DEVICES_MAK_DEP)
65 %/config-devices.mak: default-configs/%.mak
66 $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, " GEN $@")
67 @if test -f $@; then \
68 if cmp -s $@.old $@; then \
69 mv $@.tmp $@; \
70 cp -p $@ $@.old; \
71 else \
72 if test -f $@.old; then \
73 echo "WARNING: $@ (user modified) out of date.";\
74 else \
75 echo "WARNING: $@ out of date.";\
76 fi; \
77 echo "Run \"make defconfig\" to regenerate."; \
78 rm $@.tmp; \
79 fi; \
80 else \
81 mv $@.tmp $@; \
82 cp -p $@ $@.old; \
85 defconfig:
86 rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
88 -include config-all-devices.mak
90 all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all
92 config-host.h: config-host.h-timestamp
93 config-host.h-timestamp: config-host.mak
94 qemu-options.def: $(SRC_PATH)/qemu-options.hx
95 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
97 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
99 subdir-%:
100 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
102 ifneq ($(wildcard config-host.mak),)
103 include $(SRC_PATH)/Makefile.objs
104 endif
106 subdir-libcacard: $(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
108 $(filter %-softmmu,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y) subdir-libdis
110 $(filter %-user,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) subdir-libdis-user subdir-libuser
112 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
113 romsubdir-%:
114 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
116 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
118 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
120 audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
122 QEMU_CFLAGS+=$(CURL_CFLAGS)
124 QEMU_CFLAGS += -I$(SRC_PATH)/include
126 ui/cocoa.o: ui/cocoa.m
128 ui/sdl.o audio/sdlaudio.o ui/sdl_zoom.o hw/baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
130 ui/vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
132 bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
134 version.o: $(SRC_PATH)/version.rc config-host.h
135 $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@")
137 version-obj-$(CONFIG_WIN32) += version.o
138 ######################################################################
139 # Support building shared library libcacard
141 .PHONY: libcacard.la install-libcacard
142 ifeq ($(LIBTOOL),)
143 libcacard.la:
144 @echo "libtool is missing, please install and rerun configure"; exit 1
146 install-libcacard:
147 @echo "libtool is missing, please install and rerun configure"; exit 1
148 else
149 libcacard.la: $(oslib-obj-y) qemu-timer-common.o $(addsuffix .lo, $(basename $(trace-obj-y)))
150 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" libcacard.la,)
152 install-libcacard: libcacard.la
153 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libcacard V="$(V)" TARGET_DIR="$*/" install-libcacard,)
154 endif
156 ######################################################################
158 qemu-img.o: qemu-img-cmds.h
160 tools-obj-y = $(oslib-obj-y) $(trace-obj-y) qemu-tool.o qemu-timer.o \
161 qemu-timer-common.o main-loop.o notify.o \
162 iohandler.o cutils.o iov.o async.o
163 tools-obj-$(CONFIG_POSIX) += compatfd.o
165 qemu-img$(EXESUF): qemu-img.o $(tools-obj-y) $(block-obj-y) $(qapi-obj-y) \
166 qapi-visit.o qapi-types.o
167 qemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y) $(block-obj-y)
168 qemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y) $(block-obj-y)
170 qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o
172 vscclient$(EXESUF): $(libcacard-y) $(oslib-obj-y) $(trace-obj-y) $(tools-obj-y) qemu-timer-common.o libcacard/vscclient.o
173 $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(libcacard_libs) $(LIBS)," LINK $@")
175 fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y)
176 fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
178 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
179 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
181 qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
182 qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
184 gen-out-type = $(subst .,-,$(suffix $@))
186 ifneq ($(wildcard config-host.mak),)
187 include $(SRC_PATH)/tests/Makefile
188 endif
190 qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
192 qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
193 $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
194 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
195 qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
196 $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
197 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
198 qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
199 $(SRC_PATH)/qapi-schema-guest.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
200 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
202 qapi-types.c qapi-types.h :\
203 $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
204 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." < $<, " GEN $@")
205 qapi-visit.c qapi-visit.h :\
206 $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
207 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." < $<, " GEN $@")
208 qmp-commands.h qmp-marshal.c :\
209 $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
210 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " GEN $@")
212 QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
213 $(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
215 qemu-ga$(EXESUF): qemu-ga.o $(qga-obj-y) $(tools-obj-y) $(qapi-obj-y) $(qobject-obj-y) $(version-obj-y)
217 QEMULIBS=libuser libdis libdis-user
219 clean:
220 # avoid old build problems by removing potentially incorrect old files
221 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
222 rm -f qemu-options.def
223 find . -name '*.[od]' -exec rm -f {} +
224 rm -f *.a *.lo $(TOOLS) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
225 rm -Rf .libs
226 rm -f qemu-img-cmds.h
227 rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
228 @# May not be present in GENERATED_HEADERS
229 rm -f trace-dtrace.h trace-dtrace.h-timestamp
230 rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
231 rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp)
232 rm -rf qapi-generated
233 rm -rf qga/qapi-generated
234 $(MAKE) -C tests/tcg clean
235 for d in $(ALL_SUBDIRS) $(QEMULIBS) libcacard; do \
236 if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
237 rm -f $$d/qemu-options.def; \
238 done
240 VERSION ?= $(shell cat VERSION)
242 dist: qemu-$(VERSION).tar.bz2
244 qemu-%.tar.bz2:
245 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
247 distclean: clean
248 rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
249 rm -f config-all-devices.mak
250 rm -f roms/seabios/config.mak roms/vgabios/config.mak
251 rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
252 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
253 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
254 rm -f qemu-doc.vr
255 rm -f config.log
256 rm -f linux-headers/asm
257 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
258 for d in $(TARGET_DIRS) $(QEMULIBS); do \
259 rm -rf $$d || exit 1 ; \
260 done
262 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
263 ar de en-us fi fr-be hr it lv nl pl ru th \
264 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \
265 bepo
267 ifdef INSTALL_BLOBS
268 BLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
269 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
270 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
271 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
272 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
273 qemu-icon.bmp \
274 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
275 multiboot.bin linuxboot.bin kvmvapic.bin \
276 s390-zipl.rom \
277 spapr-rtas.bin slof.bin \
278 palcode-clipper
279 else
280 BLOBS=
281 endif
283 install-doc: $(DOCS)
284 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
285 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)"
286 $(INSTALL_DATA) QMP/qmp-commands.txt "$(DESTDIR)$(qemu_docdir)"
287 ifdef CONFIG_POSIX
288 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
289 $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
290 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
291 $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
292 endif
293 ifdef CONFIG_VIRTFS
294 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
295 $(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
296 endif
298 install-datadir:
299 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
301 install-confdir:
302 $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)"
304 install-sysconfig: install-datadir install-confdir
305 $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)"
307 install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig install-datadir
308 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
309 ifneq ($(TOOLS),)
310 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
311 endif
312 ifneq ($(HELPERS-y),)
313 $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)"
314 $(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)"
315 endif
316 ifneq ($(BLOBS),)
317 set -e; for x in $(BLOBS); do \
318 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
319 done
320 endif
321 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
322 set -e; for x in $(KEYMAPS); do \
323 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
324 done
325 for d in $(TARGET_DIRS); do \
326 $(MAKE) -C $$d $@ || exit 1 ; \
327 done
329 # various test targets
330 test speed: all
331 $(MAKE) -C tests/tcg $@
333 .PHONY: TAGS
334 TAGS:
335 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
337 cscope:
338 rm -f ./cscope.*
339 find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
340 cscope -b
342 # documentation
343 MAKEINFO=makeinfo
344 MAKEINFOFLAGS=--no-headers --no-split --number-sections
345 TEXIFLAG=$(if $(V),,--quiet)
346 %.dvi: %.texi
347 $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@")
349 %.html: %.texi
350 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
351 " GEN $@")
353 %.info: %.texi
354 $(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@")
356 %.pdf: %.texi
357 $(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@")
359 qemu-options.texi: $(SRC_PATH)/qemu-options.hx
360 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
362 qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
363 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
365 QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
366 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@")
368 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
369 $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
371 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
372 $(call quiet-command, \
373 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
374 $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \
375 " GEN $@")
377 qemu-img.1: qemu-img.texi qemu-img-cmds.texi
378 $(call quiet-command, \
379 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
380 $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \
381 " GEN $@")
383 fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
384 $(call quiet-command, \
385 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
386 $(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
387 " GEN $@")
389 qemu-nbd.8: qemu-nbd.texi
390 $(call quiet-command, \
391 perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
392 $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
393 " GEN $@")
395 dvi: qemu-doc.dvi qemu-tech.dvi
396 html: qemu-doc.html qemu-tech.html
397 info: qemu-doc.info qemu-tech.info
398 pdf: qemu-doc.pdf qemu-tech.pdf
400 qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
401 qemu-img.texi qemu-nbd.texi qemu-options.texi \
402 qemu-monitor.texi qemu-img-cmds.texi
404 # Add a dependency on the generated files, so that they are always
405 # rebuilt before other object files
406 Makefile: $(GENERATED_HEADERS)
408 # Include automatically generated dependency files
409 # Dependencies in Makefile.objs files come from our recursive subdir rules
410 -include $(wildcard *.d tests/*.d)