-
Notifications
You must be signed in to change notification settings - Fork 335
/
Makefile
62 lines (47 loc) · 1.52 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Jailhouse, a Linux-based partitioning hypervisor
#
# Copyright (c) Siemens AG, 2013, 2014
#
# Authors:
# Jan Kiszka <[email protected]>
#
# 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