1 | # $Id: Makefile.kmk 70577 2018-01-13 18:43:03Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for Python bindings
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2017 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | ifdef VBOX_WITH_MULTIVERSION_PYTHON
|
---|
22 | VBOX_MULTIPYTHON = 1
|
---|
23 | else
|
---|
24 | VBOX_MULTIPYTHON = 0
|
---|
25 | endif
|
---|
26 |
|
---|
27 | #
|
---|
28 | # List of supported Python versions, defining a number of
|
---|
29 | # VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|DEF]_[INC|LIB] variables
|
---|
30 | # which get picked up below.
|
---|
31 | #
|
---|
32 | ifeq ($(KBUILD_TARGET),darwin) # Relatively predictable, don't script.
|
---|
33 | ifndef VBOX_WITHOUT_VBOXPYTHON_FOR_OSX_10_6
|
---|
34 | if1of ($(VBOX_DEF_MACOSX_VERSION_MIN), 10.5 10.4)
|
---|
35 | VBOX_PYTHON26_INC = $(VBOX_PATH_MACOSX_SDK_10_6)/usr/include/python2.6
|
---|
36 | VBOX_PYTHON26_LIB = $(VBOX_PATH_MACOSX_SDK_10_6)/usr/lib/libpython2.6.dylib
|
---|
37 | else if "$(VBOX_DEF_MACOSX_VERSION_MIN)" == "10.9" && "$(VBOX_XCODE_VERSION)" == "6.2" # 'effing 10.9 SDK in Xcode 6.2 is missing python. Stupid, stupid Apple!!
|
---|
38 | VBOX_PYTHON26_INC = $(VBOX_PATH_MACOSX_SDK)/../MacOSX10.10.sdk/System/Library/Frameworks/Python.framework/Versions/2.6/Headers
|
---|
39 | VBOX_PYTHON26_LIB = $(VBOX_PATH_MACOSX_SDK)/../MacOSX10.10.sdk/System/Library/Frameworks/Python.framework/Versions/2.6/Python
|
---|
40 | else
|
---|
41 | VBOX_PYTHON26_INC = $(VBOX_PATH_MACOSX_SDK)/System/Library/Frameworks/Python.framework/Versions/2.6/Headers
|
---|
42 | VBOX_PYTHON26_LIB = $(VBOX_PATH_MACOSX_SDK)/System/Library/Frameworks/Python.framework/Versions/2.6/Python
|
---|
43 | endif
|
---|
44 | if !defined(VBOX_OSE) || "$(wildcard $(VBOX_PYTHON26_LIB))" != ""
|
---|
45 | VBOX_PYTHON26_LIB_X86 = $(VBOX_PYTHON26_LIB)
|
---|
46 | else
|
---|
47 | VBOX_PYTHON26_INC =
|
---|
48 | VBOX_PYTHON26_LIB =
|
---|
49 | endif
|
---|
50 | endif
|
---|
51 | ifndef VBOX_WITHOUT_VBOXPYTHON_FOR_OSX_10_7
|
---|
52 | if1of ($(VBOX_DEF_MACOSX_VERSION_MIN), 10.6 10.5 10.4)
|
---|
53 | VBOX_PYTHON27_INC = $(VBOX_PATH_MACOSX_SDK_10_7)/usr/include/python2.7
|
---|
54 | VBOX_PYTHON27_LIB = $(VBOX_PATH_MACOSX_SDK_10_7)/usr/lib/libpython2.7.dylib
|
---|
55 | else if "$(VBOX_DEF_MACOSX_VERSION_MIN)" == "10.9" && "$(VBOX_XCODE_VERSION)" == "6.2" # 'effing 10.9 SDK in Xcode 6.2 is missing python. Stupid, stupid Apple!!
|
---|
56 | VBOX_PYTHON27_INC = $(VBOX_PATH_MACOSX_SDK)/../MacOSX10.10.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/Headers
|
---|
57 | VBOX_PYTHON27_LIB = $(VBOX_PATH_MACOSX_SDK)/../MacOSX10.10.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/Python
|
---|
58 | else
|
---|
59 | VBOX_PYTHON27_INC = $(VBOX_PATH_MACOSX_SDK)/System/Library/Frameworks/Python.framework/Versions/2.7/Headers
|
---|
60 | VBOX_PYTHON27_LIB = $(VBOX_PATH_MACOSX_SDK)/System/Library/Frameworks/Python.framework/Versions/2.7/Python
|
---|
61 | endif
|
---|
62 | if !defined(VBOX_OSE) || "$(wildcard $(VBOX_PYTHON27_LIB))" != ""
|
---|
63 | VBOX_PYTHON27_LIB_X86 = $(VBOX_PYTHON27_LIB)
|
---|
64 | else
|
---|
65 | VBOX_PYTHON27_INC =
|
---|
66 | VBOX_PYTHON27_LIB =
|
---|
67 | endif
|
---|
68 | endif
|
---|
69 | # No Python 3.x yet as part of OSX versions including El Capitan, 10.11.
|
---|
70 |
|
---|
71 | else
|
---|
72 | # Use the script.
|
---|
73 | $(eval $(subst |,$(NL),$(shell $(VBOX_BLD_PYTHON) \
|
---|
74 | $(PATH_SUB_CURRENT)/gen_python_deps.py \
|
---|
75 | $(KBUILD_TARGET) \
|
---|
76 | $(KBUILD_TARGET_ARCH) \
|
---|
77 | $(VBOX_MULTIPYTHON) )))
|
---|
78 | endif
|
---|
79 |
|
---|
80 | ifndef VBOX_ONLY_SDK
|
---|
81 |
|
---|
82 | #
|
---|
83 | # Base Python Client Module - the C++/XPCOM bits (not actually built).
|
---|
84 | #
|
---|
85 | VBoxPythonBase_TEMPLATE = XPCOM
|
---|
86 | VBoxPythonBase_CXXFLAGS = -Wno-write-strings
|
---|
87 | VBoxPythonBase_DLLSUFF.darwin = .so
|
---|
88 | VBoxPythonBase_DEFS = \
|
---|
89 | _IMPL_NS_COM \
|
---|
90 | _IMPL_NS_BASE \
|
---|
91 | EXPORT_XPTI_API \
|
---|
92 | EXPORT_XPT_API \
|
---|
93 | VBOX_PYXPCOM \
|
---|
94 | VBOX_WITH_XPCOM \
|
---|
95 | VBOX_PYXPCOM_VERSIONED
|
---|
96 | #VBoxPythonBase_DEFS.debug = \
|
---|
97 | # VBOX_DEBUG_LIFETIMES
|
---|
98 | VBoxPythonBase_INCS = \
|
---|
99 | src
|
---|
100 | VBoxPythonBase_SOURCES = \
|
---|
101 | src/module/_xpcom.cpp \
|
---|
102 | src/dllmain.cpp \
|
---|
103 | src/ErrorUtils.cpp \
|
---|
104 | src/PyGBase.cpp \
|
---|
105 | src/PyGInputStream.cpp \
|
---|
106 | src/PyGModule.cpp \
|
---|
107 | src/PyGStub.cpp \
|
---|
108 | src/PyGWeakReference.cpp \
|
---|
109 | src/PyIClassInfo.cpp \
|
---|
110 | src/PyIComponentManager.cpp \
|
---|
111 | src/PyIComponentManagerObsolete.cpp \
|
---|
112 | src/PyIEnumerator.cpp \
|
---|
113 | src/PyIID.cpp \
|
---|
114 | src/PyIInputStream.cpp \
|
---|
115 | src/PyIInterfaceInfo.cpp \
|
---|
116 | src/PyIInterfaceInfoManager.cpp \
|
---|
117 | src/PyISimpleEnumerator.cpp \
|
---|
118 | src/PyISupports.cpp \
|
---|
119 | src/PyIVariant.cpp \
|
---|
120 | src/Pyxpt_info.cpp \
|
---|
121 | src/TypeObject.cpp \
|
---|
122 | src/VariantUtils.cpp
|
---|
123 | VBoxPythonBase_LIBS = \
|
---|
124 | $(PATH_STAGE_LIB)/VBoxCOM$(VBOX_SUFF_LIB) \
|
---|
125 | $(PATH_STAGE_BIN)/VBoxXPCOM$(VBOX_SUFF_DLL)
|
---|
126 |
|
---|
127 | # pymalloc abi variant.
|
---|
128 | VBoxPythonBase_m_EXTENDS = VBoxPythonBase
|
---|
129 | VBoxPythonBase_m_DEFS = MODULE_NAME_SUFFIX=m $(VBoxPythonBase_DEFS)
|
---|
130 |
|
---|
131 | # 32-bit base.
|
---|
132 | VBoxPythonBase_x86_TEMPLATE = XPCOM-x86
|
---|
133 | VBoxPythonBase_x86_EXTENDS = VBoxPythonBase
|
---|
134 | VBoxPythonBase_x86_DEFS = MODULE_NAME_SUFFIX=_x86 $(VBoxPythonBase_DEFS)
|
---|
135 | VBoxPythonBase_x86_LIBS = \
|
---|
136 | $(PATH_STAGE_LIB)/VBoxCOM-x86$(VBOX_SUFF_LIB) \
|
---|
137 | $(PATH_STAGE_BIN)/VBoxXPCOM-x86$(VBOX_SUFF_DLL)
|
---|
138 |
|
---|
139 | # 32-bit pymalloc abi variant.
|
---|
140 | VBoxPythonBase_x86_m_EXTENDS = VBoxPythonBase_x86
|
---|
141 | VBoxPythonBase_x86_m_DEFS = MODULE_NAME_SUFFIX=_x86m $(VBoxPythonBase_DEFS)
|
---|
142 |
|
---|
143 |
|
---|
144 | ifdef VBOX_PYTHON26_INC
|
---|
145 | #
|
---|
146 | # Python 2.6 version
|
---|
147 | #
|
---|
148 | DLLS += VBoxPython2_6
|
---|
149 | VBoxPython2_6_EXTENDS = VBoxPythonBase
|
---|
150 | VBoxPython2_6_EXTENDS_BY = appending
|
---|
151 | VBoxPython2_6_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.6",OSX106,)
|
---|
152 | VBoxPython2_6_INCS = $(VBOX_PYTHON26_INC)
|
---|
153 | VBoxPython2_6_LIBS = $(VBOX_PYTHON26_LIB)
|
---|
154 |
|
---|
155 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
156 | ifdef VBOX_PYTHON26_LIB_X86
|
---|
157 | DLLS += VBoxPython2_6_x86
|
---|
158 | VBoxPython2_6_x86_EXTENDS = VBoxPythonBase_x86
|
---|
159 | VBoxPython2_6_x86_EXTENDS_BY = appending
|
---|
160 | VBoxPython2_6_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.6",OSX106,-x86)
|
---|
161 | VBoxPython2_6_x86_INCS = $(VBOX_PYTHON26_INC)
|
---|
162 | VBoxPython2_6_x86_LIBS = $(VBOX_PYTHON26_LIB_X86)
|
---|
163 | endif
|
---|
164 | endif
|
---|
165 | endif
|
---|
166 |
|
---|
167 | ifdef VBOX_PYTHON27_INC
|
---|
168 | #
|
---|
169 | # Python 2.7 version
|
---|
170 | #
|
---|
171 | DLLS += VBoxPython2_7
|
---|
172 | VBoxPython2_7_EXTENDS = VBoxPythonBase
|
---|
173 | VBoxPython2_7_EXTENDS_BY = appending
|
---|
174 | VBoxPython2_7_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.7",OSX107,)
|
---|
175 | VBoxPython2_7_INCS = $(VBOX_PYTHON27_INC)
|
---|
176 | VBoxPython2_7_LIBS = $(VBOX_PYTHON27_LIB)
|
---|
177 |
|
---|
178 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
179 | ifdef VBOX_PYTHON27_LIB_X86
|
---|
180 | DLLS += VBoxPython2_7_x86
|
---|
181 | VBoxPython2_7_x86_EXTENDS = VBoxPythonBase_x86
|
---|
182 | VBoxPython2_7_x86_EXTENDS_BY = appending
|
---|
183 | VBoxPython2_7_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.7",OSX107,-x86)
|
---|
184 | VBoxPython2_7_x86_INCS = $(VBOX_PYTHON27_INC)
|
---|
185 | VBoxPython2_7_x86_LIBS = $(VBOX_PYTHON27_LIB_X86)
|
---|
186 | endif
|
---|
187 | endif
|
---|
188 | endif
|
---|
189 |
|
---|
190 | ifdef VBOX_PYTHON31_INC
|
---|
191 | #
|
---|
192 | # Python 3.1 version
|
---|
193 | #
|
---|
194 | DLLS += VBoxPython3_1
|
---|
195 | VBoxPython3_1_EXTENDS = VBoxPythonBase
|
---|
196 | VBoxPython3_1_EXTENDS_BY = appending
|
---|
197 | VBoxPython3_1_TEMPLATE = XPCOM
|
---|
198 | VBoxPython3_1_INCS = $(VBOX_PYTHON31_INC)
|
---|
199 | VBoxPython3_1_LIBS = $(VBOX_PYTHON31_LIB)
|
---|
200 |
|
---|
201 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
202 | ifdef VBOX_PYTHON31_LIB_X86
|
---|
203 | DLLS += VBoxPython3_1_x86
|
---|
204 | VBoxPython3_1_x86_EXTENDS = VBoxPythonBase_x86
|
---|
205 | VBoxPython3_1_x86_EXTENDS_BY = appending
|
---|
206 | VBoxPython3_1_x86_TEMPLATE = XPCOM
|
---|
207 | VBoxPython3_1_x86_INCS = $(VBOX_PYTHON31_INC)
|
---|
208 | VBoxPython3_1_x86_LIBS = $(VBOX_PYTHON31_LIB_X86)
|
---|
209 | endif
|
---|
210 | endif
|
---|
211 | endif
|
---|
212 |
|
---|
213 | ifdef VBOX_PYTHON32_INC
|
---|
214 | #
|
---|
215 | # Python 3.2 version
|
---|
216 | #
|
---|
217 | DLLS += VBoxPython3_2
|
---|
218 | VBoxPython3_2_EXTENDS = VBoxPythonBase
|
---|
219 | VBoxPython3_2_EXTENDS_BY = appending
|
---|
220 | VBoxPython3_2_TEMPLATE = XPCOM
|
---|
221 | VBoxPython3_2_INCS = $(VBOX_PYTHON32_INC)
|
---|
222 | VBoxPython3_2_LIBS = $(VBOX_PYTHON32_LIB)
|
---|
223 |
|
---|
224 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
225 | ifdef VBOX_PYTHON32_LIB_X86
|
---|
226 | DLLS += VBoxPython3_2_x86
|
---|
227 | VBoxPython3_2_x86_EXTENDS = VBoxPythonBase_x86
|
---|
228 | VBoxPython3_2_x86_EXTENDS_BY = appending
|
---|
229 | VBoxPython3_2_x86_TEMPLATE = XPCOM
|
---|
230 | VBoxPython3_2_x86_INCS = $(VBOX_PYTHON32_INC)
|
---|
231 | VBoxPython3_2_x86_LIBS = $(VBOX_PYTHON32_LIB_X86)
|
---|
232 | endif
|
---|
233 | endif
|
---|
234 | endif
|
---|
235 |
|
---|
236 | ifdef VBOX_PYTHON32M_INC
|
---|
237 | #
|
---|
238 | # Python 3.2 version with pymalloc
|
---|
239 | #
|
---|
240 | DLLS += VBoxPython3_2m
|
---|
241 | VBoxPython3_2m_EXTENDS = VBoxPythonBase_m
|
---|
242 | VBoxPython3_2m_EXTENDS_BY = appending
|
---|
243 | VBoxPython3_2m_TEMPLATE = XPCOM
|
---|
244 | VBoxPython3_2m_INCS = $(VBOX_PYTHON32M_INC)
|
---|
245 | VBoxPython3_2m_LIBS = $(VBOX_PYTHON32M_LIB)
|
---|
246 | VBoxPython3_2m_DEFS = MODULE_NAME_SUFFIX
|
---|
247 |
|
---|
248 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
249 | ifdef VBOX_PYTHON32M_LIB_X86
|
---|
250 | DLLS += VBoxPython3_2m_x86
|
---|
251 | VBoxPython3_2m_x86_EXTENDS = VBoxPythonBase_x86_m
|
---|
252 | VBoxPython3_2m_x86_EXTENDS_BY = appending
|
---|
253 | VBoxPython3_2m_x86_TEMPLATE = XPCOM
|
---|
254 | VBoxPython3_2m_x86_INCS = $(VBOX_PYTHON32M_INC)
|
---|
255 | VBoxPython3_2m_x86_LIBS = $(VBOX_PYTHON32M_LIB_X86)
|
---|
256 | endif
|
---|
257 | endif
|
---|
258 | endif
|
---|
259 |
|
---|
260 | ifdef VBOX_PYTHON33_INC
|
---|
261 | #
|
---|
262 | # Python 3.3 version
|
---|
263 | #
|
---|
264 | DLLS += VBoxPython3_3
|
---|
265 | VBoxPython3_3_EXTENDS = VBoxPythonBase
|
---|
266 | VBoxPython3_3_EXTENDS_BY = appending
|
---|
267 | VBoxPython3_3_TEMPLATE = XPCOM
|
---|
268 | VBoxPython3_3_INCS = $(VBOX_PYTHON33_INC)
|
---|
269 | VBoxPython3_3_LIBS = $(VBOX_PYTHON33_LIB)
|
---|
270 |
|
---|
271 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
272 | ifdef VBOX_PYTHON33_LIB_X86
|
---|
273 | DLLS += VBoxPython3_3_x86
|
---|
274 | VBoxPython3_3_x86_EXTENDS = VBoxPythonBase_x86
|
---|
275 | VBoxPython3_3_x86_EXTENDS_BY = appending
|
---|
276 | VBoxPython3_3_x86_TEMPLATE = XPCOM
|
---|
277 | VBoxPython3_3_x86_INCS = $(VBOX_PYTHON33_INC)
|
---|
278 | VBoxPython3_3_x86_LIBS = $(VBOX_PYTHON33_LIB_X86)
|
---|
279 | endif
|
---|
280 | endif
|
---|
281 | endif
|
---|
282 |
|
---|
283 | ifdef VBOX_PYTHON33M_INC
|
---|
284 | #
|
---|
285 | # Python 3.3 version with pymalloc
|
---|
286 | #
|
---|
287 | DLLS += VBoxPython3_3m
|
---|
288 | VBoxPython3_3m_EXTENDS = VBoxPythonBase_m
|
---|
289 | VBoxPython3_3m_EXTENDS_BY = appending
|
---|
290 | VBoxPython3_3m_TEMPLATE = XPCOM
|
---|
291 | VBoxPython3_3m_INCS = $(VBOX_PYTHON33M_INC)
|
---|
292 | VBoxPython3_3m_LIBS = $(VBOX_PYTHON33M_LIB)
|
---|
293 |
|
---|
294 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
295 | ifdef VBOX_PYTHON33M_LIB_X86
|
---|
296 | DLLS += VBoxPython3_3m_x86
|
---|
297 | VBoxPython3_3m_x86_EXTENDS = VBoxPythonBase_x86_m
|
---|
298 | VBoxPython3_3m_x86_EXTENDS_BY = appending
|
---|
299 | VBoxPython3_3m_x86_TEMPLATE = XPCOM
|
---|
300 | VBoxPython3_3m_x86_INCS = $(VBOX_PYTHON33M_INC)
|
---|
301 | VBoxPython3_3m_x86_LIBS = $(VBOX_PYTHON33M_LIB_X86)
|
---|
302 | endif
|
---|
303 | endif
|
---|
304 | endif
|
---|
305 |
|
---|
306 | ifdef VBOX_PYTHON34_INC
|
---|
307 | #
|
---|
308 | # Python 3.4 version
|
---|
309 | #
|
---|
310 | DLLS += VBoxPython3_4
|
---|
311 | VBoxPython3_4_EXTENDS = VBoxPythonBase
|
---|
312 | VBoxPython3_4_EXTENDS_BY = appending
|
---|
313 | VBoxPython3_4_TEMPLATE = XPCOM
|
---|
314 | VBoxPython3_4_INCS = $(VBOX_PYTHON34_INC)
|
---|
315 | VBoxPython3_4_LIBS = $(VBOX_PYTHON34_LIB)
|
---|
316 |
|
---|
317 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
318 | ifdef VBOX_PYTHON34_LIB_X86
|
---|
319 | DLLS += VBoxPython3_4_x86
|
---|
320 | VBoxPython3_4_x86_EXTENDS = VBoxPythonBase_x86
|
---|
321 | VBoxPython3_4_x86_EXTENDS_BY = appending
|
---|
322 | VBoxPython3_4_x86_TEMPLATE = XPCOM
|
---|
323 | VBoxPython3_4_x86_INCS = $(VBOX_PYTHON34_INC)
|
---|
324 | VBoxPython3_4_x86_LIBS = $(VBOX_PYTHON34_LIB_X86)
|
---|
325 | endif
|
---|
326 | endif
|
---|
327 | endif
|
---|
328 |
|
---|
329 | ifdef VBOX_PYTHON34M_INC
|
---|
330 | #
|
---|
331 | # Python 3.4 version with pymalloc
|
---|
332 | #
|
---|
333 | DLLS += VBoxPython3_4m
|
---|
334 | VBoxPython3_4m_EXTENDS = VBoxPythonBase_m
|
---|
335 | VBoxPython3_4m_EXTENDS_BY = appending
|
---|
336 | VBoxPython3_4m_TEMPLATE = XPCOM
|
---|
337 | VBoxPython3_4m_INCS = $(VBOX_PYTHON34M_INC)
|
---|
338 | VBoxPython3_4m_LIBS = $(VBOX_PYTHON34M_LIB)
|
---|
339 |
|
---|
340 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
341 | ifdef VBOX_PYTHON34M_LIB_X86
|
---|
342 | DLLS += VBoxPython3_4m_x86
|
---|
343 | VBoxPython3_4m_x86_EXTENDS = VBoxPythonBase_x86_m
|
---|
344 | VBoxPython3_4m_x86_EXTENDS_BY = appending
|
---|
345 | VBoxPython3_4m_x86_TEMPLATE = XPCOM
|
---|
346 | VBoxPython3_4m_x86_INCS = $(VBOX_PYTHON34M_INC)
|
---|
347 | VBoxPython3_4m_x86_LIBS = $(VBOX_PYTHON34M_LIB_X86)
|
---|
348 | endif
|
---|
349 | endif
|
---|
350 | endif
|
---|
351 |
|
---|
352 | ifdef VBOX_PYTHON35_INC
|
---|
353 | #
|
---|
354 | # Python 3.5 version
|
---|
355 | #
|
---|
356 | DLLS += VBoxPython3_5
|
---|
357 | VBoxPython3_5_EXTENDS = VBoxPythonBase
|
---|
358 | VBoxPython3_5_EXTENDS_BY = appending
|
---|
359 | VBoxPython3_5_TEMPLATE = XPCOM
|
---|
360 | VBoxPython3_5_INCS = $(VBOX_PYTHON35_INC)
|
---|
361 | VBoxPython3_5_LIBS = $(VBOX_PYTHON35_LIB)
|
---|
362 |
|
---|
363 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
364 | ifdef VBOX_PYTHON35_LIB_X86
|
---|
365 | DLLS += VBoxPython3_5_x86
|
---|
366 | VBoxPython3_5_x86_EXTENDS = VBoxPythonBase_x86
|
---|
367 | VBoxPython3_5_x86_EXTENDS_BY = appending
|
---|
368 | VBoxPython3_5_x86_TEMPLATE = XPCOM
|
---|
369 | VBoxPython3_5_x86_INCS = $(VBOX_PYTHON35_INC)
|
---|
370 | VBoxPython3_5_x86_LIBS = $(VBOX_PYTHON35_LIB_X86)
|
---|
371 | endif
|
---|
372 | endif
|
---|
373 | endif
|
---|
374 |
|
---|
375 | ifdef VBOX_PYTHON35M_INC
|
---|
376 | #
|
---|
377 | # Python 3.5 version with pymalloc
|
---|
378 | #
|
---|
379 | DLLS += VBoxPython3_5m
|
---|
380 | VBoxPython3_5m_EXTENDS = VBoxPythonBase_m
|
---|
381 | VBoxPython3_5m_EXTENDS_BY = appending
|
---|
382 | VBoxPython3_5m_TEMPLATE = XPCOM
|
---|
383 | VBoxPython3_5m_INCS = $(VBOX_PYTHON35M_INC)
|
---|
384 | VBoxPython3_5m_LIBS = $(VBOX_PYTHON35M_LIB)
|
---|
385 |
|
---|
386 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
387 | ifdef VBOX_PYTHON35M_LIB_X86
|
---|
388 | DLLS += VBoxPython3_5m_x86
|
---|
389 | VBoxPython3_5m_x86_EXTENDS = VBoxPythonBase_x86_m
|
---|
390 | VBoxPython3_5m_x86_EXTENDS_BY = appending
|
---|
391 | VBoxPython3_5m_x86_TEMPLATE = XPCOM
|
---|
392 | VBoxPython3_5m_x86_INCS = $(VBOX_PYTHON35M_INC)
|
---|
393 | VBoxPython3_5m_x86_LIBS = $(VBOX_PYTHON35M_LIB_X86)
|
---|
394 | endif
|
---|
395 | endif
|
---|
396 | endif
|
---|
397 |
|
---|
398 | ifdef VBOX_PYTHON36_INC
|
---|
399 | #
|
---|
400 | # Python 3.6 version
|
---|
401 | #
|
---|
402 | DLLS += VBoxPython3_6
|
---|
403 | VBoxPython3_6_EXTENDS = VBoxPythonBase
|
---|
404 | VBoxPython3_6_EXTENDS_BY = appending
|
---|
405 | VBoxPython3_6_TEMPLATE = XPCOM
|
---|
406 | VBoxPython3_6_INCS = $(VBOX_PYTHON36_INC)
|
---|
407 | VBoxPython3_6_LIBS = $(VBOX_PYTHON36_LIB)
|
---|
408 |
|
---|
409 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
410 | ifdef VBOX_PYTHON36_LIB_X86
|
---|
411 | DLLS += VBoxPython3_6_x86
|
---|
412 | VBoxPython3_6_x86_EXTENDS = VBoxPythonBase_x86
|
---|
413 | VBoxPython3_6_x86_EXTENDS_BY = appending
|
---|
414 | VBoxPython3_6_x86_TEMPLATE = XPCOM
|
---|
415 | VBoxPython3_6_x86_INCS = $(VBOX_PYTHON36_INC)
|
---|
416 | VBoxPython3_6_x86_LIBS = $(VBOX_PYTHON36_LIB_X86)
|
---|
417 | endif
|
---|
418 | endif
|
---|
419 | endif
|
---|
420 |
|
---|
421 | ifdef VBOX_PYTHON36M_INC
|
---|
422 | #
|
---|
423 | # Python 3.6 version with pymalloc
|
---|
424 | #
|
---|
425 | DLLS += VBoxPython3_6m
|
---|
426 | VBoxPython3_6m_EXTENDS = VBoxPythonBase_m
|
---|
427 | VBoxPython3_6m_EXTENDS_BY = appending
|
---|
428 | VBoxPython3_6m_TEMPLATE = XPCOM
|
---|
429 | VBoxPython3_6m_INCS = $(VBOX_PYTHON36M_INC)
|
---|
430 | VBoxPython3_6m_LIBS = $(VBOX_PYTHON36M_LIB)
|
---|
431 |
|
---|
432 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
433 | ifdef VBOX_PYTHON36M_LIB_X86
|
---|
434 | DLLS += VBoxPython3_6m_x86
|
---|
435 | VBoxPython3_6m_x86_EXTENDS = VBoxPythonBase_x86_m
|
---|
436 | VBoxPython3_6m_x86_EXTENDS_BY = appending
|
---|
437 | VBoxPython3_6m_x86_TEMPLATE = XPCOM
|
---|
438 | VBoxPython3_6m_x86_INCS = $(VBOX_PYTHON36M_INC)
|
---|
439 | VBoxPython3_6m_x86_LIBS = $(VBOX_PYTHON36M_LIB_X86)
|
---|
440 | endif
|
---|
441 | endif
|
---|
442 | endif
|
---|
443 |
|
---|
444 | ifdef VBOX_PYTHON37_INC
|
---|
445 | #
|
---|
446 | # Python 3.7 version
|
---|
447 | #
|
---|
448 | DLLS += VBoxPython3_7
|
---|
449 | VBoxPython3_7_EXTENDS = VBoxPythonBase
|
---|
450 | VBoxPython3_7_EXTENDS_BY = appending
|
---|
451 | VBoxPython3_7_TEMPLATE = XPCOM
|
---|
452 | VBoxPython3_7_INCS = $(VBOX_PYTHON37_INC)
|
---|
453 | VBoxPython3_7_LIBS = $(VBOX_PYTHON37_LIB)
|
---|
454 |
|
---|
455 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
456 | ifdef VBOX_PYTHON37_LIB_X86
|
---|
457 | DLLS += VBoxPython3_7_x86
|
---|
458 | VBoxPython3_7_x86_EXTENDS = VBoxPythonBase_x86
|
---|
459 | VBoxPython3_7_x86_EXTENDS_BY = appending
|
---|
460 | VBoxPython3_7_x86_TEMPLATE = XPCOM
|
---|
461 | VBoxPython3_7_x86_INCS = $(VBOX_PYTHON37_INC)
|
---|
462 | VBoxPython3_7_x86_LIBS = $(VBOX_PYTHON37_LIB_X86)
|
---|
463 | endif
|
---|
464 | endif
|
---|
465 | endif
|
---|
466 |
|
---|
467 | ifdef VBOX_PYTHON37M_INC
|
---|
468 | #
|
---|
469 | # Python 3.7 version with pymalloc
|
---|
470 | #
|
---|
471 | DLLS += VBoxPython3_7m
|
---|
472 | VBoxPython3_7m_EXTENDS = VBoxPythonBase_m
|
---|
473 | VBoxPython3_7m_EXTENDS_BY = appending
|
---|
474 | VBoxPython3_7m_TEMPLATE = XPCOM
|
---|
475 | VBoxPython3_7m_INCS = $(VBOX_PYTHON37M_INC)
|
---|
476 | VBoxPython3_7m_LIBS = $(VBOX_PYTHON37M_LIB)
|
---|
477 |
|
---|
478 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
479 | ifdef VBOX_PYTHON37M_LIB_X86
|
---|
480 | DLLS += VBoxPython3_7m_x86
|
---|
481 | VBoxPython3_7m_x86_EXTENDS = VBoxPythonBase_x86_m
|
---|
482 | VBoxPython3_7m_x86_EXTENDS_BY = appending
|
---|
483 | VBoxPython3_7m_x86_TEMPLATE_ = XPCOM
|
---|
484 | VBoxPython3_7m_x86_INCS = $(VBOX_PYTHON37M_INC)
|
---|
485 | VBoxPython3_7m_x86_LIBS = $(VBOX_PYTHON37M_LIB_X86)
|
---|
486 | endif
|
---|
487 | endif
|
---|
488 | endif
|
---|
489 |
|
---|
490 | ifdef VBOX_PYTHONDEF_INC
|
---|
491 | #
|
---|
492 | # Python without versioning
|
---|
493 | #
|
---|
494 | DLLS += VBoxPython
|
---|
495 | VBoxPython_EXTENDS = VBoxPythonBase
|
---|
496 | VBoxPython_DEFS = $(filter-out VBOX_PYXPCOM_VERSIONED,$(VBoxPythonBase_DEFS))
|
---|
497 | VBoxPython_INCS = $(VBoxPythonBase_INCS) $(VBOX_PYTHONDEF_INC)
|
---|
498 | if "$(KBUILD_TARGET)" == "linux"
|
---|
499 | VBoxPython_LIBS = $(VBoxPythonBase_LIBS)
|
---|
500 | else
|
---|
501 | VBoxPython_LIBS = $(VBoxPythonBase_LIBS) $(VBOX_PYTHONDEF_LIB)
|
---|
502 | endif
|
---|
503 |
|
---|
504 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
505 | ifdef VBOX_PYTHONDEF_LIB_X86
|
---|
506 | VBoxPython_x86_EXTENDS = VBoxPythonBase_x86
|
---|
507 | VBoxPython_x86_DEFS = $(filter-out VBOX_PYXPCOM_VERSIONED,$(VBoxPythonBase_x86_DEFS))
|
---|
508 | VBoxPython_x86_INCS = $(VBoxPythonBase_x86_INCS) $(VBOX_PYTHONDEF_INC)
|
---|
509 | if "$(KBUILD_TARGET)" == "linux"
|
---|
510 | VBoxPython_x86_LIBS = $(VBoxPythonBase_x86_LIBS)
|
---|
511 | else
|
---|
512 | VBoxPython_x86_LIBS = $(VBoxPythonBase_x86_LIBS) $(VBOX_PYTHONDEF_LIB_X86)
|
---|
513 | endif
|
---|
514 | endif
|
---|
515 | endif
|
---|
516 | endif
|
---|
517 |
|
---|
518 | endif # VBOX_ONLY_SDK
|
---|
519 |
|
---|
520 | #
|
---|
521 | # Install the python modules.
|
---|
522 | #
|
---|
523 | INSTALLS += VBoxPython-inst-py-xpcom
|
---|
524 | VBoxPython-inst-py-xpcom_INST = $(INST_SDK)bindings/xpcom/python/xpcom/
|
---|
525 | VBoxPython-inst-py-xpcom_MODE = a+r,u+w
|
---|
526 | VBoxPython-inst-py-xpcom_SOURCES = \
|
---|
527 | vboxxpcom.py \
|
---|
528 | components.py \
|
---|
529 | file.py \
|
---|
530 | __init__.py \
|
---|
531 | nsError.py \
|
---|
532 | primitives.py \
|
---|
533 | xpcom_consts.py \
|
---|
534 | xpt.py \
|
---|
535 | client/__init__.py=>client/__init__.py \
|
---|
536 | server/__init__.py=>server/__init__.py \
|
---|
537 | server/enumerator.py=>server/enumerator.py \
|
---|
538 | server/factory.py=>server/factory.py \
|
---|
539 | server/loader.py=>server/loader.py \
|
---|
540 | server/module.py=>server/module.py \
|
---|
541 | server/policy.py=>server/policy.py
|
---|
542 |
|
---|
543 |
|
---|
544 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
545 |
|
---|