VirtualBox

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

Last change on this file since 53422 was 53422, checked in by vboxsync, 10 years ago

New disassembler library type: DisasmR3Static.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1# $Id: Makefile.kmk 53422 2014-12-02 09:24:05Z vboxsync $
2## @file
3# Sub-Makefile for the VBox Disassembler.
4#
5
6#
7# Copyright (C) 2006-2012 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
18SUB_DEPTH = ../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21# include the sub-makefile first.
22ifdef VBOX_WITH_TESTCASES
23 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
24endif
25
26
27LIBRARIES += DisasmR3
28DisasmR3_TEMPLATE = VBOXR3
29DisasmR3_DEFS = IN_DIS
30DisasmR3_SOURCES = \
31 Disasm.cpp \
32 DisasmCore.cpp \
33 DisasmReg.cpp \
34 DisasmTables.cpp \
35 DisasmTablesX64.cpp \
36 DisasmFormatBytes.cpp \
37 DisasmFormatYasm.cpp
38
39LIBRARIES += DisasmR3Static
40DisasmR3Static_TEMPLATE = VBoxR3Static
41DisasmR3Static_EXTENDS = DisasmR3
42
43LIBRARIES += DisasmBldProg
44DisasmBldProg_TEMPLATE = VBoxBldProg
45DisasmBldProg_EXTENDS = DisasmR3
46
47LIBRARIES += DisasmCoreR3
48DisasmCoreR3_TEMPLATE = VBOXR3
49DisasmCoreR3_DEFS = IN_DIS DIS_CORE_ONLY
50DisasmCoreR3_SOURCES = \
51 DisasmCore.cpp \
52 DisasmReg.cpp \
53 DisasmTables.cpp \
54 DisasmTablesX64.cpp
55
56ifdef VBOX_WITH_RAW_MODE
57 LIBRARIES += DisasmRC
58 DisasmRC_TEMPLATE = VBoxRc
59 DisasmRC_DEFS = IN_DIS IN_RT_RC DIS_CORE_ONLY
60 DisasmRC_SOURCES = \
61 DisasmCore.cpp \
62 DisasmReg.cpp \
63 DisasmTables.cpp \
64 DisasmTablesX64.cpp
65endif # VBOX_WITH_RAW_MODE
66
67LIBRARIES += DisasmR0
68DisasmR0_TEMPLATE = VBoxR0
69DisasmR0_DEFS = IN_DIS IN_RT_R0 DIS_CORE_ONLY
70DisasmR0_SOURCES = \
71 DisasmCore.cpp \
72 DisasmReg.cpp \
73 DisasmTables.cpp \
74 DisasmTablesX64.cpp
75
76include $(FILE_KBUILD_SUB_FOOTER)
77
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