1 | # $Id: Makefile.kmk 60975 2016-05-13 11:05:22Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for Python bindings
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2016 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|33|34|35|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 | # 32-bit base.
|
---|
128 | VBoxPythonBase_x86_TEMPLATE = XPCOM-x86
|
---|
129 | VBoxPythonBase_x86_EXTENDS = VBoxPythonBase
|
---|
130 | VBoxPythonBase_x86_DEFS = MODULE_NAME_SUFFIX=_x86 $(VBoxPythonBase_DEFS)
|
---|
131 | VBoxPythonBase_x86_LIBS = \
|
---|
132 | $(PATH_STAGE_LIB)/VBoxCOM-x86$(VBOX_SUFF_LIB) \
|
---|
133 | $(PATH_STAGE_BIN)/VBoxXPCOM-x86$(VBOX_SUFF_DLL)
|
---|
134 |
|
---|
135 |
|
---|
136 | ifdef VBOX_PYTHON26_INC
|
---|
137 | #
|
---|
138 | # Python 2.6 version
|
---|
139 | #
|
---|
140 | DLLS += VBoxPython2_6
|
---|
141 | VBoxPython2_6_EXTENDS = VBoxPythonBase
|
---|
142 | VBoxPython2_6_EXTENDS_BY = appending
|
---|
143 | VBoxPython2_6_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.6",OSX106,)
|
---|
144 | VBoxPython2_6_INCS = $(VBOX_PYTHON26_INC)
|
---|
145 | VBoxPython2_6_LIBS = $(VBOX_PYTHON26_LIB)
|
---|
146 |
|
---|
147 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
148 | DLLS += VBoxPython2_6_x86
|
---|
149 | VBoxPython2_6_x86_EXTENDS = VBoxPythonBase_x86
|
---|
150 | VBoxPython2_6_x86_EXTENDS_BY = appending
|
---|
151 | VBoxPython2_6_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.6",OSX106,-x86)
|
---|
152 | VBoxPython2_6_x86_INCS = $(VBOX_PYTHON26_INC)
|
---|
153 | VBoxPython2_6_x86_LIBS = $(VBOX_PYTHON26_LIB_X86)
|
---|
154 | endif
|
---|
155 | endif
|
---|
156 |
|
---|
157 | ifdef VBOX_PYTHON27_INC
|
---|
158 | #
|
---|
159 | # Python 2.7 version
|
---|
160 | #
|
---|
161 | DLLS += VBoxPython2_7
|
---|
162 | VBoxPython2_7_EXTENDS = VBoxPythonBase
|
---|
163 | VBoxPython2_7_EXTENDS_BY = appending
|
---|
164 | VBoxPython2_7_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.7",OSX107,)
|
---|
165 | VBoxPython2_7_INCS = $(VBOX_PYTHON27_INC)
|
---|
166 | VBoxPython2_7_LIBS = $(VBOX_PYTHON27_LIB)
|
---|
167 |
|
---|
168 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
169 | DLLS += VBoxPython2_7_x86
|
---|
170 | VBoxPython2_7_x86_EXTENDS = VBoxPythonBase_x86
|
---|
171 | VBoxPython2_7_x86_EXTENDS_BY = appending
|
---|
172 | VBoxPython2_7_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.7",OSX107,-x86)
|
---|
173 | VBoxPython2_7_x86_INCS = $(VBOX_PYTHON27_INC)
|
---|
174 | VBoxPython2_7_x86_LIBS = $(VBOX_PYTHON27_LIB_X86)
|
---|
175 | endif
|
---|
176 | endif
|
---|
177 |
|
---|
178 | ifdef VBOX_PYTHON31_INC
|
---|
179 | #
|
---|
180 | # Python 3.1 version
|
---|
181 | #
|
---|
182 | DLLS += VBoxPython3_1
|
---|
183 | VBoxPython3_1_EXTENDS = VBoxPythonBase
|
---|
184 | VBoxPython3_1_EXTENDS_BY = appending
|
---|
185 | VBoxPython3_1_TEMPLATE = XPCOM
|
---|
186 | VBoxPython3_1_INCS = $(VBOX_PYTHON31_INC)
|
---|
187 | VBoxPython3_1_LIBS = $(VBOX_PYTHON31_LIB)
|
---|
188 |
|
---|
189 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
190 | DLLS += VBoxPython3_1_x86
|
---|
191 | VBoxPython3_1_x86_EXTENDS = VBoxPythonBase_x86
|
---|
192 | VBoxPython3_1_x86_EXTENDS_BY = appending
|
---|
193 | VBoxPython3_1_x86_TEMPLATE = XPCOM
|
---|
194 | VBoxPython3_1_x86_INCS = $(VBOX_PYTHON31_INC)
|
---|
195 | VBoxPython3_1_x86_LIBS = $(VBOX_PYTHON31_LIB_X86)
|
---|
196 | endif
|
---|
197 | endif
|
---|
198 |
|
---|
199 | ifdef VBOX_PYTHON32_INC
|
---|
200 | #
|
---|
201 | # Python 3.2 version
|
---|
202 | #
|
---|
203 | DLLS += VBoxPython3_2
|
---|
204 | VBoxPython3_2_EXTENDS = VBoxPythonBase
|
---|
205 | VBoxPython3_2_EXTENDS_BY = appending
|
---|
206 | VBoxPython3_2_TEMPLATE = XPCOM
|
---|
207 | VBoxPython3_2_INCS = $(VBOX_PYTHON32_INC)
|
---|
208 | VBoxPython3_2_LIBS = $(VBOX_PYTHON32_LIB)
|
---|
209 |
|
---|
210 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
211 | DLLS += VBoxPython3_2_x86
|
---|
212 | VBoxPython3_2_x86_EXTENDS = VBoxPythonBase_x86
|
---|
213 | VBoxPython3_2_x86_EXTENDS_BY = appending
|
---|
214 | VBoxPython3_2_x86_TEMPLATE = XPCOM
|
---|
215 | VBoxPython3_2_x86_INCS = $(VBOX_PYTHON32_INC)
|
---|
216 | VBoxPython3_2_x86_LIBS = $(VBOX_PYTHON32_LIB_X86)
|
---|
217 | endif
|
---|
218 | endif
|
---|
219 |
|
---|
220 | ifdef VBOX_PYTHON33_INC
|
---|
221 | #
|
---|
222 | # Python 3.3 version
|
---|
223 | #
|
---|
224 | DLLS += VBoxPython3_3
|
---|
225 | VBoxPython3_3_EXTENDS = VBoxPythonBase
|
---|
226 | VBoxPython3_3_EXTENDS_BY = appending
|
---|
227 | VBoxPython3_3_TEMPLATE = XPCOM
|
---|
228 | VBoxPython3_3_INCS = $(VBOX_PYTHON33_INC)
|
---|
229 | VBoxPython3_3_LIBS = $(VBOX_PYTHON33_LIB)
|
---|
230 |
|
---|
231 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
232 | DLLS += VBoxPython3_3_x86
|
---|
233 | VBoxPython3_3_x86_EXTENDS = VBoxPythonBase_x86
|
---|
234 | VBoxPython3_3_x86_EXTENDS_BY = appending
|
---|
235 | VBoxPython3_3_x86_TEMPLATE = XPCOM
|
---|
236 | VBoxPython3_3_x86_INCS = $(VBOX_PYTHON33_INC)
|
---|
237 | VBoxPython3_3_x86_LIBS = $(VBOX_PYTHON33_LIB_X86)
|
---|
238 | endif
|
---|
239 | endif
|
---|
240 |
|
---|
241 | ifdef VBOX_PYTHON34_INC
|
---|
242 | #
|
---|
243 | # Python 3.4 version
|
---|
244 | #
|
---|
245 | DLLS += VBoxPython3_4
|
---|
246 | VBoxPython3_4_EXTENDS = VBoxPythonBase
|
---|
247 | VBoxPython3_4_EXTENDS_BY = appending
|
---|
248 | VBoxPython3_4_TEMPLATE = XPCOM
|
---|
249 | VBoxPython3_4_INCS = $(VBOX_PYTHON34_INC)
|
---|
250 | VBoxPython3_4_LIBS = $(VBOX_PYTHON34_LIB)
|
---|
251 |
|
---|
252 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
253 | DLLS += VBoxPython3_4_x86
|
---|
254 | VBoxPython3_4_x86_EXTENDS = VBoxPythonBase_x86
|
---|
255 | VBoxPython3_4_x86_EXTENDS_BY = appending
|
---|
256 | VBoxPython3_4_x86_TEMPLATE = XPCOM
|
---|
257 | VBoxPython3_4_x86_INCS = $(VBOX_PYTHON34_INC)
|
---|
258 | VBoxPython3_4_x86_LIBS = $(VBOX_PYTHON34_LIB_X86)
|
---|
259 | endif
|
---|
260 | endif
|
---|
261 |
|
---|
262 | ifdef VBOX_PYTHON35_INC
|
---|
263 | #
|
---|
264 | # Python 3.5 version
|
---|
265 | #
|
---|
266 | DLLS += VBoxPython3_5
|
---|
267 | VBoxPython3_5_EXTENDS = VBoxPythonBase
|
---|
268 | VBoxPython3_5_EXTENDS_BY = appending
|
---|
269 | VBoxPython3_5_TEMPLATE = XPCOM
|
---|
270 | VBoxPython3_5_INCS = $(VBOX_PYTHON35_INC)
|
---|
271 | VBoxPython3_5_LIBS = $(VBOX_PYTHON35_LIB)
|
---|
272 |
|
---|
273 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
274 | DLLS += VBoxPython3_5_x86
|
---|
275 | VBoxPython3_5_x86_EXTENDS = VBoxPythonBase_x86
|
---|
276 | VBoxPython3_5_x86_EXTENDS_BY = appending
|
---|
277 | VBoxPython3_5_x86_TEMPLATE = XPCOM
|
---|
278 | VBoxPython3_5_x86_INCS = $(VBOX_PYTHON35_INC)
|
---|
279 | VBoxPython3_5_x86_LIBS = $(VBOX_PYTHON35_LIB_X86)
|
---|
280 | endif
|
---|
281 | endif
|
---|
282 |
|
---|
283 | ifdef VBOX_PYTHONDEF_INC
|
---|
284 | #
|
---|
285 | # Python without versioning
|
---|
286 | #
|
---|
287 | DLLS += VBoxPython
|
---|
288 | VBoxPython_EXTENDS = VBoxPythonBase
|
---|
289 | VBoxPython_DEFS = $(filter-out VBOX_PYXPCOM_VERSIONED,$(VBoxPythonBase_DEFS))
|
---|
290 | VBoxPython_INCS = $(VBoxPythonBase_INCS) $(VBOX_PYTHONDEF_INC)
|
---|
291 | if "$(KBUILD_TARGET)" == "linux"
|
---|
292 | VBoxPython_LIBS = $(VBoxPythonBase_LIBS)
|
---|
293 | else
|
---|
294 | VBoxPython_LIBS = $(VBoxPythonBase_LIBS) $(VBOX_PYTHONDEF_LIB)
|
---|
295 | endif
|
---|
296 |
|
---|
297 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
298 | VBoxPython_x86_EXTENDS = VBoxPythonBase_x86
|
---|
299 | VBoxPython_x86_DEFS = $(filter-out VBOX_PYXPCOM_VERSIONED,$(VBoxPythonBase_x86_DEFS))
|
---|
300 | VBoxPython_x86_INCS = $(VBoxPythonBase_x86_INCS) $(VBOX_PYTHONDEF_INC)
|
---|
301 | if "$(KBUILD_TARGET)" == "linux"
|
---|
302 | VBoxPython_x86_LIBS = $(VBoxPythonBase_x86_LIBS)
|
---|
303 | else
|
---|
304 | VBoxPython_x86_LIBS = $(VBoxPythonBase_x86_LIBS) $(VBOX_PYTHONDEF_LIB_X86)
|
---|
305 | endif
|
---|
306 | endif
|
---|
307 | endif
|
---|
308 |
|
---|
309 | endif # VBOX_ONLY_SDK
|
---|
310 |
|
---|
311 | #
|
---|
312 | # Install the python modules.
|
---|
313 | #
|
---|
314 | INSTALLS += VBoxPython-inst-py-xpcom
|
---|
315 | VBoxPython-inst-py-xpcom_INST = $(INST_SDK)bindings/xpcom/python/xpcom/
|
---|
316 | VBoxPython-inst-py-xpcom_MODE = a+r,u+w
|
---|
317 | VBoxPython-inst-py-xpcom_SOURCES = \
|
---|
318 | vboxxpcom.py \
|
---|
319 | components.py \
|
---|
320 | file.py \
|
---|
321 | __init__.py \
|
---|
322 | nsError.py \
|
---|
323 | primitives.py \
|
---|
324 | xpcom_consts.py \
|
---|
325 | xpt.py \
|
---|
326 | client/__init__.py=>client/__init__.py \
|
---|
327 | server/__init__.py=>server/__init__.py \
|
---|
328 | server/enumerator.py=>server/enumerator.py \
|
---|
329 | server/factory.py=>server/factory.py \
|
---|
330 | server/loader.py=>server/loader.py \
|
---|
331 | server/module.py=>server/module.py \
|
---|
332 | server/policy.py=>server/policy.py
|
---|
333 |
|
---|
334 |
|
---|
335 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
336 |
|
---|