1 | # $Id: Makefile.kmk 76553 2019-01-01 01:45:53Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the VBox Disassembler.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2019 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 |
|
---|
18 | SUB_DEPTH = ../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | # include the sub-makefile first.
|
---|
22 | if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_VALIDATIONKIT)
|
---|
23 | include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
|
---|
24 | endif
|
---|
25 |
|
---|
26 |
|
---|
27 | LIBRARIES += DisasmR3
|
---|
28 | DisasmR3_TEMPLATE = VBOXR3
|
---|
29 | DisasmR3_DEFS = IN_DIS
|
---|
30 | DisasmR3_SOURCES = \
|
---|
31 | Disasm.cpp \
|
---|
32 | DisasmCore.cpp \
|
---|
33 | DisasmReg.cpp \
|
---|
34 | DisasmTables.cpp \
|
---|
35 | DisasmTablesX64.cpp \
|
---|
36 | DisasmFormatBytes.cpp \
|
---|
37 | DisasmFormatYasm.cpp
|
---|
38 |
|
---|
39 | LIBRARIES += DisasmR3Static
|
---|
40 | DisasmR3Static_TEMPLATE = VBoxR3Static
|
---|
41 | DisasmR3Static_EXTENDS = DisasmR3
|
---|
42 |
|
---|
43 | ifndef VBOX_ONLY_VALIDATIONKIT
|
---|
44 |
|
---|
45 | LIBRARIES += DisasmBldProg
|
---|
46 | DisasmBldProg_TEMPLATE = VBoxAdvBldProg
|
---|
47 | DisasmBldProg_EXTENDS = DisasmR3
|
---|
48 |
|
---|
49 | LIBRARIES += DisasmCoreR3
|
---|
50 | DisasmCoreR3_TEMPLATE = VBOXR3
|
---|
51 | DisasmCoreR3_DEFS = IN_DIS DIS_CORE_ONLY
|
---|
52 | DisasmCoreR3_SOURCES = \
|
---|
53 | DisasmCore.cpp \
|
---|
54 | DisasmReg.cpp \
|
---|
55 | DisasmTables.cpp \
|
---|
56 | DisasmTablesX64.cpp
|
---|
57 |
|
---|
58 | ifdef VBOX_WITH_RAW_MODE
|
---|
59 | LIBRARIES += DisasmRC
|
---|
60 | DisasmRC_TEMPLATE = VBoxRc
|
---|
61 | DisasmRC_DEFS = IN_DIS IN_RT_RC DIS_CORE_ONLY
|
---|
62 | DisasmRC_SOURCES = \
|
---|
63 | DisasmCore.cpp \
|
---|
64 | DisasmReg.cpp \
|
---|
65 | DisasmTables.cpp \
|
---|
66 | DisasmTablesX64.cpp
|
---|
67 | endif # VBOX_WITH_RAW_MODE
|
---|
68 |
|
---|
69 | LIBRARIES += DisasmR0
|
---|
70 | DisasmR0_TEMPLATE = VBoxR0
|
---|
71 | DisasmR0_DEFS = IN_DIS IN_RT_R0 DIS_CORE_ONLY
|
---|
72 | DisasmR0_SOURCES = \
|
---|
73 | DisasmCore.cpp \
|
---|
74 | DisasmReg.cpp \
|
---|
75 | DisasmTables.cpp \
|
---|
76 | DisasmTablesX64.cpp
|
---|
77 |
|
---|
78 | endif # !VBOX_ONLY_VALIDATIONKIT
|
---|
79 |
|
---|
80 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
81 |
|
---|