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