2006-05-14 12:07:53 +00:00
|
|
|
# Makefile for QEMU.
|
|
|
|
|
|
2011-09-16 21:50:43 +02:00
|
|
|
# Always point to the root of the build tree (needs GNU make).
|
|
|
|
|
BUILD_DIR=$(CURDIR)
|
2011-09-15 22:45:35 +02:00
|
|
|
|
2015-05-22 13:35:07 +08:00
|
|
|
# Before including a proper config-host.mak, assume we are in the source tree
|
|
|
|
|
SRC_PATH=.
|
|
|
|
|
|
2016-06-01 12:25:17 +08:00
|
|
|
UNCHECKED_GOALS := %clean TAGS cscope ctags docker docker-%
|
2015-05-22 13:35:07 +08:00
|
|
|
|
2012-03-06 19:50:38 +01:00
|
|
|
# All following code might depend on configuration variables
|
2009-04-15 14:42:57 +00:00
|
|
|
ifneq ($(wildcard config-host.mak),)
|
2009-05-19 16:17:58 +01:00
|
|
|
# Put the all: rule here so that config-host.mak can contain dependencies.
|
2012-07-09 20:36:36 +02:00
|
|
|
all:
|
2006-04-16 12:41:07 +00:00
|
|
|
include config-host.mak
|
2012-10-19 14:54:23 +01:00
|
|
|
|
|
|
|
|
# Check that we're not trying to do an out-of-tree build from
|
|
|
|
|
# a tree that's been used for an in-tree build.
|
|
|
|
|
ifneq ($(realpath $(SRC_PATH)),$(realpath .))
|
|
|
|
|
ifneq ($(wildcard $(SRC_PATH)/config-host.mak),)
|
|
|
|
|
$(error This is an out of tree build but your source tree ($(SRC_PATH)) \
|
|
|
|
|
seems to have been used for an in-tree build. You can fix this by running \
|
|
|
|
|
"make distclean && rm -rf *-linux-user *-softmmu" in your source tree)
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2013-04-16 10:50:38 +02:00
|
|
|
CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
|
|
|
|
|
CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
|
2017-03-16 13:01:50 -07:00
|
|
|
CONFIG_XEN := $(CONFIG_XEN_BACKEND)
|
2013-04-16 10:50:38 +02:00
|
|
|
CONFIG_ALL=y
|
|
|
|
|
-include config-all-devices.mak
|
|
|
|
|
-include config-all-disas.mak
|
|
|
|
|
|
2016-07-01 13:28:37 +02:00
|
|
|
config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios
|
2009-10-07 02:40:59 +02:00
|
|
|
@echo $@ is out-of-date, running configure
|
2013-10-20 18:39:21 +02:00
|
|
|
@# TODO: The next lines include code which supports a smooth
|
|
|
|
|
@# transition from old configurations without config.status.
|
|
|
|
|
@# This code can be removed after QEMU 1.7.
|
|
|
|
|
@if test -x config.status; then \
|
|
|
|
|
./config.status; \
|
|
|
|
|
else \
|
|
|
|
|
sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh; \
|
|
|
|
|
fi
|
2009-04-15 14:42:57 +00:00
|
|
|
else
|
|
|
|
|
config-host.mak:
|
2015-05-22 13:35:07 +08:00
|
|
|
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
|
2009-04-15 14:42:57 +00:00
|
|
|
@echo "Please call configure before running make!"
|
|
|
|
|
@exit 1
|
|
|
|
|
endif
|
2012-09-16 16:07:13 -04:00
|
|
|
endif
|
2003-02-18 23:35:48 +00:00
|
|
|
|
2016-06-01 12:25:16 +08:00
|
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
|
|
2017-02-28 12:29:00 +00:00
|
|
|
GENERATED_FILES = qemu-version.h config-host.h qemu-options.def
|
|
|
|
|
GENERATED_FILES += qmp-commands.h qapi-types.h qapi-visit.h qapi-event.h
|
|
|
|
|
GENERATED_FILES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c
|
|
|
|
|
GENERATED_FILES += qmp-introspect.h
|
|
|
|
|
GENERATED_FILES += qmp-introspect.c
|
2012-12-14 20:13:09 +01:00
|
|
|
|
2017-02-28 12:29:00 +00:00
|
|
|
GENERATED_FILES += trace/generated-tcg-tracers.h
|
2014-05-30 14:12:13 +02:00
|
|
|
|
2017-02-28 12:29:00 +00:00
|
|
|
GENERATED_FILES += trace/generated-helpers-wrappers.h
|
|
|
|
|
GENERATED_FILES += trace/generated-helpers.h
|
|
|
|
|
GENERATED_FILES += trace/generated-helpers.c
|
2014-05-30 14:11:50 +02:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
ifdef CONFIG_TRACE_UST
|
2017-02-28 12:29:00 +00:00
|
|
|
GENERATED_FILES += trace-ust-all.h
|
|
|
|
|
GENERATED_FILES += trace-ust-all.c
|
2014-01-29 22:47:56 -05:00
|
|
|
endif
|
|
|
|
|
|
2017-02-28 12:29:00 +00:00
|
|
|
GENERATED_FILES += module_block.h
|
2016-08-12 09:27:02 -04:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
TRACE_HEADERS = trace-root.h $(trace-events-subdirs:%=%/trace.h)
|
|
|
|
|
TRACE_SOURCES = trace-root.c $(trace-events-subdirs:%=%/trace.c)
|
|
|
|
|
TRACE_DTRACE =
|
|
|
|
|
ifdef CONFIG_TRACE_DTRACE
|
|
|
|
|
TRACE_HEADERS += trace-dtrace-root.h $(trace-events-subdirs:%=%/trace-dtrace.h)
|
|
|
|
|
TRACE_DTRACE += trace-dtrace-root.dtrace $(trace-events-subdirs:%=%/trace-dtrace.dtrace)
|
|
|
|
|
endif
|
|
|
|
|
ifdef CONFIG_TRACE_UST
|
|
|
|
|
TRACE_HEADERS += trace-ust-root.h $(trace-events-subdirs:%=%/trace-ust.h)
|
|
|
|
|
endif
|
|
|
|
|
|
2017-02-28 12:29:00 +00:00
|
|
|
GENERATED_FILES += $(TRACE_HEADERS)
|
|
|
|
|
GENERATED_FILES += $(TRACE_SOURCES)
|
2017-02-28 12:29:01 +00:00
|
|
|
GENERATED_FILES += $(BUILD_DIR)/trace-events-all
|
2017-01-25 16:14:15 +00:00
|
|
|
|
|
|
|
|
trace-group-name = $(shell dirname $1 | sed -e 's/[^a-zA-Z0-9]/_/g')
|
|
|
|
|
|
2017-03-15 12:34:21 +00:00
|
|
|
tracetool-y = $(SRC_PATH)/scripts/tracetool.py
|
|
|
|
|
tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py")
|
|
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
%/trace.h: %/trace.h-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
%/trace.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=$(call trace-group-name,$@) \
|
|
|
|
|
--format=h \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
%/trace.c: %/trace.c-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
%/trace.c-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=$(call trace-group-name,$@) \
|
|
|
|
|
--format=c \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
%/trace-ust.h: %/trace-ust.h-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
%/trace-ust.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=$(call trace-group-name,$@) \
|
|
|
|
|
--format=ust-events-h \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
%/trace-dtrace.dtrace: %/trace-dtrace.dtrace-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
%/trace-dtrace.dtrace-timestamp: $(SRC_PATH)/%/trace-events $(BUILD_DIR)/config-host.mak $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=$(call trace-group-name,$@) \
|
|
|
|
|
--format=d \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
%/trace-dtrace.h: %/trace-dtrace.dtrace $(tracetool-y)
|
|
|
|
|
$(call quiet-command,dtrace -o $@ -h -s $<, "GEN","$@")
|
|
|
|
|
|
|
|
|
|
%/trace-dtrace.o: %/trace-dtrace.dtrace $(tracetool-y)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trace-root.h: trace-root.h-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
trace-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=root \
|
|
|
|
|
--format=h \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
trace-root.c: trace-root.c-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
trace-root.c-timestamp: $(SRC_PATH)/trace-events $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=root \
|
|
|
|
|
--format=c \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
trace-ust-root.h: trace-ust-root.h-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
trace-ust-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=root \
|
|
|
|
|
--format=ust-events-h \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
trace-ust-all.h: trace-ust-all.h-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
trace-ust-all.h-timestamp: $(trace-events-files) $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=all \
|
|
|
|
|
--format=ust-events-h \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$(trace-events-files) > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
trace-ust-all.c: trace-ust-all.c-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
trace-ust-all.c-timestamp: $(trace-events-files) $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=all \
|
|
|
|
|
--format=ust-events-c \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$(trace-events-files) > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
trace-dtrace-root.dtrace: trace-dtrace-root.dtrace-timestamp
|
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
|
|
|
|
trace-dtrace-root.dtrace-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak $(tracetool-y)
|
|
|
|
|
$(call quiet-command,$(TRACETOOL) \
|
|
|
|
|
--group=root \
|
|
|
|
|
--format=d \
|
|
|
|
|
--backends=$(TRACE_BACKENDS) \
|
|
|
|
|
$< > $@,"GEN","$(@:%-timestamp=%)")
|
|
|
|
|
|
|
|
|
|
trace-dtrace-root.h: trace-dtrace-root.dtrace
|
|
|
|
|
$(call quiet-command,dtrace -o $@ -h -s $<, "GEN","$@")
|
|
|
|
|
|
|
|
|
|
trace-dtrace-root.o: trace-dtrace-root.dtrace
|
|
|
|
|
|
2009-10-06 21:11:15 +02:00
|
|
|
# Don't try to regenerate Makefile or configure
|
|
|
|
|
# We don't generate any of them
|
|
|
|
|
Makefile: ;
|
|
|
|
|
configure: ;
|
|
|
|
|
|
2017-01-13 15:41:32 +01:00
|
|
|
.PHONY: all clean cscope distclean html info install install-doc \
|
2017-01-13 15:41:34 +01:00
|
|
|
pdf txt recurse-all speed test dist msi FORCE
|
2006-05-14 12:07:53 +00:00
|
|
|
|
2012-05-29 11:49:50 +02:00
|
|
|
$(call set-vpath, $(SRC_PATH))
|
2007-11-18 21:12:37 +00:00
|
|
|
|
2009-08-03 14:47:06 +02:00
|
|
|
LIBS+=-lz $(LIBS_TOOLS)
|
2009-07-27 16:12:51 +02:00
|
|
|
|
2012-01-26 09:42:24 -05:00
|
|
|
HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
|
|
|
|
|
|
2006-04-23 17:57:59 +00:00
|
|
|
ifdef BUILD_DOCS
|
2017-01-13 15:41:34 +01:00
|
|
|
DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
|
2017-06-06 16:55:19 +02:00
|
|
|
DOCS+=docs/interop/qemu-qmp-ref.html docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7
|
|
|
|
|
DOCS+=docs/interop/qemu-ga-ref.html docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7
|
2012-02-24 14:00:42 +05:30
|
|
|
ifdef CONFIG_VIRTFS
|
2011-12-14 13:58:47 +05:30
|
|
|
DOCS+=fsdev/virtfs-proxy-helper.1
|
2012-02-24 14:00:42 +05:30
|
|
|
endif
|
2006-04-23 17:57:59 +00:00
|
|
|
else
|
|
|
|
|
DOCS=
|
|
|
|
|
endif
|
2003-03-06 23:23:54 +00:00
|
|
|
|
2011-09-15 22:45:35 +02:00
|
|
|
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
|
2009-10-07 02:41:02 +02:00
|
|
|
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
|
2013-02-21 16:26:46 +01:00
|
|
|
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
|
2009-10-07 02:41:02 +02:00
|
|
|
|
2012-09-14 19:02:30 +02:00
|
|
|
ifeq ($(SUBDIR_DEVICES_MAK),)
|
|
|
|
|
config-all-devices.mak:
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,echo '# no devices' > $@,"GEN","$@")
|
2012-09-14 19:02:30 +02:00
|
|
|
else
|
2009-10-07 02:41:02 +02:00
|
|
|
config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
|
2013-04-03 17:53:21 +02:00
|
|
|
$(call quiet-command, sed -n \
|
|
|
|
|
's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
|
|
|
|
|
$(SUBDIR_DEVICES_MAK) | sort -u > $@, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2012-09-14 19:02:30 +02:00
|
|
|
endif
|
2009-10-07 02:41:02 +02:00
|
|
|
|
2010-11-26 18:47:45 +00:00
|
|
|
-include $(SUBDIR_DEVICES_MAK_DEP)
|
|
|
|
|
|
2016-06-07 13:25:58 +02:00
|
|
|
%/config-devices.mak: default-configs/%.mak $(SRC_PATH)/scripts/make_device_config.sh
|
2015-03-12 16:00:05 +01:00
|
|
|
$(call quiet-command, \
|
2016-10-04 17:27:21 +01:00
|
|
|
$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp,"GEN","$@.tmp")
|
2015-02-19 08:48:46 +01:00
|
|
|
$(call quiet-command, if test -f $@; then \
|
2010-10-02 14:28:08 +00:00
|
|
|
if cmp -s $@.old $@; then \
|
2010-11-26 18:47:45 +00:00
|
|
|
mv $@.tmp $@; \
|
|
|
|
|
cp -p $@ $@.old; \
|
2009-12-20 15:39:03 +01:00
|
|
|
else \
|
|
|
|
|
if test -f $@.old; then \
|
|
|
|
|
echo "WARNING: $@ (user modified) out of date.";\
|
|
|
|
|
else \
|
|
|
|
|
echo "WARNING: $@ out of date.";\
|
|
|
|
|
fi; \
|
|
|
|
|
echo "Run \"make defconfig\" to regenerate."; \
|
|
|
|
|
rm $@.tmp; \
|
|
|
|
|
fi; \
|
2009-11-22 16:25:30 +00:00
|
|
|
else \
|
2009-12-20 15:39:03 +01:00
|
|
|
mv $@.tmp $@; \
|
|
|
|
|
cp -p $@ $@.old; \
|
2016-10-04 17:27:21 +01:00
|
|
|
fi,"GEN","$@");
|
2009-11-22 16:25:30 +00:00
|
|
|
|
|
|
|
|
defconfig:
|
|
|
|
|
rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
|
|
|
|
|
|
2012-12-21 08:34:49 +01:00
|
|
|
ifneq ($(wildcard config-host.mak),)
|
|
|
|
|
include $(SRC_PATH)/Makefile.objs
|
2014-02-10 14:48:52 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
dummy := $(call unnest-vars,, \
|
|
|
|
|
stub-obj-y \
|
2016-12-12 15:49:01 +03:00
|
|
|
chardev-obj-y \
|
2014-02-10 14:48:52 +08:00
|
|
|
util-obj-y \
|
|
|
|
|
qga-obj-y \
|
2014-09-08 11:17:48 +02:00
|
|
|
ivshmem-client-obj-y \
|
|
|
|
|
ivshmem-server-obj-y \
|
2016-10-18 12:24:04 +03:00
|
|
|
libvhost-user-obj-y \
|
2017-03-02 10:25:53 -08:00
|
|
|
vhost-user-scsi-obj-y \
|
2014-03-26 14:28:45 -04:00
|
|
|
qga-vss-dll-obj-y \
|
2014-02-10 14:48:52 +08:00
|
|
|
block-obj-y \
|
2014-02-10 14:48:59 +08:00
|
|
|
block-obj-m \
|
2015-09-02 10:57:27 +01:00
|
|
|
crypto-obj-y \
|
|
|
|
|
crypto-aes-obj-y \
|
2015-09-02 11:18:16 +01:00
|
|
|
qom-obj-y \
|
2015-02-27 16:19:33 +00:00
|
|
|
io-obj-y \
|
2014-02-10 14:48:59 +08:00
|
|
|
common-obj-y \
|
2017-01-25 16:14:15 +00:00
|
|
|
common-obj-m \
|
|
|
|
|
trace-obj-y)
|
2014-02-10 14:48:52 +08:00
|
|
|
|
|
|
|
|
ifneq ($(wildcard config-host.mak),)
|
2016-06-01 10:23:31 +08:00
|
|
|
include $(SRC_PATH)/tests/Makefile.include
|
2012-12-21 08:34:49 +01:00
|
|
|
endif
|
|
|
|
|
|
2014-02-10 14:48:56 +08:00
|
|
|
all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules
|
2006-05-13 16:54:03 +00:00
|
|
|
|
2016-06-01 17:44:21 +08:00
|
|
|
qemu-version.h: FORCE
|
|
|
|
|
$(call quiet-command, \
|
|
|
|
|
(cd $(SRC_PATH); \
|
|
|
|
|
printf '#define QEMU_PKGVERSION '; \
|
|
|
|
|
if test -n "$(PKGVERSION)"; then \
|
|
|
|
|
printf '"$(PKGVERSION)"\n'; \
|
|
|
|
|
else \
|
|
|
|
|
if test -d .git; then \
|
|
|
|
|
printf '" ('; \
|
|
|
|
|
git describe --match 'v*' 2>/dev/null | tr -d '\n'; \
|
|
|
|
|
if ! git diff-index --quiet HEAD &>/dev/null; then \
|
|
|
|
|
printf -- '-dirty'; \
|
|
|
|
|
fi; \
|
|
|
|
|
printf ')"\n'; \
|
|
|
|
|
else \
|
|
|
|
|
printf '""\n'; \
|
|
|
|
|
fi; \
|
|
|
|
|
fi) > $@.tmp)
|
2017-02-15 10:40:30 +08:00
|
|
|
$(call quiet-command, if ! cmp -s $@ $@.tmp; then \
|
|
|
|
|
mv $@.tmp $@; \
|
|
|
|
|
else \
|
|
|
|
|
rm $@.tmp; \
|
|
|
|
|
fi)
|
2016-06-01 17:44:21 +08:00
|
|
|
|
2009-10-07 02:40:58 +02:00
|
|
|
config-host.h: config-host.h-timestamp
|
|
|
|
|
config-host.h-timestamp: config-host.mak
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-options.def: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
|
2009-10-07 02:40:58 +02:00
|
|
|
|
2008-05-28 16:44:57 +00:00
|
|
|
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
|
2013-02-21 16:26:47 +01:00
|
|
|
SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))
|
|
|
|
|
|
2014-02-27 21:28:03 +01:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): $(block-obj-y)
|
2015-09-02 10:57:27 +01:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): $(crypto-obj-y)
|
2015-02-27 16:19:33 +00:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): $(io-obj-y)
|
2013-02-21 16:26:47 +01:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
|
2008-05-28 16:44:57 +00:00
|
|
|
|
2012-05-29 12:41:34 +02:00
|
|
|
subdir-%:
|
2009-05-07 02:00:31 +01:00
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
|
2006-05-13 13:55:08 +00:00
|
|
|
|
2012-09-25 16:04:58 +02:00
|
|
|
subdir-pixman: pixman/Makefile
|
|
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,)
|
|
|
|
|
|
|
|
|
|
pixman/Makefile: $(SRC_PATH)/pixman/configure
|
2013-01-04 10:15:53 +01:00
|
|
|
(cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static)
|
2012-09-25 16:04:58 +02:00
|
|
|
|
|
|
|
|
$(SRC_PATH)/pixman/configure:
|
|
|
|
|
(cd $(SRC_PATH)/pixman; autoreconf -v --install)
|
|
|
|
|
|
2013-04-18 14:47:31 +10:00
|
|
|
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
|
2013-06-21 14:00:17 +01:00
|
|
|
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
|
|
|
|
|
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
|
2013-04-18 14:47:31 +10:00
|
|
|
|
|
|
|
|
subdir-dtc:dtc/libfdt dtc/tests
|
2013-06-21 14:00:17 +01:00
|
|
|
$(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS) CPPFLAGS="$(DTC_CPPFLAGS)" CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)" AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
|
2013-04-18 14:47:31 +10:00
|
|
|
|
|
|
|
|
dtc/%:
|
|
|
|
|
mkdir -p $@
|
|
|
|
|
|
2016-12-12 15:49:01 +03:00
|
|
|
$(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) $(chardev-obj-y) \
|
2017-04-04 21:39:39 +00:00
|
|
|
$(qom-obj-y) $(crypto-aes-obj-$(CONFIG_USER_ONLY))
|
2009-09-27 16:26:02 +00:00
|
|
|
|
2009-07-31 13:18:32 +01:00
|
|
|
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
|
2016-08-05 12:23:46 +04:00
|
|
|
# Only keep -O and -g cflags
|
2009-07-31 13:18:32 +01:00
|
|
|
romsubdir-%:
|
2016-08-05 12:23:46 +04:00
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/" CFLAGS="$(filter -O% -g%,$(CFLAGS))",)
|
2009-07-31 13:18:32 +01:00
|
|
|
|
|
|
|
|
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
|
|
|
|
|
|
|
|
|
|
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
|
2006-08-01 16:21:11 +00:00
|
|
|
|
2016-11-08 11:05:13 +04:00
|
|
|
$(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
|
2013-02-25 23:31:13 +01:00
|
|
|
|
2016-11-08 11:05:13 +04:00
|
|
|
Makefile: $(version-obj-y)
|
2012-11-16 18:35:27 +01:00
|
|
|
|
|
|
|
|
######################################################################
|
2012-12-20 15:40:20 +01:00
|
|
|
# Build libraries
|
2012-11-16 18:35:27 +01:00
|
|
|
|
|
|
|
|
libqemustub.a: $(stub-obj-y)
|
2017-04-04 21:39:39 +00:00
|
|
|
libqemuutil.a: $(util-obj-y) $(trace-obj-y)
|
2012-11-16 18:35:27 +01:00
|
|
|
|
2011-05-15 11:51:28 +03:00
|
|
|
######################################################################
|
2007-11-07 19:24:02 +00:00
|
|
|
|
2017-04-04 21:39:39 +00:00
|
|
|
COMMON_LDADDS = libqemuutil.a libqemustub.a
|
2017-01-25 16:14:15 +00:00
|
|
|
|
2010-01-20 20:54:18 +01:00
|
|
|
qemu-img.o: qemu-img-cmds.h
|
2009-06-07 00:42:17 +01:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
qemu-img$(EXESUF): qemu-img.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
|
|
|
|
|
qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
|
|
|
|
|
qemu-io$(EXESUF): qemu-io.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
|
2009-04-05 18:41:23 +00:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
|
2012-01-26 09:42:24 -05:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o $(COMMON_LDADDS)
|
2011-12-14 13:58:42 +05:30
|
|
|
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
|
|
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
|
2009-06-07 00:42:17 +01:00
|
|
|
|
2011-08-11 15:38:12 -05:00
|
|
|
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
|
2012-07-29 03:11:24 +08:00
|
|
|
qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
|
2011-07-19 14:50:44 -05:00
|
|
|
|
2011-12-28 12:26:58 +02:00
|
|
|
gen-out-type = $(subst .,-,$(suffix $@))
|
2011-12-27 16:02:16 +02:00
|
|
|
|
2012-08-10 14:08:42 +01:00
|
|
|
qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
|
|
|
|
|
|
2012-07-29 03:11:24 +08:00
|
|
|
qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
|
2012-10-24 11:26:49 +02:00
|
|
|
$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2012-07-29 03:11:24 +08:00
|
|
|
qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
|
2012-10-24 11:26:49 +02:00
|
|
|
$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2012-07-29 03:11:24 +08:00
|
|
|
qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
|
2012-10-24 11:26:49 +02:00
|
|
|
$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2011-07-19 15:41:55 -05:00
|
|
|
|
2014-06-18 08:43:26 +02:00
|
|
|
qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \
|
2014-06-18 08:43:32 +02:00
|
|
|
$(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \
|
2015-11-19 17:18:39 +00:00
|
|
|
$(SRC_PATH)/qapi/event.json $(SRC_PATH)/qapi/introspect.json \
|
2016-02-04 19:29:17 +01:00
|
|
|
$(SRC_PATH)/qapi/crypto.json $(SRC_PATH)/qapi/rocker.json \
|
|
|
|
|
$(SRC_PATH)/qapi/trace.json
|
2014-06-18 08:43:26 +02:00
|
|
|
|
2011-11-16 23:58:18 +02:00
|
|
|
qapi-types.c qapi-types.h :\
|
2014-06-18 08:43:26 +02:00
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o "." -b $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2011-11-16 23:58:18 +02:00
|
|
|
qapi-visit.c qapi-visit.h :\
|
2014-06-18 08:43:26 +02:00
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o "." -b $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2014-06-18 08:43:28 +02:00
|
|
|
qapi-event.c qapi-event.h :\
|
|
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
|
|
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o "." $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2011-11-16 23:58:18 +02:00
|
|
|
qmp-commands.h qmp-marshal.c :\
|
2014-06-18 08:43:26 +02:00
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
|
2016-09-12 13:19:04 +04:00
|
|
|
$(gen-out-type) -o "." $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2015-09-16 13:06:28 +02:00
|
|
|
qmp-introspect.h qmp-introspect.c :\
|
|
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py)
|
|
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \
|
|
|
|
|
$(gen-out-type) -o "." $<, \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2011-09-02 12:34:47 -05:00
|
|
|
|
2012-07-29 03:11:24 +08:00
|
|
|
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
|
2012-05-29 12:41:34 +02:00
|
|
|
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
|
2011-08-11 15:38:12 -05:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
|
2015-09-07 18:47:05 -05:00
|
|
|
$(call LINK, $^)
|
2011-07-20 15:19:37 -05:00
|
|
|
|
2015-05-06 14:57:40 +03:00
|
|
|
ifdef QEMU_GA_MSI_ENABLED
|
|
|
|
|
QEMU_GA_MSI=qemu-ga-$(ARCH).msi
|
|
|
|
|
|
2015-07-29 20:10:51 +03:00
|
|
|
msi: $(QEMU_GA_MSI)
|
2015-05-06 14:57:40 +03:00
|
|
|
|
2015-09-07 18:47:05 -05:00
|
|
|
$(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
|
2015-05-06 14:57:40 +03:00
|
|
|
|
|
|
|
|
$(QEMU_GA_MSI): config-host.mak
|
|
|
|
|
|
2015-08-26 15:07:16 +03:00
|
|
|
$(QEMU_GA_MSI): $(SRC_PATH)/qga/installer/qemu-ga.wxs
|
|
|
|
|
$(call quiet-command,QEMU_GA_VERSION="$(QEMU_GA_VERSION)" QEMU_GA_MANUFACTURER="$(QEMU_GA_MANUFACTURER)" QEMU_GA_DISTRO="$(QEMU_GA_DISTRO)" BUILD_DIR="$(BUILD_DIR)" \
|
2016-10-04 17:27:21 +01:00
|
|
|
wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
|
2015-05-06 14:57:40 +03:00
|
|
|
else
|
|
|
|
|
msi:
|
2015-08-26 17:05:01 -05:00
|
|
|
@echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
|
2015-05-06 14:57:40 +03:00
|
|
|
endif
|
|
|
|
|
|
2015-09-07 18:47:05 -05:00
|
|
|
ifneq ($(EXESUF),)
|
|
|
|
|
.PHONY: qemu-ga
|
|
|
|
|
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
|
|
|
|
|
endif
|
|
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
|
2014-09-08 11:17:48 +02:00
|
|
|
$(call LINK, $^)
|
2017-01-25 16:14:15 +00:00
|
|
|
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
|
2014-09-08 11:17:48 +02:00
|
|
|
$(call LINK, $^)
|
2017-03-02 10:25:53 -08:00
|
|
|
vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y)
|
|
|
|
|
$(call LINK, $^)
|
2014-09-08 11:17:48 +02:00
|
|
|
|
2016-08-12 09:27:02 -04:00
|
|
|
module_block.h: $(SRC_PATH)/scripts/modules/module_block.py config-host.mak
|
|
|
|
|
$(call quiet-command,$(PYTHON) $< $@ \
|
|
|
|
|
$(addprefix $(SRC_PATH)/,$(patsubst %.mo,%.c,$(block-obj-m))), \
|
2016-10-04 17:27:21 +01:00
|
|
|
"GEN","$@")
|
2016-08-12 09:27:02 -04:00
|
|
|
|
2003-02-18 22:55:36 +00:00
|
|
|
clean:
|
2003-08-11 23:01:33 +00:00
|
|
|
# avoid old build problems by removing potentially incorrect old files
|
2009-10-07 02:41:00 +02:00
|
|
|
rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
|
2010-10-26 17:53:41 +02:00
|
|
|
rm -f qemu-options.def
|
2015-05-06 14:57:40 +03:00
|
|
|
rm -f *.msi
|
2016-11-08 11:05:13 +04:00
|
|
|
find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f -exec rm {} +
|
2013-08-07 11:40:18 -04:00
|
|
|
rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
|
2013-07-25 18:24:58 +02:00
|
|
|
rm -f fsdev/*.pod
|
2009-06-09 18:45:16 +00:00
|
|
|
rm -f qemu-img-cmds.h
|
2015-01-16 13:59:17 +01:00
|
|
|
rm -f ui/shader/*-vert.h ui/shader/*-frag.h
|
2017-02-28 12:29:00 +00:00
|
|
|
@# May not be present in GENERATED_FILES
|
2012-12-14 20:13:09 +01:00
|
|
|
rm -f trace/generated-tracers-dtrace.dtrace*
|
|
|
|
|
rm -f trace/generated-tracers-dtrace.h*
|
2017-02-28 12:29:00 +00:00
|
|
|
rm -f $(foreach f,$(GENERATED_FILES),$(f) $(f)-timestamp)
|
2012-06-09 09:08:39 +02:00
|
|
|
rm -rf qapi-generated
|
2012-07-29 03:11:24 +08:00
|
|
|
rm -rf qga/qapi-generated
|
2013-01-15 08:47:26 +01:00
|
|
|
for d in $(ALL_SUBDIRS); do \
|
2009-11-13 18:51:05 +09:00
|
|
|
if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
|
2010-10-26 17:53:41 +02:00
|
|
|
rm -f $$d/qemu-options.def; \
|
2003-08-10 21:39:31 +00:00
|
|
|
done
|
2016-05-17 12:27:31 +01:00
|
|
|
rm -f $(SUBDIR_DEVICES_MAK) config-all-devices.mak
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2012-07-17 13:33:32 -05:00
|
|
|
VERSION ?= $(shell cat VERSION)
|
|
|
|
|
|
|
|
|
|
dist: qemu-$(VERSION).tar.bz2
|
|
|
|
|
|
|
|
|
|
qemu-%.tar.bz2:
|
|
|
|
|
$(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
|
|
|
|
|
|
2003-03-06 23:23:54 +00:00
|
|
|
distclean: clean
|
2015-09-10 18:39:01 +03:00
|
|
|
rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi qemu-monitor-info.texi
|
2014-12-15 11:19:46 +01:00
|
|
|
rm -f config-all-devices.mak config-all-disas.mak config.status
|
|
|
|
|
rm -f po/*.mo tests/qemu-iotests/common.env
|
2009-11-13 18:51:05 +09:00
|
|
|
rm -f roms/seabios/config.mak roms/vgabios/config.mak
|
2017-01-13 15:41:32 +01:00
|
|
|
rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps
|
2011-04-13 16:42:16 +10:00
|
|
|
rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
|
|
|
|
|
rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
|
2017-01-24 14:02:18 +00:00
|
|
|
rm -f qemu-doc.vr qemu-doc.txt
|
2011-07-25 23:56:02 -04:00
|
|
|
rm -f config.log
|
2012-02-01 18:50:42 +00:00
|
|
|
rm -f linux-headers/asm
|
2017-06-06 16:55:19 +02:00
|
|
|
rm -f docs/version.texi
|
|
|
|
|
rm -f docs/interop/qemu-ga-qapi.texi docs/interop/qemu-qmp-qapi.texi
|
|
|
|
|
rm -f docs/interop/qemu-qmp-ref.7 docs/interop/qemu-ga-ref.7
|
|
|
|
|
rm -f docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
|
|
|
|
|
rm -f docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
|
|
|
|
|
rm -f docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
|
2012-10-24 11:16:01 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2003-10-28 00:12:52 +00:00
|
|
|
rm -rf $$d || exit 1 ; \
|
2003-08-10 23:41:46 +00:00
|
|
|
done
|
2013-08-07 11:40:03 -04:00
|
|
|
rm -Rf .sdk
|
2015-04-01 13:58:38 -04:00
|
|
|
if test -f pixman/config.log; then $(MAKE) -C pixman distclean; fi
|
|
|
|
|
if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
|
2003-03-06 23:23:54 +00:00
|
|
|
|
2004-12-12 22:18:34 +00:00
|
|
|
KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
|
|
|
|
|
ar de en-us fi fr-be hr it lv nl pl ru th \
|
2012-06-08 20:06:25 +02:00
|
|
|
common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \
|
2013-10-16 14:40:04 +02:00
|
|
|
bepo cz
|
2004-12-12 22:18:34 +00:00
|
|
|
|
2008-11-27 15:45:16 +00:00
|
|
|
ifdef INSTALL_BLOBS
|
2016-07-04 17:22:17 +02:00
|
|
|
BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
|
2014-09-10 13:04:17 +02:00
|
|
|
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
|
2016-01-23 14:02:12 -02:00
|
|
|
acpi-dsdt.aml \
|
2013-10-15 21:03:04 +01:00
|
|
|
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
|
2011-04-18 11:46:01 -06:00
|
|
|
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
|
|
|
|
|
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
|
2013-04-08 23:08:13 +02:00
|
|
|
efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
|
|
|
|
|
efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
|
2016-07-01 13:26:57 +02:00
|
|
|
efi-e1000e.rom efi-vmxnet3.rom \
|
2013-06-07 13:24:17 -05:00
|
|
|
qemu-icon.bmp qemu_logo_no_text.svg \
|
2011-03-14 11:29:19 +01:00
|
|
|
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
|
2016-05-23 19:11:33 +01:00
|
|
|
multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin \
|
2017-07-12 16:00:41 +02:00
|
|
|
s390-ccw.img s390-netboot.img \
|
2016-10-22 11:46:34 +02:00
|
|
|
spapr-rtas.bin slof.bin skiboot.lid \
|
2014-07-04 15:43:18 -04:00
|
|
|
palcode-clipper \
|
2017-05-01 14:43:31 +01:00
|
|
|
u-boot.e500 \
|
|
|
|
|
qemu_vga.ndrv
|
2008-11-27 15:45:16 +00:00
|
|
|
else
|
|
|
|
|
BLOBS=
|
|
|
|
|
endif
|
|
|
|
|
|
2006-04-30 23:54:18 +00:00
|
|
|
install-doc: $(DOCS)
|
2012-04-18 16:55:44 -03:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
|
2016-10-06 16:12:11 +02:00
|
|
|
$(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
|
2017-01-13 15:41:34 +01:00
|
|
|
$(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
|
2017-06-06 16:55:19 +02:00
|
|
|
$(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
|
|
|
|
|
$(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
|
2009-08-03 14:47:00 +02:00
|
|
|
ifdef CONFIG_POSIX
|
2009-04-18 15:36:02 +00:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
|
2013-06-11 13:13:58 +02:00
|
|
|
$(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
|
2017-01-13 15:41:35 +01:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
|
2017-06-06 16:55:19 +02:00
|
|
|
$(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
|
2013-06-11 13:13:58 +02:00
|
|
|
ifneq ($(TOOLS),)
|
|
|
|
|
$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
|
2009-04-18 15:36:02 +00:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
|
|
|
|
|
$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
|
2006-04-30 23:54:18 +00:00
|
|
|
endif
|
2015-08-27 01:34:59 +02:00
|
|
|
ifneq (,$(findstring qemu-ga,$(TOOLS)))
|
|
|
|
|
$(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
|
2017-06-06 16:55:19 +02:00
|
|
|
$(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)"
|
|
|
|
|
$(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)"
|
|
|
|
|
$(INSTALL_DATA) docs/interop/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7"
|
2015-08-27 01:34:59 +02:00
|
|
|
endif
|
2013-06-11 13:13:58 +02:00
|
|
|
endif
|
2011-12-14 13:58:47 +05:30
|
|
|
ifdef CONFIG_VIRTFS
|
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
|
|
|
|
|
$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
|
|
|
|
|
endif
|
2010-02-20 11:14:59 -06:00
|
|
|
|
2012-05-02 13:07:30 -03:00
|
|
|
install-datadir:
|
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
|
|
|
|
|
|
2013-05-18 07:13:14 +02:00
|
|
|
install-localstatedir:
|
|
|
|
|
ifdef CONFIG_POSIX
|
|
|
|
|
ifneq (,$(findstring qemu-ga,$(TOOLS)))
|
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2012-05-02 13:07:30 -03:00
|
|
|
|
2017-02-28 12:29:01 +00:00
|
|
|
install: all $(if $(BUILD_DOCS),install-doc) install-datadir install-localstatedir
|
2007-10-20 18:29:34 +00:00
|
|
|
ifneq ($(TOOLS),)
|
2015-11-23 15:48:58 -06:00
|
|
|
$(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(TOOLS)),$(DESTDIR)$(bindir))
|
2007-10-20 18:29:34 +00:00
|
|
|
endif
|
2014-02-10 14:48:58 +08:00
|
|
|
ifneq ($(CONFIG_MODULES),)
|
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
|
2014-05-08 14:56:58 +04:00
|
|
|
for s in $(modules-m:.mo=$(DSOSUF)); do \
|
|
|
|
|
t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
|
2014-05-08 15:06:03 +04:00
|
|
|
$(INSTALL_LIB) $$s "$$t"; \
|
2014-05-08 14:56:58 +04:00
|
|
|
test -z "$(STRIP)" || $(STRIP) "$$t"; \
|
2014-02-10 14:48:58 +08:00
|
|
|
done
|
|
|
|
|
endif
|
2012-01-26 09:42:24 -05:00
|
|
|
ifneq ($(HELPERS-y),)
|
2014-06-22 10:55:23 +04:00
|
|
|
$(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
|
2012-01-26 09:42:24 -05:00
|
|
|
endif
|
2008-11-27 15:45:16 +00:00
|
|
|
ifneq ($(BLOBS),)
|
|
|
|
|
set -e; for x in $(BLOBS); do \
|
2012-04-18 16:55:41 -03:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
|
2006-04-16 12:41:07 +00:00
|
|
|
done
|
2013-02-20 07:43:24 -06:00
|
|
|
endif
|
|
|
|
|
ifeq ($(CONFIG_GTK),y)
|
|
|
|
|
$(MAKE) -C po $@
|
2008-11-27 15:45:16 +00:00
|
|
|
endif
|
2012-04-18 16:55:41 -03:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
|
2008-03-05 18:16:09 +00:00
|
|
|
set -e; for x in $(KEYMAPS); do \
|
2012-04-18 16:55:41 -03:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
|
2006-04-16 12:41:07 +00:00
|
|
|
done
|
2016-06-16 09:39:47 +01:00
|
|
|
$(INSTALL_DATA) $(BUILD_DIR)/trace-events-all "$(DESTDIR)$(qemu_datadir)/trace-events-all"
|
2003-08-10 21:39:31 +00:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2014-01-20 12:21:54 +01:00
|
|
|
$(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
|
2003-08-10 21:39:31 +00:00
|
|
|
done
|
2003-03-22 17:31:19 +00:00
|
|
|
|
2003-03-01 17:13:26 +00:00
|
|
|
# various test targets
|
2007-11-14 10:34:57 +00:00
|
|
|
test speed: all
|
2012-01-10 13:10:42 -06:00
|
|
|
$(MAKE) -C tests/tcg $@
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2015-05-22 13:35:08 +08:00
|
|
|
.PHONY: ctags
|
|
|
|
|
ctags:
|
2016-06-09 20:58:35 +03:00
|
|
|
rm -f tags
|
2015-05-22 13:35:08 +08:00
|
|
|
find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +
|
|
|
|
|
|
2009-08-07 15:43:11 +01:00
|
|
|
.PHONY: TAGS
|
2007-09-16 21:08:06 +00:00
|
|
|
TAGS:
|
2016-06-09 20:58:35 +03:00
|
|
|
rm -f TAGS
|
2013-03-12 13:57:28 +11:00
|
|
|
find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
|
2003-02-18 22:55:36 +00:00
|
|
|
|
2005-08-21 09:23:39 +00:00
|
|
|
cscope:
|
2015-05-22 13:35:07 +08:00
|
|
|
rm -f "$(SRC_PATH)"/cscope.*
|
|
|
|
|
find "$(SRC_PATH)/" -name "*.[chsS]" -print | sed 's,^\./,,' > "$(SRC_PATH)/cscope.files"
|
|
|
|
|
cscope -b -i"$(SRC_PATH)/cscope.files"
|
2005-08-21 09:23:39 +00:00
|
|
|
|
2015-01-16 13:59:17 +01:00
|
|
|
# opengl shader programs
|
|
|
|
|
ui/shader/%-vert.h: $(SRC_PATH)/ui/shader/%.vert $(SRC_PATH)/scripts/shaderinclude.pl
|
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
|
$(call quiet-command,\
|
|
|
|
|
perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
|
2016-10-04 17:27:21 +01:00
|
|
|
"VERT","$@")
|
2015-01-16 13:59:17 +01:00
|
|
|
|
|
|
|
|
ui/shader/%-frag.h: $(SRC_PATH)/ui/shader/%.frag $(SRC_PATH)/scripts/shaderinclude.pl
|
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
|
$(call quiet-command,\
|
|
|
|
|
perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
|
2016-10-04 17:27:21 +01:00
|
|
|
"FRAG","$@")
|
2015-01-16 13:59:17 +01:00
|
|
|
|
2015-01-09 11:40:23 +01:00
|
|
|
ui/console-gl.o: $(SRC_PATH)/ui/console-gl.c \
|
|
|
|
|
ui/shader/texture-blit-vert.h ui/shader/texture-blit-frag.h
|
|
|
|
|
|
2003-03-23 20:17:16 +00:00
|
|
|
# documentation
|
2017-01-19 10:06:44 +01:00
|
|
|
MAKEINFO=makeinfo
|
2017-06-06 16:55:19 +02:00
|
|
|
MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
|
|
|
|
|
MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
|
2017-06-06 16:59:37 +02:00
|
|
|
TEXI2PODFLAGS=$(MAKEINFOINCLUDES) "-DVERSION=$(VERSION)"
|
2017-06-06 16:55:19 +02:00
|
|
|
TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2017-03-15 13:56:56 +01:00
|
|
|
docs/version.texi: $(SRC_PATH)/VERSION
|
2017-02-17 18:59:28 +00:00
|
|
|
$(call quiet-command,echo "@set VERSION $(VERSION)" > $@,"GEN","$@")
|
|
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.html: %.texi docs/version.texi
|
2017-01-13 15:41:31 +01:00
|
|
|
$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
|
|
|
|
|
--html $< -o $@,"GEN","$@")
|
2003-03-23 20:17:16 +00:00
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.info: %.texi docs/version.texi
|
2017-01-13 15:41:31 +01:00
|
|
|
$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
|
2006-04-30 22:51:54 +00:00
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.txt: %.texi docs/version.texi
|
2017-01-13 15:41:34 +01:00
|
|
|
$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
|
|
|
|
|
--plaintext $< -o $@,"GEN","$@")
|
|
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.pdf: %.texi docs/version.texi
|
2017-06-06 16:55:19 +02:00
|
|
|
$(call quiet-command,texi2pdf $(TEXI2PDFFLAGS) $< -o $@,"GEN","$@")
|
2017-03-15 13:56:56 +01:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-options.texi: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2006-04-30 22:51:54 +00:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2009-06-06 08:22:04 +00:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-monitor-info.texi: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2015-09-10 18:39:01 +03:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 17:27:21 +01:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2009-06-07 00:42:17 +01:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
docs/interop/qemu-qmp-qapi.texi docs/interop/qemu-ga-qapi.texi: $(SRC_PATH)/scripts/qapi2texi.py $(qapi-py)
|
2017-03-20 14:11:50 +01:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
docs/interop/qemu-qmp-qapi.texi: $(qapi-modules)
|
2017-01-19 10:06:44 +01:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
docs/interop/qemu-ga-qapi.texi: $(SRC_PATH)/qga/qapi-schema.json
|
2017-01-13 15:41:35 +01:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
|
|
|
|
|
|
2015-09-10 18:39:01 +03:00
|
|
|
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
|
2016-06-17 17:44:09 +03:00
|
|
|
qemu.1: qemu-option-trace.texi
|
2016-06-17 17:44:14 +03:00
|
|
|
qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
|
2011-12-14 13:58:47 +05:30
|
|
|
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
|
2016-06-17 17:44:12 +03:00
|
|
|
qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
|
2015-08-27 01:34:59 +02:00
|
|
|
qemu-ga.8: qemu-ga.texi
|
|
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
|
|
|
|
|
info: qemu-doc.info docs/interop/qemu-qmp-ref.info docs/interop/qemu-ga-ref.info
|
|
|
|
|
pdf: qemu-doc.pdf docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
|
|
|
|
|
txt: qemu-doc.txt docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
|
2006-05-14 12:07:53 +00:00
|
|
|
|
2017-01-24 14:02:18 +00:00
|
|
|
qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
|
2016-06-17 17:44:09 +03:00
|
|
|
qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
|
2015-09-10 18:39:01 +03:00
|
|
|
qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
|
|
|
|
|
qemu-monitor-info.texi
|
2008-09-24 01:13:40 +00:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
docs/interop/qemu-ga-ref.dvi docs/interop/qemu-ga-ref.html \
|
|
|
|
|
docs/interop/qemu-ga-ref.info docs/interop/qemu-ga-ref.pdf \
|
|
|
|
|
docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7: \
|
|
|
|
|
docs/interop/qemu-ga-ref.texi docs/interop/qemu-ga-qapi.texi
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
docs/interop/qemu-qmp-ref.dvi docs/interop/qemu-qmp-ref.html \
|
|
|
|
|
docs/interop/qemu-qmp-ref.info docs/interop/qemu-qmp-ref.pdf \
|
|
|
|
|
docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7: \
|
|
|
|
|
docs/interop/qemu-qmp-ref.texi docs/interop/qemu-qmp-qapi.texi
|
2017-01-13 15:41:35 +01:00
|
|
|
|
|
|
|
|
|
2013-07-15 23:49:57 +02:00
|
|
|
ifdef CONFIG_WIN32
|
|
|
|
|
|
|
|
|
|
INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
|
|
|
|
|
|
|
|
|
|
nsisflags = -V2 -NOCD
|
|
|
|
|
|
|
|
|
|
ifneq ($(wildcard $(SRC_PATH)/dll),)
|
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
|
|
|
# 64 bit executables
|
|
|
|
|
DLL_PATH = $(SRC_PATH)/dll/w64
|
|
|
|
|
nsisflags += -DW64
|
|
|
|
|
else
|
|
|
|
|
# 32 bit executables
|
|
|
|
|
DLL_PATH = $(SRC_PATH)/dll/w32
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
.PHONY: installer
|
|
|
|
|
installer: $(INSTALLER)
|
|
|
|
|
|
|
|
|
|
INSTDIR=/tmp/qemu-nsis
|
|
|
|
|
|
|
|
|
|
$(INSTALLER): $(SRC_PATH)/qemu.nsi
|
2015-04-01 13:58:38 -04:00
|
|
|
$(MAKE) install prefix=${INSTDIR}
|
2013-07-15 23:49:57 +02:00
|
|
|
ifdef SIGNCODE
|
|
|
|
|
(cd ${INSTDIR}; \
|
|
|
|
|
for i in *.exe; do \
|
|
|
|
|
$(SIGNCODE) $${i}; \
|
|
|
|
|
done \
|
|
|
|
|
)
|
|
|
|
|
endif # SIGNCODE
|
|
|
|
|
(cd ${INSTDIR}; \
|
|
|
|
|
for i in qemu-system-*.exe; do \
|
|
|
|
|
arch=$${i%.exe}; \
|
|
|
|
|
arch=$${arch#qemu-system-}; \
|
|
|
|
|
echo Section \"$$arch\" Section_$$arch; \
|
|
|
|
|
echo SetOutPath \"\$$INSTDIR\"; \
|
|
|
|
|
echo File \"\$${BINDIR}\\$$i\"; \
|
|
|
|
|
echo SectionEnd; \
|
|
|
|
|
done \
|
|
|
|
|
) >${INSTDIR}/system-emulations.nsh
|
|
|
|
|
makensis $(nsisflags) \
|
|
|
|
|
$(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
|
|
|
|
|
$(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
|
|
|
|
|
-DBINDIR="${INSTDIR}" \
|
|
|
|
|
$(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
|
|
|
|
|
-DSRCDIR="$(SRC_PATH)" \
|
|
|
|
|
-DOUTFILE="$(INSTALLER)" \
|
2015-05-03 19:57:09 +02:00
|
|
|
-DDISPLAYVERSION="$(VERSION)" \
|
2013-07-15 23:49:57 +02:00
|
|
|
$(SRC_PATH)/qemu.nsi
|
|
|
|
|
rm -r ${INSTDIR}
|
|
|
|
|
ifdef SIGNCODE
|
|
|
|
|
$(SIGNCODE) $(INSTALLER)
|
|
|
|
|
endif # SIGNCODE
|
|
|
|
|
endif # CONFIG_WIN
|
|
|
|
|
|
2012-07-17 18:58:20 -05:00
|
|
|
# Add a dependency on the generated files, so that they are always
|
|
|
|
|
# rebuilt before other object files
|
2017-06-08 14:59:59 +02:00
|
|
|
ifneq ($(wildcard config-host.mak),)
|
2015-05-22 13:35:07 +08:00
|
|
|
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
|
2017-02-28 12:29:00 +00:00
|
|
|
Makefile: $(GENERATED_FILES)
|
2012-09-16 16:07:13 -04:00
|
|
|
endif
|
2017-06-08 14:59:59 +02:00
|
|
|
endif
|
2012-07-17 18:58:20 -05:00
|
|
|
|
2017-01-25 16:14:15 +00:00
|
|
|
.SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
|
|
|
|
|
$(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
|
|
|
|
|
$(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)
|
|
|
|
|
|
2007-11-07 19:24:02 +00:00
|
|
|
# Include automatically generated dependency files
|
2012-07-11 16:40:21 +02:00
|
|
|
# Dependencies in Makefile.objs files come from our recursive subdir rules
|
|
|
|
|
-include $(wildcard *.d tests/*.d)
|
2016-06-01 12:25:17 +08:00
|
|
|
|
|
|
|
|
include $(SRC_PATH)/tests/docker/Makefile.include
|
2016-09-13 18:20:33 +04:00
|
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
|
help:
|
|
|
|
|
@echo 'Generic targets:'
|
|
|
|
|
@echo ' all - Build all'
|
|
|
|
|
@echo ' dir/file.o - Build specified target only'
|
|
|
|
|
@echo ' install - Install QEMU, documentation and tools'
|
|
|
|
|
@echo ' ctags/TAGS - Generate tags file for editors'
|
|
|
|
|
@echo ' cscope - Generate cscope index'
|
|
|
|
|
@echo ''
|
|
|
|
|
@$(if $(TARGET_DIRS), \
|
|
|
|
|
echo 'Architecture specific targets:'; \
|
|
|
|
|
$(foreach t, $(TARGET_DIRS), \
|
|
|
|
|
printf " %-30s - Build for %s\\n" $(patsubst %,subdir-%,$(t)) $(t);) \
|
|
|
|
|
echo '')
|
|
|
|
|
@echo 'Cleaning targets:'
|
|
|
|
|
@echo ' clean - Remove most generated files but keep the config'
|
|
|
|
|
@echo ' distclean - Remove all generated files'
|
|
|
|
|
@echo ' dist - Build a distributable tarball'
|
|
|
|
|
@echo ''
|
|
|
|
|
@echo 'Test targets:'
|
|
|
|
|
@echo ' check - Run all tests (check-help for details)'
|
|
|
|
|
@echo ' docker - Help about targets running tests inside Docker containers'
|
|
|
|
|
@echo ''
|
|
|
|
|
@echo 'Documentation targets:'
|
2017-01-13 15:41:34 +01:00
|
|
|
@echo ' html info pdf txt'
|
2016-09-13 18:20:33 +04:00
|
|
|
@echo ' - Build documentation in specified format'
|
|
|
|
|
@echo ''
|
|
|
|
|
ifdef CONFIG_WIN32
|
|
|
|
|
@echo 'Windows targets:'
|
2016-10-20 21:36:32 +02:00
|
|
|
@echo ' installer - Build NSIS-based installer for QEMU'
|
2016-09-13 18:20:33 +04:00
|
|
|
ifdef QEMU_GA_MSI_ENABLED
|
|
|
|
|
@echo ' msi - Build MSI-based installer for qemu-ga'
|
|
|
|
|
endif
|
|
|
|
|
@echo ''
|
|
|
|
|
endif
|
|
|
|
|
@echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
|