VirtualBox

source: vbox/trunk/src/VBox/VMM/tools/Makefile.kmk@ 74795

Last change on this file since 74795 was 69654, checked in by vboxsync, 7 years ago

VBoxCpuReporter: cleanups

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1
2# $Id: Makefile.kmk 69654 2017-11-10 19:22:45Z vboxsync $
3## @file
4# Sub-Makefile for VMM tools.
5#
6
7#
8# Copyright (C) 2006-2017 Oracle Corporation
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18
19SUB_DEPTH = ../../../..
20include $(KBUILD_PATH)/subheader.kmk
21
22
23#
24# Targets.
25#
26ifdef VBOX_WITH_HARDENING
27 PROGRAMS += VBoxVMMPreloadHardened
28 DLLS += VBoxVMMPreload
29else
30 PROGRAMS += VBoxVMMPreload
31endif
32
33
34#
35# Hardened stub.
36#
37VBoxVMMPreloadHardened_TEMPLATE = VBOXR3HARDENEDEXE
38VBoxVMMPreloadHardened_SOURCES = VBoxVMMPreloadHardened.cpp
39VBoxVMMPreloadHardened_NAME = VBoxVMMPreload
40
41
42#
43# The real thing
44#
45VBoxVMMPreload_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBoxR3Dll,VBOXR3EXE)
46VBoxVMMPreload_SOURCES = VBoxVMMPreload.cpp
47VBoxVMMPreload_LIBS = $(LIB_RUNTIME)
48ifdef VBOX_WITH_HARDENING
49 VBoxVMMPreload_LDFLAGS.darwin += -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxVMMPreload.dylib
50endif
51
52
53#
54# CPU report program (CPUM DB).
55#
56PROGRAMS += VBoxCpuReport
57VBoxCpuReport_TEMPLATE := VBoxR3Static
58VBoxCpuReport_DEFS = IN_VMM_R3 IN_VBOX_CPU_REPORT
59VBoxCpuReport_INCS = ../include
60VBoxCpuReport_SOURCES = \
61 VBoxCpuReport.cpp \
62 VBoxCpuReportMsrSup.cpp \
63 ../VMMR3/CPUMR3CpuId.cpp
64VBoxCpuReport_SOURCES.linux = \
65 VBoxCpuReportMsrLinux.cpp
66VBoxCpuReport_DEFS.linux = VBCR_HAVE_PLATFORM_MSR_PROBER
67VBoxCpuReport_LIBS = \
68 $(PATH_STAGE_LIB)/SUPR3Static$(VBOX_SUFF_LIB) \
69 $(VBOX_LIB_RUNTIME_STATIC)
70VBoxCpuReport_LIBS.solaris = kstat contract
71
72VBoxCpuReport_LDFLAGS.darwin = \
73 -framework IOKit -framework CoreFoundation -framework CoreServices
74
75
76include $(FILE_KBUILD_SUB_FOOTER)
77
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use