Files
qemu/Makefile
T

512 lines
17 KiB
Makefile
Raw Normal View History

# 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)
# 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
# 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
CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
CONFIG_ALL=y
-include config-all-devices.mak
-include config-all-disas.mak
2009-01-21 18:12:52 +00:00
include $(SRC_PATH)/rules.mak
2010-01-04 11:02:28 +01:00
config-host.mak: $(SRC_PATH)/configure
2009-10-07 02:40:59 +02:00
@echo $@ is out-of-date, running configure
@# 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:
ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
2009-04-15 14:42:57 +00:00
@echo "Please call configure before running make!"
@exit 1
endif
endif
2003-02-18 23:35:48 +00:00
2012-12-14 20:13:09 +01:00
GENERATED_HEADERS = config-host.h qemu-options.def
GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h
GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c
GENERATED_HEADERS += trace/generated-events.h
GENERATED_SOURCES += trace/generated-events.c
2012-12-14 20:13:09 +01:00
GENERATED_HEADERS += trace/generated-tracers.h
ifeq ($(TRACE_BACKEND),dtrace)
2012-12-14 20:13:09 +01:00
GENERATED_HEADERS += trace/generated-tracers-dtrace.h
endif
2012-12-14 20:13:09 +01:00
GENERATED_SOURCES += trace/generated-tracers.c
# Don't try to regenerate Makefile or configure
# We don't generate any of them
Makefile: ;
configure: ;
.PHONY: all clean cscope distclean dvi html info install install-doc \
2012-07-17 13:33:32 -05:00
pdf recurse-all speed test dist
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)
ifdef BUILD_DOCS
2013-09-10 16:56:14 -04:00
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8 qmp-commands.txt
ifdef CONFIG_VIRTFS
2011-12-14 13:58:47 +05:30
DOCS+=fsdev/virtfs-proxy-helper.1
endif
else
DOCS=
endif
2003-05-25 16:41:18 +00: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))
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
2009-10-07 02:41:02 +02:00
ifeq ($(SUBDIR_DEVICES_MAK),)
config-all-devices.mak:
$(call quiet-command,echo '# no devices' > $@," GEN $@")
else
2009-10-07 02:41:02 +02:00
config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
$(call quiet-command, sed -n \
's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
$(SUBDIR_DEVICES_MAK) | sort -u > $@, \
" GEN $@")
endif
2009-10-07 02:41:02 +02:00
2010-11-26 18:47:45 +00:00
-include $(SUBDIR_DEVICES_MAK_DEP)
2009-11-22 16:25:30 +00:00
%/config-devices.mak: default-configs/%.mak
2011-01-20 20:54:21 +00:00
$(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@ $<, " GEN $@")
@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; \
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 \
mv $@.tmp $@; \
cp -p $@ $@.old; \
2009-11-22 16:25:30 +00:00
fi
defconfig:
rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
ifneq ($(wildcard config-host.mak),)
include $(SRC_PATH)/Makefile.objs
include $(SRC_PATH)/tests/Makefile
endif
ifeq ($(CONFIG_SMARTCARD_NSS),y)
include $(SRC_PATH)/libcacard/Makefile
endif
2012-07-09 20:36:36 +02:00
all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all
2006-05-13 16:54:03 +00:00
config-host.h: config-host.h-timestamp
config-host.h-timestamp: config-host.mak
2010-11-01 18:09:38 +00:00
qemu-options.def: $(SRC_PATH)/qemu-options.hx
2011-01-20 20:54:21 +00:00
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))
$(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
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)
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
subdir-dtc:dtc/libfdt dtc/tests
$(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,)
dtc/%:
mkdir -p $@
2013-01-19 11:06:48 +01:00
$(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y)
2009-07-31 13:18:32 +01:00
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
romsubdir-%:
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
2006-08-01 16:21:11 +00:00
2009-08-03 14:46:21 +02:00
bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
2007-11-07 19:24:02 +00:00
$(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc $(BUILD_DIR)/config-host.h | $(BUILD_DIR)/version.lo
$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<," RC version.o")
$(BUILD_DIR)/version.lo: $(SRC_PATH)/version.rc $(BUILD_DIR)/config-host.h
$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<," RC version.lo")
2013-02-25 23:31:13 +01:00
2013-05-01 18:30:15 +02:00
Makefile: $(version-obj-y) $(version-lobj-y)
######################################################################
2012-12-20 15:40:20 +01:00
# Build libraries
libqemustub.a: $(stub-obj-y)
2013-05-10 17:46:03 -05:00
libqemuutil.a: $(util-obj-y) qapi-types.o qapi-visit.o
2011-05-15 11:51:28 +03:00
######################################################################
2007-11-07 19:24:02 +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
2012-12-21 09:45:20 +01:00
qemu-img$(EXESUF): qemu-img.o $(block-obj-y) libqemuutil.a libqemustub.a
qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) libqemuutil.a libqemustub.a
2013-06-05 14:19:41 +02:00
qemu-io$(EXESUF): qemu-io.o $(block-obj-y) libqemuutil.a libqemustub.a
2012-01-26 09:42:24 -05:00
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o
2012-12-21 09:45:20 +01:00
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o libqemuutil.a libqemustub.a
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
2009-06-07 00:42:17 +01:00
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
2011-01-20 20:54:21 +00: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-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)
2012-07-29 03:11:24 +08:00
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
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)
2012-07-29 03:11:24 +08:00
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
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)
2012-07-29 03:11:24 +08:00
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o qga/qapi-generated -p "qga-" < $<, " GEN $@")
2011-07-19 15:41:55 -05:00
qapi-types.c qapi-types.h :\
2012-08-10 14:08:42 +01:00
$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
2013-05-10 17:46:03 -05:00
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o "." -b < $<, " GEN $@")
qapi-visit.c qapi-visit.h :\
2012-08-10 14:08:42 +01:00
$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
2013-05-10 17:46:03 -05:00
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o "." -b < $<, " GEN $@")
qmp-commands.h qmp-marshal.c :\
2012-08-10 14:08:42 +01:00
$(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
2011-12-27 16:02:16 +02:00
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -m -o "." < $<, " 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)
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
2011-08-11 15:38:12 -05:00
2012-12-21 09:45:20 +01:00
qemu-ga$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a
2012-10-24 11:26:49 +02:00
$(call LINK, $^)
2011-07-20 15:19:37 -05:00
clean:
# avoid old build problems by removing potentially incorrect old files
rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
rm -f qemu-options.def
find . -name '*.[oda]' -type f -exec rm -f {} +
find . -name '*.l[oa]' -type f -exec rm -f {} +
rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
rm -f fsdev/*.pod
rm -rf .libs */.libs
2009-06-09 18:45:16 +00:00
rm -f qemu-img-cmds.h
2012-04-18 20:15:39 +02:00
@# May not be present in GENERATED_HEADERS
2012-12-14 20:13:09 +01:00
rm -f trace/generated-tracers-dtrace.dtrace*
rm -f trace/generated-tracers-dtrace.h*
2012-04-18 20:15:39 +02:00
rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
rm -f $(foreach f,$(GENERATED_SOURCES),$(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; \
rm -f $$d/qemu-options.def; \
2003-08-10 21:39:31 +00:00
done
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
2009-11-13 18:51:05 +09:00
rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
rm -f config-all-devices.mak config-all-disas.mak
rm -f po/*.mo
2009-11-13 18:51:05 +09:00
rm -f roms/seabios/config.mak roms/vgabios/config.mak
2011-04-13 16:42:16 +10:00
rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
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
rm -f qemu-doc.vr
2011-07-25 23:56:02 -04:00
rm -f config.log
rm -f linux-headers/asm
2010-07-08 14:26:18 +09:00
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
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
rm -Rf .sdk
2012-11-24 17:27:18 +08: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 \
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
2011-11-03 15:14:00 +01:00
BLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
2010-11-30 11:54:33 +01:00
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
acpi-dsdt.aml q35-acpi-dsdt.aml \
2010-08-23 12:10:46 +02:00
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
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 \
efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
2013-06-07 13:24:17 -05:00
qemu-icon.bmp qemu_logo_no_text.svg \
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
2012-02-17 18:31:18 +01:00
multiboot.bin linuxboot.bin kvmvapic.bin \
s390-zipl.rom \
2013-04-22 21:10:50 +02:00
s390-ccw.img \
spapr-rtas.bin slof.bin \
palcode-clipper
2008-11-27 15:45:16 +00:00
else
BLOBS=
endif
install-doc: $(DOCS)
$(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
$(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(qemu_docdir)"
2013-09-10 16:56:14 -04:00
$(INSTALL_DATA) qmp-commands.txt "$(DESTDIR)$(qemu_docdir)"
ifdef CONFIG_POSIX
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
$(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
ifneq ($(TOOLS),)
$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
endif
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
install-datadir:
$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
install-localstatedir:
ifdef CONFIG_POSIX
ifneq (,$(findstring qemu-ga,$(TOOLS)))
$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
endif
endif
install-confdir:
$(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)"
install-sysconfig: install-datadir install-confdir
$(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)"
2010-02-20 11:14:59 -06:00
install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \
install-datadir install-localstatedir
$(INSTALL_DIR) "$(DESTDIR)$(bindir)"
ifneq ($(TOOLS),)
$(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
endif
2012-01-26 09:42:24 -05:00
ifneq ($(HELPERS-y),)
$(INSTALL_DIR) "$(DESTDIR)$(libexecdir)"
$(INSTALL_PROG) $(STRIP_OPT) $(HELPERS-y) "$(DESTDIR)$(libexecdir)"
endif
2008-11-27 15:45:16 +00:00
ifneq ($(BLOBS),)
set -e; for x in $(BLOBS); do \
$(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
$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
set -e; for x in $(KEYMAPS); do \
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
2006-04-16 12:41:07 +00:00
done
2003-08-10 21:39:31 +00:00
for d in $(TARGET_DIRS); do \
2004-05-12 19:32:15 +00:00
$(MAKE) -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 $@
2009-08-07 15:43:11 +01:00
.PHONY: TAGS
TAGS:
2013-03-12 13:57:28 +11:00
rm -f $@
find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
2005-08-21 09:23:39 +00:00
cscope:
rm -f ./cscope.*
2011-07-20 23:12:15 -04:00
find "$(SRC_PATH)" -name "*.[chsS]" -print | sed 's,^\./,,' > ./cscope.files
2005-08-21 09:23:39 +00:00
cscope -b
2003-03-23 20:17:16 +00:00
# documentation
MAKEINFO=makeinfo
MAKEINFOFLAGS=--no-headers --no-split --number-sections
TEXIFLAG=$(if $(V),,--quiet)
%.dvi: %.texi
$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@")
2004-04-04 15:21:17 +00:00
%.html: %.texi
2012-03-27 19:15:27 +02:00
$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
" GEN $@")
2003-03-23 20:17:16 +00:00
2006-04-30 22:51:54 +00:00
%.info: %.texi
$(call quiet-command,$(MAKEINFO) $< -o $@," GEN $@")
2006-04-30 22:51:54 +00:00
%.pdf: %.texi
$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<," GEN $@")
qemu-options.texi: $(SRC_PATH)/qemu-options.hx
2011-01-20 20:54:21 +00:00
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
2006-04-30 22:51:54 +00:00
2010-09-30 16:00:22 -03:00
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx
2011-01-20 20:54:21 +00:00
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
2013-09-10 16:56:14 -04:00
qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
2011-01-20 20:54:21 +00:00
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -q < $< > $@," GEN $@")
2010-05-31 14:43:31 -03:00
2009-06-07 00:42:17 +01:00
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
2011-01-20 20:54:21 +00:00
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@," GEN $@")
2009-06-07 00:42:17 +01:00
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
$(call quiet-command, \
2011-01-20 20:54:21 +00:00
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
2012-03-20 02:25:57 +04:00
$(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \
" GEN $@")
2009-06-07 00:42:17 +01:00
qemu-img.1: qemu-img.texi qemu-img-cmds.texi
$(call quiet-command, \
2011-01-20 20:54:21 +00:00
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
2012-03-20 02:25:57 +04:00
$(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \
" GEN $@")
2004-11-15 22:57:26 +00:00
2011-12-14 13:58:47 +05:30
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
$(call quiet-command, \
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
2012-03-20 02:25:57 +04:00
$(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
2011-12-14 13:58:47 +05:30
" GEN $@")
2008-05-27 21:13:40 +00:00
qemu-nbd.8: qemu-nbd.texi
$(call quiet-command, \
2011-01-20 20:54:21 +00:00
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
2012-03-20 02:25:57 +04:00
$(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
" GEN $@")
2008-05-27 21:13:40 +00:00
dvi: qemu-doc.dvi qemu-tech.dvi
html: qemu-doc.html qemu-tech.html
info: qemu-doc.info qemu-tech.info
pdf: qemu-doc.pdf qemu-tech.pdf
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
qemu-img.texi qemu-nbd.texi qemu-options.texi \
qemu-monitor.texi qemu-img-cmds.texi
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
make install prefix=${INSTDIR}
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)" \
$(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
ifneq ($(filter-out %clean,$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
2012-07-17 18:58:20 -05:00
Makefile: $(GENERATED_HEADERS)
endif
2012-07-17 18:58:20 -05:00
2007-11-07 19:24:02 +00:00
# Include automatically generated dependency files
# Dependencies in Makefile.objs files come from our recursive subdir rules
-include $(wildcard *.d tests/*.d)