1 | # $Id: Config.kmk 76553 2019-01-01 01:45:53Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # kBuild Configuration file for the VirtualBox Validation Kit.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2010-2019 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 | # The contents of this file may alternatively be used under the terms
|
---|
18 | # of the Common Development and Distribution License Version 1.0
|
---|
19 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | # CDDL are applicable instead of those of the GPL.
|
---|
22 | #
|
---|
23 | # You may elect to license modified versions of this file under the
|
---|
24 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | #
|
---|
26 |
|
---|
27 | VBOX_VALIDATIONKIT_CONFIG_KMK_INCLUDED = 1
|
---|
28 |
|
---|
29 | # Include the top-level configure file.
|
---|
30 | ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
|
---|
31 | include $(PATH_ROOT)/Config.kmk
|
---|
32 | endif
|
---|
33 |
|
---|
34 | #
|
---|
35 | # Globals
|
---|
36 | #
|
---|
37 | VBOX_PATH_VALIDATIONKIT_SRC := $(PATH_ROOT)/src/VBox/ValidationKit
|
---|
38 |
|
---|
39 |
|
---|
40 | #
|
---|
41 | # Base template that drops the -static flag since we only want to use the
|
---|
42 | # static version of our own libraries and not the system libs.
|
---|
43 | #
|
---|
44 | TEMPLATE_VBoxValidationKitR3Base = VBox Validation Kit ring-3 program base, both guest and host.
|
---|
45 | TEMPLATE_VBoxValidationKitR3Base_EXTENDS = VBoxR3Static
|
---|
46 | ifn1of ($(KBUILD_TARGET), darwin solaris win)
|
---|
47 | TEMPLATE_VBoxValidationKitR3Base_CFLAGS = $(filter-out -static, $(TEMPLATE_VBoxR3Static_CFLAGS))
|
---|
48 | TEMPLATE_VBoxValidationKitR3Base_CXXFLAGS = $(filter-out -static, $(TEMPLATE_VBoxR3Static_CXXFLAGS))
|
---|
49 | TEMPLATE_VBoxValidationKitR3Base_OBJCFLAGS = $(filter-out -static, $(TEMPLATE_VBoxR3Static_OBJCFLAGS))
|
---|
50 | TEMPLATE_VBoxValidationKitR3Base_LDFLAGS = $(filter-out -static, $(TEMPLATE_VBoxR3Static_LDFLAGS))
|
---|
51 | endif
|
---|
52 | TEMPLATE_VBoxValidationKitR3Base_LIBS = $(TEMPLATE_VBoxR3Static_LIBS)
|
---|
53 | if1of ($(KBUILD_TARGET), linux)
|
---|
54 | TEMPLATE_VBoxValidationKitR3Base_LIBS += supc++ crypt
|
---|
55 | TEMPLATE_VBoxValidationKitR3Base_LDTOOL = $(subst GXX,GCC,$(TEMPLATE_VBoxR3Static_TOOL))
|
---|
56 | endif
|
---|
57 | TEMPLATE_VBoxValidationKitR3Base_LDFLAGS.darwin = $(TEMPLATE_VBoxR3Static_LDFLAGS.darwin) -framework IOKit
|
---|
58 |
|
---|
59 | #
|
---|
60 | # Template for building ring-3 progams for the Validation Kit.
|
---|
61 | # These programs can run on any host or guest.
|
---|
62 | #
|
---|
63 | TEMPLATE_VBoxValidationKitR3 = VBox Validation Kit ring-3 program, both guest and host.
|
---|
64 | TEMPLATE_VBoxValidationKitR3_EXTENDS = VBoxValidationKitR3Base
|
---|
65 | TEMPLATE_VBoxValidationKitR3_EXTENDS_BY = appending
|
---|
66 | TEMPLATE_VBoxValidationKitR3_INST = $(INST_VALIDATIONKIT)$(KBUILD_TARGET)/$(KBUILD_TARGET_ARCH)/
|
---|
67 | TEMPLATE_VBoxValidationKitR3_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
|
---|
68 | TEMPLATE_VBoxValidationKitR3_DEFS = IN_RT_R3
|
---|
69 | TEMPLATE_VBoxValidationKitR3_LIBS.darwin = iconv
|
---|
70 | TEMPLATE_VBoxValidationKitR3_LIBS.freebsd = iconv
|
---|
71 | TEMPLATE_VBoxValidationKitR3_LIBS = \
|
---|
72 | $(PATH_STAGE_LIB)/RuntimeR3$(VBOX_SUFF_LIB)
|
---|
73 | ifeq ($(KBUILD_TARGET),solaris)
|
---|
74 | TEMPLATE_VBoxValidationKitR3_LIBS += \
|
---|
75 | kstat \
|
---|
76 | nsl \
|
---|
77 | contract
|
---|
78 | if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
79 | TEMPLATE_VBoxValidationKitR3_LIBS += \
|
---|
80 | smbios
|
---|
81 | endif
|
---|
82 | endif
|
---|
83 | ifneq ($(KBUILD_TARGET),win)
|
---|
84 | TEMPLATE_VBoxValidationKitR3_LIBS += \
|
---|
85 | $(SDK_VBOX_ZLIB_LIBS)
|
---|
86 | endif
|
---|
87 |
|
---|
88 | # Make VCC100 output work on NT3.x, NT4, W2K, XP and W2K3.
|
---|
89 | TEMPLATE_VBoxValidationKitR3_LIBS.win.x86 = \
|
---|
90 | $(PATH_TOOL_$(TEMPLATE_VBoxValidationKitR3_TOOL.win.x86)_LIB)/oldnames.lib \
|
---|
91 | $(PATH_TOOL_$(TEMPLATE_VBoxValidationKitR3_TOOL.win.x86)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib \
|
---|
92 | $(PATH_TOOL_$(TEMPLATE_VBoxValidationKitR3_TOOL.win.x86)_LIB)/libcpmt$(VBOX_VCC_CRT_TYPE).lib \
|
---|
93 | $(PATH_STAGE_LIB)/RuntimeR3VccTricks$(VBOX_SUFF_LIB)
|
---|
94 | TEMPLATE_VBoxValidationKitR3_LDFLAGS.win.x86 = \
|
---|
95 | -Include:_vcc100_shell32_fakes_cpp \
|
---|
96 | -Include:_vcc100_shell32_fakes_asm \
|
---|
97 | -Section:.bss,RW!K
|
---|
98 | ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
|
---|
99 | TEMPLATE_VBoxValidationKitR3_POST_CMDS = $(if $(eq $(tool_do),LINK_LIBRARY),,$(VBOX_PE_SET_VERSION) $(out)$$(NLTAB))$(TEMPLATE_VBoxValidationKitR3Base_POST_CMDS)$$(NLTAB)
|
---|
100 | endif
|
---|
101 | TEMPLATE_VBoxValidationKitR3_LNK_DEPS.win.x86 = $(if $(eq $(tool_do),LINK_LIBRARY),,$(VBOX_PE_SET_VERSION))
|
---|
102 |
|
---|
103 | #TODO: TEMPLATE_VBoxValidationKitR3_EXTENDS = VBOXGUESTR3EXE
|
---|
104 |
|
---|
105 | TEMPLATE_VBoxValidationKitR3_USES += vboximportchecker
|
---|
106 | TEMPLATE_VBoxValidationKitR3_VBOX_IMPORT_CHECKER.win.x86 = nt31
|
---|
107 | TEMPLATE_VBoxValidationKitR3_VBOX_IMPORT_CHECKER.win.amd64 = xp64
|
---|
108 |
|
---|
109 |
|
---|
110 | #
|
---|
111 | # Template for building ring-3 programs for the Validation Kit.
|
---|
112 | # These programs can run on the host and may take advantage of the support
|
---|
113 | # driver when installed.
|
---|
114 | #
|
---|
115 | TEMPLATE_VBoxValidationKitR3Host = VBox Validation Kit ring-3 program, mainly host.
|
---|
116 | TEMPLATE_VBoxValidationKitR3Host_EXTENDS = VBoxValidationKitR3Base
|
---|
117 | TEMPLATE_VBoxValidationKitR3Host_EXTENDS_BY = appending
|
---|
118 | TEMPLATE_VBoxValidationKitR3Host_INST = $(INST_VALIDATIONKIT)$(KBUILD_TARGET)/$(KBUILD_TARGET_ARCH)/
|
---|
119 | TEMPLATE_VBoxValidationKitR3Host_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
|
---|
120 | TEMPLATE_VBoxValidationKitR3Host_DEFS = IN_RT_R3 IN_SUP_R3
|
---|
121 | TEMPLATE_VBoxValidationKitR3Host_LIBS.darwin = iconv
|
---|
122 | TEMPLATE_VBoxValidationKitR3Host_LIBS.freebsd = iconv
|
---|
123 | TEMPLATE_VBoxValidationKitR3Host_LIBS = \
|
---|
124 | $(PATH_STAGE_LIB)/RuntimeR3$(VBOX_SUFF_LIB) \
|
---|
125 | $(PATH_STAGE_LIB)/SUPR3Static$(VBOX_SUFF_LIB) \
|
---|
126 | $(PATH_STAGE_LIB)/RuntimeR3$(VBOX_SUFF_LIB)
|
---|
127 | ifeq ($(KBUILD_TARGET),solaris)
|
---|
128 | TEMPLATE_VBoxValidationKitR3Host_LIBS += \
|
---|
129 | kstat \
|
---|
130 | nsl \
|
---|
131 | contract
|
---|
132 | if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
133 | TEMPLATE_VBoxValidationKitR3Host_LIBS += \
|
---|
134 | smbios
|
---|
135 | endif
|
---|
136 | endif
|
---|
137 |
|
---|
138 | #
|
---|
139 | # Template for building agnostic ring-0 host modules for the Validation Kit.
|
---|
140 | #
|
---|
141 | TEMPLATE_VBoxValidationKitR0 = VBox Validation Kit agnostic ring-0 host module.
|
---|
142 | TEMPLATE_VBoxValidationKitR0_EXTENDS = VBoxR0
|
---|
143 | TEMPLATE_VBoxValidationKitR0_EXTENDS_BY = appending
|
---|
144 | TEMPLATE_VBoxValidationKitR0_INST = $(INST_VALIDATIONKIT)$(KBUILD_TARGET)/$(KBUILD_TARGET_ARCH)/
|
---|
145 | TEMPLATE_VBoxValidationKitR0_DEFS = IN_RT_R0
|
---|
146 | TEMPLATE_VBoxValidationKitR0_LIBS = \
|
---|
147 | $(PATH_STAGE_LIB)/RuntimeR0$(VBOX_SUFF_LIB)
|
---|
148 | if1of ($(KBUILD_TARGET),os2 win)
|
---|
149 | TEMPLATE_VBoxValidationKitR0_LIBS += \
|
---|
150 | $(PATH_STAGE_LIB)/SUPR0$(VBOX_SUFF_LIB)
|
---|
151 | endif
|
---|
152 |
|
---|
153 | #
|
---|
154 | # List of python sources that should be linted and unittested.
|
---|
155 | #
|
---|
156 | VBOX_VALIDATIONKIT_PYTHON_SOURCES :=
|
---|
157 | VBOX_VALIDATIONKIT_PYLINT_TARGETS :=
|
---|
158 | VBOX_VALIDATIONKIT_PYUNITTEST_EXCLUDE :=
|
---|
159 |
|
---|
160 | ifdef VBOX_WITH_PYLINT
|
---|
161 | TESTING +=
|
---|
162 | endif
|
---|
163 |
|
---|
164 | #
|
---|
165 | # Process python sources.
|
---|
166 | #
|
---|
167 | if1of ($(KBUILD_TARGET), win os2)
|
---|
168 | VBOX_PYTHONPATH_VALIDATIONKIT = $(PYTHONPATH);$(VBOX_PATH_VALIDATIONKIT_SRC);$(VBOX_PATH_VALIDATIONKIT_SRC)/testboxscript;$(VBOX_PATH_VALIDATIONKIT_SRC)/testmanager:$(VBOX_PATH_VALIDATIONKIT_SRC)/../VMM/VMMAll
|
---|
169 | else
|
---|
170 | VBOX_PYTHONPATH_VALIDATIONKIT = $(PYTHONPATH):$(VBOX_PATH_VALIDATIONKIT_SRC):$(VBOX_PATH_VALIDATIONKIT_SRC)/testboxscript:$(VBOX_PATH_VALIDATIONKIT_SRC)/testmanager;$(VBOX_PATH_VALIDATIONKIT_SRC)/../VMM/VMMAll
|
---|
171 | endif
|
---|
172 | BLDDIRS += $(PATH_TARGET)/pylint $(PATH_TARGET)/pyunittest
|
---|
173 |
|
---|
174 | define def_vbox_validationkit_py_check
|
---|
175 | $(eval name:=$(basename $(notdir $(py))))
|
---|
176 |
|
---|
177 | pylint:: $(name)-py-phony.o
|
---|
178 | $(name).o: $(name)-py-phony.o
|
---|
179 | $(PATH_TARGET)/pylint/$(name).o $(name)-py-phony.o:: $(py) | $(PATH_TARGET)/pylint/
|
---|
180 | ifdef VBOX_WITH_PYLINT
|
---|
181 | $(QUIET2)$(call MSG_L1,Subjecting $(py) to pylint...)
|
---|
182 | $(QUIET)$(REDIRECT) -C "$(dir $(py))" -E LC_ALL=C -E PYTHONPATH="$(VBOX_PYTHONPATH_VALIDATIONKIT)" -- \
|
---|
183 | $(VBOX_PYLINT) --rcfile=$(VBOX_PATH_VALIDATIONKIT_SRC)/pylintrc $$(VBOX_PYLINT_FLAGS) $$($(py)_VBOX_PYLINT_FLAGS) ./$(notdir $(py))
|
---|
184 | endif
|
---|
185 | $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pylint/$(name).o"
|
---|
186 |
|
---|
187 | ifn1of ($(py),$(VBOX_VALIDATIONKIT_PYUNITTEST_EXCLUDE))
|
---|
188 | pyunittest:: $(name)-pyunittest.o
|
---|
189 | $(PATH_TARGET)/pyunittest/$(name).o $(name)-pyunittest.o:: $(py) | $(PATH_TARGET)/pyunittest/
|
---|
190 | $(QUIET2)$(call MSG_L1,Unittesting Python source $(py)...)
|
---|
191 | $(QUIET)$(REDIRECT) -E LC_ALL=C -E PYTHONPATH="$(VBOX_PYTHONPATH_VALIDATIONKIT)" -C $(dir $(py)) \
|
---|
192 | -- $(VBOX_BLD_PYTHON) -m unittest -v $(notdir $(basename $(py)))
|
---|
193 | $(QUIET)$(APPEND) -t "$(PATH_TARGET)/pyunittest/$(name).o"
|
---|
194 | VBOX_VALIDATIONKIT_PYUNITTEST_TARGETS += $(PATH_TARGET)/pyunittest/$(name).o
|
---|
195 |
|
---|
196 | TESTING += $(name)-pyunittest.o
|
---|
197 | endif
|
---|
198 | TESTING += $(name)-py-phony.o
|
---|
199 | VBOX_VALIDATIONKIT_PYLINT_TARGETS += $(PATH_TARGET)/pylint/$(name).o
|
---|
200 | endef # def_vbox_validationkit_py_check
|
---|
201 |
|
---|
202 |
|
---|
203 | define def_vbox_validationkit_process_python_sources
|
---|
204 | $(if-expr $(words $(_SUB_MAKEFILE_STACK)) <= 0 || "$1" == "FORCE", \
|
---|
205 | $(foreach py, $(VBOX_VALIDATIONKIT_PYTHON_SOURCES), $(eval $(def_vbox_validationkit_py_check))),)
|
---|
206 | endef
|
---|
207 |
|
---|
208 |
|
---|
209 |
|
---|
210 | #
|
---|
211 | # http://www.jshint.com
|
---|
212 | #
|
---|
213 | VBOX_JSHINT ?= jshint
|
---|
214 | VBOX_JSHINT_FLAGS := --config $(VBOX_PATH_VALIDATIONKIT_SRC)/jshintrc.js --verbose
|
---|
215 | ifndef VBOX_WITH_JSHINT
|
---|
216 | VBOX_WITH_JSHINT := $(which $(VBOX_JSHINT))
|
---|
217 | endif
|
---|
218 |
|
---|
219 | #
|
---|
220 | # List of javascript sources that should be checked and linted.
|
---|
221 | #
|
---|
222 | VBOX_VALIDATIONKIT_JS_SOURCES :=
|
---|
223 |
|
---|
224 | define def_vbox_validationkit_js_check
|
---|
225 | $(eval name:=$(basename $(notdir $(js))))
|
---|
226 | $(name).o $(name).obj:: # $(PATH_SUB_CURRENT)/$(js)
|
---|
227 | -$(REDIRECT) -E LC_ALL=C -C $(dir $(js)) -- $$(VBOX_JSHINT) ./$(notdir $(js)) $$(VBOX_JSHINT_FLAGS)
|
---|
228 | jslint:: $(name).o
|
---|
229 | endef
|
---|
230 |
|
---|
231 | define def_vbox_validationkit_process_js_sources
|
---|
232 | $(if-expr $(words $(_SUB_MAKEFILE_STACK)) <= 0, \
|
---|
233 | $(foreach js, $(VBOX_VALIDATIONKIT_JS_SOURCES), $(eval $(def_vbox_validationkit_js_check))),)
|
---|
234 | endef
|
---|
235 |
|
---|