代码拉取完成,页面将自动刷新
#
# Jailhouse, a Linux-based partitioning hypervisor
#
# Copyright (c) Siemens AG, 2013, 2014
#
# Authors:
# Jan Kiszka <jan.kiszka@siemens.com>
#
# This work is licensed under the terms of the GNU GPL, version 2. See
# the COPYING file in the top-level directory.
#
# Check make version
need := 3.82
ifneq ($(need),$(firstword $(sort $(MAKE_VERSION) $(need))))
$(error Too old make version $(MAKE_VERSION), at least $(need) required)
endif
# no recipes above this one (also no includes)
all: modules
# includes installation-related variables and definitions
include scripts/include.mk
# out-of-tree build for our kernel-module, firmware and inmates
KDIR ?= /lib/modules/`uname -r`/build
INSTALL_MOD_PATH ?= $(DESTDIR)
export INSTALL_MOD_PATH
DOXYGEN ?= doxygen
kbuild = -C $(KDIR) M=$$PWD $@
ifneq ($(DESTDIR),)
PIP_ROOT = --root=$(shell readlink -f $(DESTDIR))
endif
modules clean:
$(Q)$(MAKE) $(kbuild)
# documentation, build needs to be triggered explicitly
docs:
$(DOXYGEN) Documentation/Doxyfile
modules_install: modules
$(Q)$(MAKE) $(kbuild)
firmware_install: $(DESTDIR)$(firmwaredir) modules
$(INSTALL_DATA) hypervisor/jailhouse*.bin $<
tool_inmates_install: $(DESTDIR)$(libexecdir)/jailhouse
$(INSTALL_DATA) inmates/tools/$(ARCH)/*.bin $<
install: modules_install firmware_install tool_inmates_install
$(Q)$(MAKE) -C tools $@ src=.
ifeq ($(strip $(PYTHON_PIP_USABLE)), yes)
$(PIP) install --upgrade --force-reinstall $(PIP_ROOT) .
endif
.PHONY: modules_install install clean firmware_install modules tools docs \
docs_clean
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。