1 | # $Id: Makefile.kmk 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Windows Guest Additions Installer Helper DLL.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2010-2024 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.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 |
|
---|
28 | SUB_DEPTH = ../../../../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 |
|
---|
31 | # Include Sub-Makefiles.
|
---|
32 | include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
|
---|
33 |
|
---|
34 | #
|
---|
35 | # NSIS plugins always have to be compiled in 32-bit!
|
---|
36 | #
|
---|
37 | # Note! Installation is required for repacking Guest Additions
|
---|
38 | #
|
---|
39 | DLLS += VBoxGuestInstallHelper
|
---|
40 | VBoxGuestInstallHelper_TEMPLATE := VBoxGuestR3Dll
|
---|
41 | VBoxGuestInstallHelper_BLD_TRG_ARCH := x86
|
---|
42 | VBoxGuestInstallHelper_INST := repackadd/resources/VBoxGuestInstallHelper/
|
---|
43 | ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.)
|
---|
44 | VBoxGuestInstallHelper_INSTTYPE := stage
|
---|
45 | VBoxGuestInstallHelper_DEBUG_INSTTYPE := both
|
---|
46 | endif
|
---|
47 | VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0400 WIN32_LEAN_AND_MEAN=1 UNICODE _UNICODE
|
---|
48 | VBoxGuestInstallHelper_SOURCES := \
|
---|
49 | VBoxGuestInstallHelper.cpp \
|
---|
50 | VBoxGuestInstallHelper.rc
|
---|
51 | VBoxGuestInstallHelper_VBOX_IMPORT_CHECKER.win.x86 := nt4
|
---|
52 |
|
---|
53 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|