VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/utils/misc/Makefile.kmk@ 97613

Last change on this file since 97613 was 96583, checked in by vboxsync, 2 years ago

ValKit/LoadGenerator: Only build the amd64 version with the IPI type load, we haven't offically had a VBoxDrv kernel module/driver for non-amd64 for a while. The x86 windows version dragged in RtlGetLastWin32Error via SUP.lib, causing unnecessary trouble with older windows versions. bugref:10261

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1# $Id: Makefile.kmk 96583 2022-09-02 20:35:17Z vboxsync $
2## @file
3# VirtualBox Validation Kit - Miscellaneous Utilites.
4#
5
6#
7# Copyright (C) 2010-2022 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# The contents of this file may alternatively be used under the terms
26# of the Common Development and Distribution License Version 1.0
27# (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28# in the VirtualBox distribution, in which case the provisions of the
29# CDDL are applicable instead of those of the GPL.
30#
31# You may elect to license modified versions of this file under the
32# terms and conditions of either the GPL or the CDDL or both.
33#
34# SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35#
36
37SUB_DEPTH = ../../../../..
38include $(KBUILD_PATH)/subheader.kmk
39
40#
41# Load generator, optionally with an ring-0 IPI generator.
42#
43PROGRAMS += LoadGenerator
44if1of ($(KBUILD_TARGET_ARCH),amd64)
45 ifdef VBOX_WITH_R0_MODULES
46 ifdef VBOX_WITH_VBOXR0_AS_DLL
47DLLS += loadgeneratorR0
48 else
49SYSMODS += loadgeneratorR0
50 endif
51loadgeneratorR0_TEMPLATE := VBoxValidationKitR0
52loadgeneratorR0_SOURCES := loadgeneratorR0.cpp
53 endif
54LoadGenerator_TEMPLATE := VBoxValidationKitR3SupDrv
55LoadGenerator_DEFS := WITH_IPI_LOAD_GEN
56else
57LoadGenerator_TEMPLATE := VBoxValidationKitR3
58endif
59LoadGenerator_SOURCES := loadgenerator.cpp
60
61#
62# vts_rm - Test cleanup utility similar to unix rm.
63#
64PROGRAMS += vts_rm
65vts_rm_TEMPLATE = VBoxValidationKitR3
66vts_rm_SOURCES = vts_rm.cpp
67
68#
69# vts_tar - Tar for untarring and tarring test related stuff.
70#
71PROGRAMS += vts_tar
72vts_tar_TEMPLATE = VBoxValidationKitR3
73vts_tar_SDKS = VBOX_ZLIB_STATIC
74vts_tar_SOURCES = vts_tar.cpp
75
76#
77# vts_shutdown - initiates a guest or host shut down / reboot.
78#
79PROGRAMS += vts_shutdown
80vts_shutdown_TEMPLATE = VBoxValidationKitR3
81vts_shutdown_SOURCES = ../../../Runtime/tools/RTShutdown.cpp
82
83include $(FILE_KBUILD_SUB_FOOTER)
84
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