VirtualBox

source: vbox/trunk/src/VBox/Installer/win/Stub/Makefile.kmk@ 96407

最後變更 在這個檔案從96407是 96407,由 vboxsync 提交於 3 年 前

scm copyright and license note update

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 6.9 KB
 
1# $Id: Makefile.kmk 96407 2022-08-22 17:43:14Z vboxsync $
2## @file
3# Sub-Makefile for the stub installer.
4#
5
6#
7# Copyright (C) 2009-2022 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.alldomusa.eu.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
28SUB_DEPTH = ../../../../..
29include $(KBUILD_PATH)/subheader.kmk
30
31TEMPLATE_VBOXSTUB = Drop the signing, we will sign it later.
32TEMPLATE_VBOXSTUB_EXTENDS = VBOXR3STATIC
33TEMPLATE_VBOXSTUB_POST_CMDS = $(NO_SUCH_VARIABLE)
34
35#
36# Installer stub program
37#
38PROGRAMS += VBoxStub
39VBoxStub_TEMPLATE= VBOXSTUB
40VBoxStub_BLD_TRG_ARCH = x86
41VBoxStub_DEFS = _WIN32_WINNT=0x0501 IN_RT_R3
42
43VBoxStub_SOURCES = \
44 VBoxStub.cpp \
45 VBoxStub.rc
46
47VBoxStub_SDKS += \
48 VBOX_NTDLL
49ifeq ($(KBUILD_TARGET_ARCH),x86)
50VBoxStub_LIBS += \
51 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib \
52 $(VBOX_LIB_RUNTIME_STATIC)
53else
54VBoxStub_LIBS += \
55 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/delayimp.lib \
56 $(PATH_STAGE_LIB)/RuntimeR3-x86.lib
57endif
58
59VBoxStub_LDFLAGS = \
60 -DelayLoad:comctl32.dll
61VBoxStub_POST_CMDS = $(VBOX_CHECK_IMPORTS) --image $(out) ntdll.dll kernel32.dll
62ifeq ($(KBUILD_TYPE),asan)
63 VBoxStub_POST_CMDS += advapi32.dll
64endif
65VBoxStub_LNK_DEPS = $(VBOX_CHECK_IMPORTS)
66
67VBoxStub.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
68VBoxStub.cpp_DEPS = $(VBOX_SVN_REV_KMK)
69
70# If signing mode is enabled, then add the possibility to install the code
71# signing certificates (public key only) automatically in /silent mode.
72ifdef VBOX_SIGNING_MODE
73
74 VBoxStub_SOURCES += VBoxStubCertUtil.cpp
75 VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/VBoxStubPublicCert.h
76 VBoxStub.cpp_DEPS += $(VBoxStub_0_OUTDIR)/VBoxStubPublicCert.h
77 VBoxStub.cpp_INCS += $(VBoxStub_0_OUTDIR)
78 VBoxStub.cpp_DEFS += VBOX_WITH_CODE_SIGNING
79 ifdef VBOX_WITH_VBOX_LEGACY_TS_CA
80 VBoxStub.cpp_DEFS += VBOX_WITH_VBOX_LEGACY_TS_CA
81 endif
82
83 $$(VBoxStub_0_OUTDIR)/VBoxStubPublicCert.h: | $$(dir $$@) $(VBOX_RTSIGNTOOL) $(PATH_STAGE_SYS)/VBoxSup.sys
84 $(RM) -f -- "$@" "$@.cer0" "$@.cer1" "$@.cer2" "$@.array"
85
86 $(VBOX_RTSIGNTOOL) extract-exe-signer-cert --signature-index 0 --exe "$(PATH_STAGE_SYS)/VBoxSup.sys" --output "$@.cer0" --der
87 $(VBOX_BIN2C) -ascii --append VBoxStubTrustedCert0 "$@.cer0" $@
88 $(APPEND) "$@.array" " { g_abVBoxStubTrustedCert0, sizeof(g_abVBoxStubTrustedCert0) }, "
89 if defined(VBOX_CERTIFICATE_SUBJECT_NAME) && defined(VBOX_CERTIFICATE_SHA2_SUBJECT_NAME)
90 $(VBOX_RTSIGNTOOL) extract-exe-signer-cert --signature-index 1 --exe "$(PATH_STAGE_SYS)/VBoxSup.sys" --output "$@.cer1" --der
91 $(VBOX_BIN2C) -ascii --append VBoxStubTrustedCert1 "$@.cer1" $@
92 $(APPEND) "$@.array" " { g_abVBoxStubTrustedCert1, sizeof(g_abVBoxStubTrustedCert1) }, "
93 endif
94 if $(intersects win_planb,$(VBOX_WITH_CORP_CODE_SIGNING))
95 $(VBOX_RTSIGNTOOL) extract-exe-signer-cert --signature-index 1 --exe "$(VBOX_RTSIGNTOOL)" --output "$@.cer2" --der
96 $(VBOX_BIN2C) -ascii --append VBoxStubTrustedCert2 "$@.cer2" $@
97 $(APPEND) "$@.array" " { g_abVBoxStubTrustedCert2, sizeof(g_abVBoxStubTrustedCert2) }, "
98 endif
99 $(APPEND) -n "$@" \
100 "" \
101 "struct { uint8_t const *pab; uint32_t cb; }" "g_aVBoxStubTrustedCerts[] = " \
102 "{"
103 $(SED) --append "$@" -e "" "$@.array"
104 $(APPEND) -n "$@" \
105 "};"
106 $(RM) -f -- "$@.cer0" "$@.cer1" "$@.cer2" "$@.array"
107 ifdef VBOX_WITH_VBOX_LEGACY_TS_CA
108 $(VBOX_BIN2C) -ascii --append VBoxLegacyWinCA "$(VBOX_LEGACY_TS_CA_FILE)" $@
109 endif
110
111 VBoxStubPublicCert.h:: $$(VBoxStub_0_OUTDIR)/VBoxStubPublicCert.h
112
113endif
114
115# The icon location is configurable.
116VBoxStub.rc_INCS += $(VBoxStub_0_OUTDIR)
117VBoxStub.rc_DEPS += \
118 $(VBoxStub_0_OUTDIR)/VBoxStub-icon.rc \
119 $(VBoxStub_0_OUTDIR)/VBoxStub-manifest.rc
120VBoxStub_CLEAN += \
121 $(VBoxStub_0_OUTDIR)/VBoxStub-icon.rc \
122 $(VBoxStub_0_OUTDIR)/VBoxStub-manifest.rc
123
124# Icon include file.
125$$(VBoxStub_0_OUTDIR)/VBoxStub-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $(MAKEFILE_CURRENT) | $$(dir $$@)
126 $(APPEND) -t $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
127
128# Manifest.
129VBOX_STUB_MANIFEST_FILE := $(PATH_SUB_CURRENT)/VBoxStub.manifest
130$$(VBoxStub_0_OUTDIR)/VBoxStub-manifest.rc: $(VBOX_STUB_MANIFEST_FILE) $(MAKEFILE_CURRENT) | $$(dir $$@)
131 $(APPEND) -t $@ 'APP_MANIFEST RT_MANIFEST "$(subst /,\\,$(VBOX_STUB_MANIFEST_FILE))"'
132
133# Dynamic import no. 1: MSI.DLL
134VBoxStub_SOURCES += $(VBoxStub_0_OUTDIR)/MsiLazyLoad.asm
135VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/MsiLazyLoad.asm
136$$(VBoxStub_0_OUTDIR)/MsiLazyLoad.asm: $(PATH_SUB_CURRENT)/msi.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
137 $(call MSG_TOOL,VBoxDef2LazyLoad,VBoxStub,$(filter %.def, $^),$@)
138 $(QUIET)$(RM) -f -- "$@"
139 $(VBOX_DEF_2_LAZY_LOAD) --system --library MSI.DLL --output "$@" $(filter %.def, $^)
140
141# Dynamic import no. 2: CRYPTO32.DLL
142VBoxStub_SOURCES += $(VBoxStub_0_OUTDIR)/Crypt32LazyLoad.asm
143VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/Crypt32LazyLoad.asm
144$$(VBoxStub_0_OUTDIR)/Crypt32LazyLoad.asm: $(PATH_SUB_CURRENT)/crypt32.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
145 $(call MSG_TOOL,VBoxDef2LazyLoad,VBoxStub,$(filter %.def, $^),$@)
146 $(QUIET)$(RM) -f -- "$@"
147 $(VBOX_DEF_2_LAZY_LOAD) --system --library CRYPT32.DLL --output "$@" $(filter %.def, $^)
148
149# Dynamic import no. 3: WS2_32.DLL
150VBoxStub_SOURCES += $(VBoxStub_0_OUTDIR)/Ws232LazyLoad.asm
151VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/Ws232LazyLoad.asm
152$$(VBoxStub_0_OUTDIR)/Ws232LazyLoad.asm: $(PATH_SUB_CURRENT)/ws2_32.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
153 $(call MSG_TOOL,VBoxDef2LazyLoad,VBoxStub,$(filter %.def, $^),$@)
154 $(QUIET)$(RM) -f -- "$@"
155 $(VBOX_DEF_2_LAZY_LOAD) --system --library WS2_32.DLL --output "$@" $(filter %.def, $^)
156
157# Dynamic import no. 4: USER32.DLL
158VBoxStub_SOURCES += $(VBoxStub_0_OUTDIR)/User32LazyLoad.asm
159VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/User32LazyLoad.asm
160$$(VBoxStub_0_OUTDIR)/User32LazyLoad.asm: $(PATH_SUB_CURRENT)/user32.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
161 $(call MSG_TOOL,VBoxDef2LazyLoad,VBoxStub,$(filter %.def, $^),$@)
162 $(QUIET)$(RM) -f -- "$@"
163 $(VBOX_DEF_2_LAZY_LOAD) --system --library USER32.DLL --output "$@" $(filter %.def, $^)
164
165# Dynamic import no. 5: SHELL32.DLL
166VBoxStub_SOURCES += $(VBoxStub_0_OUTDIR)/Shell32LazyLoad.asm
167VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/Shell32LazyLoad.asm
168$$(VBoxStub_0_OUTDIR)/Shell32LazyLoad.asm: $(PATH_SUB_CURRENT)/shell32.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@)
169 $(call MSG_TOOL,VBoxDef2LazyLoad,VBoxStub,$(filter %.def, $^),$@)
170 $(QUIET)$(RM) -f -- "$@"
171 $(VBOX_DEF_2_LAZY_LOAD) --system --library SHELL32.DLL --output "$@" $(filter %.def, $^)
172
173include $(FILE_KBUILD_SUB_FOOTER)
174
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette