VirtualBox

source: vbox/trunk/src/VBox/Disassembler/Makefile.kmk@ 97364

Last change on this file since 97364 was 97211, checked in by vboxsync, 20 months ago

DIS: Drop the register access function based on CPUMCTXCORE as the structure is being removed and nobody uses these any more.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1# $Id: Makefile.kmk 97211 2022-10-18 14:43:03Z vboxsync $
2## @file
3# Sub-Makefile for the VBox Disassembler.
4#
5
6#
7# Copyright (C) 2006-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# SPDX-License-Identifier: GPL-3.0-only
26#
27
28SUB_DEPTH = ../../..
29include $(KBUILD_PATH)/subheader.kmk
30
31# include the sub-makefile first.
32if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_VALIDATIONKIT)
33 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
34endif
35
36
37LIBRARIES += DisasmR3
38DisasmR3_TEMPLATE = VBOXR3
39DisasmR3_DEFS = IN_DIS
40DisasmR3_SOURCES = \
41 Disasm.cpp \
42 DisasmCore.cpp \
43 DisasmTables.cpp \
44 DisasmTablesX64.cpp \
45 DisasmMisc.cpp \
46 DisasmFormatBytes.cpp \
47 DisasmFormatYasm.cpp
48
49LIBRARIES += DisasmR3Static
50DisasmR3Static_TEMPLATE = VBoxR3Static
51DisasmR3Static_EXTENDS = DisasmR3
52
53ifndef VBOX_ONLY_VALIDATIONKIT
54
55 LIBRARIES += DisasmBldProg
56 DisasmBldProg_TEMPLATE = VBoxAdvBldProg
57 DisasmBldProg_EXTENDS = DisasmR3
58
59 LIBRARIES += DisasmCoreR3
60 DisasmCoreR3_TEMPLATE = VBOXR3
61 DisasmCoreR3_DEFS = IN_DIS DIS_CORE_ONLY
62 DisasmCoreR3_SOURCES = \
63 DisasmCore.cpp \
64 DisasmTables.cpp \
65 DisasmTablesX64.cpp \
66 DisasmMisc.cpp
67
68 ifdef VBOX_WITH_RAW_MODE
69 LIBRARIES += DisasmRC
70 DisasmRC_TEMPLATE = VBoxRc
71 DisasmRC_DEFS = IN_DIS IN_RT_RC DIS_CORE_ONLY
72 DisasmRC_SOURCES = \
73 DisasmCore.cpp \
74 DisasmTables.cpp \
75 DisasmTablesX64.cpp \
76 DisasmMisc.cpp
77 endif # VBOX_WITH_RAW_MODE
78
79 LIBRARIES += DisasmR0
80 DisasmR0_TEMPLATE = VBoxR0
81 DisasmR0_DEFS = IN_DIS IN_RT_R0 DIS_CORE_ONLY
82 DisasmR0_SOURCES = \
83 DisasmCore.cpp \
84 DisasmTables.cpp \
85 DisasmTablesX64.cpp \
86 DisasmMisc.cpp
87
88endif # !VBOX_ONLY_VALIDATIONKIT
89
90include $(FILE_KBUILD_SUB_FOOTER)
91
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use