VirtualBox

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

Last change on this file since 43894 was 43894, checked in by vboxsync, 12 years ago

BUGZ:6508 Enable Stub installer silent cert installation only in case if binaries signing is enabled on build time.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1# $Id: Makefile.kmk 43894 2012-11-16 09:53:32Z vboxsync $
2## @file
3# Sub-Makefile for the stub installer.
4#
5
6#
7# Copyright (C) 2009-2012 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
18SUB_DEPTH = ../../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21# This has to be 32-bit, so don't include it in the 64-bit build.
22if "$(KBUILD_TARGET_ARCH)" == "x86"
23
24TEMPLATE_VBOXSTUB = Drop the signing, we will sign it later.
25TEMPLATE_VBOXSTUB_EXTENDS = VBOXR3STATIC
26TEMPLATE_VBOXSTUB_POST_CMDS = $(NO_SUCH_VARIABLE)
27
28PROGRAMS.x86 += VBoxStub
29VBoxStub_TEMPLATE= VBOXSTUB
30VBoxStub_DEFS = _WIN32_WINNT=0x0501 IN_RT_R3
31
32VBoxStub_SOURCES = \
33 VBoxStub.cpp \
34 VBoxStub.rc
35
36VBoxStub_SDKS += \
37 VBOX_NTDLL
38VBoxStub_LIBS = \
39 $(VBOX_LIB_RUNTIME_STATIC) \
40 $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Msi.lib
41
42VBoxStub.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
43VBoxStub.cpp_DEPS = $(VBOX_SVN_REV_KMK)
44
45# If signing mode is enabled, then add the possibility to
46# install public certificate automatically in /silent mode
47ifdef VBOX_SIGNING_MODE
48
49VBoxStub_SOURCES += VBoxStubCertUtil.cpp
50VBoxStub_LIBS += crypt32.lib
51VBoxStub.cpp_DEPS += $(VBoxStub_0_OUTDIR)/VBoxStubPublicCert.h
52VBoxStub.cpp_INCS += $(VBoxStub_0_OUTDIR)
53VBoxStub.cpp_DEFS += VBOX_SIGNING_MODE
54
55$$(VBoxStub_0_OUTDIR)/VBoxStubPublicCert.h: $(VBOX_BIN2C) $(PATH_ROOT)/src/VBox/Additions/WINNT/tools/oracle-vbox.cer
56 $(VBOX_BIN2C) _VBoxStubPublicCert $(PATH_ROOT)/src/VBox/Additions/WINNT/tools/oracle-vbox.cer $@
57
58endif
59
60# The icon location is configurable.
61VBoxStub.rc_INCS += $(VBoxStub_0_OUTDIR)
62VBoxStub.rc_DEPS += \
63 $(VBoxStub_0_OUTDIR)/VBoxStub-icon.rc \
64 $(VBoxStub_0_OUTDIR)/VBoxStub-manifest.rc
65VBoxStub.rc_CLEAN = \
66 $(VBoxStub_0_OUTDIR)/VBoxStub-icon.rc \
67 $(VBoxStub_0_OUTDIR)/VBoxStub-manifest.rc
68
69# Icon include file.
70$$(VBoxStub_0_OUTDIR)/VBoxStub-icon.rc: $(VBOX_WINDOWS_ICON_FILE) $(MAKEFILE_CURRENT) | $$(dir $$@)
71 $(APPEND) -t $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ICON_FILE))"'
72
73# Manifest.
74VBOX_STUB_MANIFEST_FILE := $(PATH_SUB_CURRENT)/VBoxStub.manifest
75$$(VBoxStub_0_OUTDIR)/VBoxStub-manifest.rc: $(VBOX_STUB_MANIFEST_FILE) $(MAKEFILE_CURRENT) | $$(dir $$@)
76 $(APPEND) -t $@ 'APP_MANIFEST RT_MANIFEST "$(subst /,\\,$(VBOX_STUB_MANIFEST_FILE))"'
77
78endif # x86 only
79
80include $(FILE_KBUILD_SUB_FOOTER)
Note: See TracBrowser for help on using the repository browser.

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