VirtualBox

source: vbox/trunk/src/VBox/Installer/Config.kmk@ 96407

Last change on this file since 96407 was 96407, checked in by vboxsync, 22 months ago

scm copyright and license note update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1# $Id: Config.kmk 96407 2022-08-22 17:43:14Z vboxsync $
2## @file
3# kBuild Configuration file for the installers
4#
5
6#
7# Copyright (C) 2015-2022 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License
14# as published by the Free Software Foundation, in version 3 of the
15# License.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, see <https://www.gnu.org/licenses>.
24#
25# SPDX-License-Identifier: GPL-3.0-only
26#
27
28VBOX_INSTALLER_CONFIG_KMK_INCLUDED = 1
29
30# Include the top-level configure file.
31ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
32 include $(PATH_ROOT)/Config.kmk
33endif
34
35#
36# Generic stuff.
37#
38VBOX_PATH_INST_COMMON_SRC := $(PATH_ROOT)/src/VBox/Installer/common
39
40
41ifdef VBOX_WITH_PYTHON
42 VBOXINST_SDK_BINDINGS_XPCOM_PYTHON_FILES = \
43 sdk/bindings/xpcom/python/xpcom/__init__.py \
44 sdk/bindings/xpcom/python/xpcom/primitives.py \
45 sdk/bindings/xpcom/python/xpcom/file.py \
46 sdk/bindings/xpcom/python/xpcom/xpcom_consts.py \
47 sdk/bindings/xpcom/python/xpcom/nsError.py \
48 sdk/bindings/xpcom/python/xpcom/xpt.py \
49 sdk/bindings/xpcom/python/xpcom/components.py \
50 sdk/bindings/xpcom/python/xpcom/vboxxpcom.py \
51 sdk/bindings/xpcom/python/xpcom/client/__init__.py \
52 sdk/bindings/xpcom/python/xpcom/server/__init__.py \
53 sdk/bindings/xpcom/python/xpcom/server/enumerator.py \
54 sdk/bindings/xpcom/python/xpcom/server/factory.py \
55 sdk/bindings/xpcom/python/xpcom/server/loader.py \
56 sdk/bindings/xpcom/python/xpcom/server/module.py \
57 sdk/bindings/xpcom/python/xpcom/server/policy.py
58 VBOXINST_SDK_INSTALLER_PYTHON_FILES = \
59 sdk/installer/vboxapisetup.py \
60 sdk/installer/vboxapi/__init__.py \
61 sdk/installer/vboxapi/VirtualBox_constants.py
62endif
63
64
65#
66# List of unattended installation script templates (lives in
67# src/VBox/Main/UnattendedTemplates).
68#
69ifdef VBOX_WITH_UNATTENDED
70 VBOX_UNATTENDED_TEMPLATES := \
71 debian_preseed.cfg \
72 ubuntu_preseed.cfg \
73 fedora_ks.cfg \
74 ol_ks.cfg \
75 rhel3_ks.cfg \
76 rhel4_ks.cfg \
77 rhel5_ks.cfg \
78 redhat67_ks.cfg \
79 os2_response_files.rsp \
80 win_nt5_unattended.sif \
81 win_nt6_unattended.xml \
82 \
83 debian_postinstall.sh \
84 redhat_postinstall.sh \
85 ol_postinstall.sh \
86 os2_cid_install.cmd \
87 win_postinstall.cmd \
88 \
89 os2_util.exe
90 ifndef VBOX_OSE
91 VBOX_UNATTENDED_TEMPLATES += \
92 lgw_ks.cfg \
93 lgw_postinstall.sh
94 endif
95else
96 VBOX_UNATTENDED_TEMPLATES :=
97endif
98
99
100#
101# DTrace globals.
102#
103ifdef VBOX_WITH_DTRACE
104 ## List of files in the per arch DTrace library directory.
105 VBOXINST_DTRACE_LIB_ARCH_FILES := \
106 vbox-types.d \
107 vbox-arch-types.d \
108 vm.d \
109 cpumctx.d \
110 CPUMInternal.d \
111 x86.d
112 ## List of files in the per arch DTrace testcase directory.
113 VBOXINST_DTRACE_TESTCASE_ARCH_FILES := \
114 vbox-vm-struct-test.d
115 ## List of file in the DTrace scripts directory.
116 VBOXINST_DTRACE_SCRIPTS_FILES :=
117else
118 VBOXINST_DTRACE_LIB_ARCH_FILES :=
119 VBOXINST_DTRACE_TESTCASE_ARCH_FILES :=
120 VBOXINST_DTRACE_SCRIPTS_FILES :=
121endif
122
123
124#
125# Some combined package (CP) globals.
126#
127ifeq ($(KBUILD_TARGET_ARCH),x86)
128 VBOX_CP_THIS_BITS := 32
129 ifdef VBOX_WITH_COMBINED_PACKAGE
130 VBOX_CP_OTHER_ARCH := amd64
131 VBOX_CP_OTHER_BITS := 64
132 else
133 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
134 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
135 endif
136else
137 VBOX_CP_THIS_BITS := 64
138 ifdef VBOX_WITH_COMBINED_PACKAGE
139 VBOX_CP_OTHER_ARCH := x86
140 VBOX_CP_OTHER_BITS := 32
141 else
142 VBOX_CP_OTHER_ARCH = $(error VBOX_CP_OTHER_ARCH used in without VBOX_WITH_COMBINED_PACKAGE set)
143 VBOX_CP_OTHER_BITS = $(error VBOX_CP_OTHER_ARCH used in without VBOX_CP_OTHER_BITS set)
144 endif
145endif
146
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use