VirtualBox

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

Last change on this file since 26224 was 26224, checked in by vboxsync, 15 years ago

s/IN_RT_GC/IN_RT_RC/g

  • 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 26224 2010-02-03 22:03:01Z vboxsync $
2## @file
3# Sub-Makefile for the VBox Disassembler.
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25# include the sub-makefile first.
26ifdef VBOX_WITH_TESTCASES
27 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
28endif
29
30
31LIBRARIES += DisasmR3
32DisasmR3_TEMPLATE = VBOXR3
33DisasmR3_DEFS = IN_DIS
34DisasmR3_SOURCES = \
35 Disasm.cpp \
36 DisasmCore.cpp \
37 DisasmReg.cpp \
38 DisasmTables.cpp \
39 DisasmTablesX64.cpp \
40 DisasmFormatBytes.cpp \
41 DisasmFormatYasm.cpp
42
43LIBRARIES += DisasmCoreR3
44DisasmCoreR3_TEMPLATE = VBOXR3
45DisasmCoreR3_DEFS = IN_DIS DIS_CORE_ONLY
46DisasmCoreR3_SOURCES = \
47 DisasmCore.cpp \
48 DisasmReg.cpp \
49 DisasmTables.cpp \
50 DisasmTablesX64.cpp
51
52ifdef VBOX_WITH_RAW_MODE
53 LIBRARIES += DisasmRC
54 DisasmRC_TEMPLATE = VBoxRc
55 DisasmRC_DEFS = IN_DIS IN_RT_RC DIS_CORE_ONLY
56 DisasmRC_SOURCES = \
57 DisasmCore.cpp \
58 DisasmReg.cpp \
59 DisasmTables.cpp \
60 DisasmTablesX64.cpp
61endif # VBOX_WITH_RAW_MODE
62
63LIBRARIES += DisasmR0
64DisasmR0_TEMPLATE = VBoxR0
65DisasmR0_DEFS = IN_DIS IN_RT_R0 DIS_CORE_ONLY
66DisasmR0_SOURCES = \
67 DisasmCore.cpp \
68 DisasmReg.cpp \
69 DisasmTables.cpp \
70 DisasmTablesX64.cpp
71
72
73ifdef VBOX_WITH_TESTCASES
74 # testcase that hasn't been moved yet.
75 PROGRAMS += tstDisasm
76 tstDisasm_TEMPLATE = VBOXR3TSTEXE
77 tstDisasm_DEFS = IN_DIS
78 tstDisasm_SOURCES = DisasmTest.cpp DisasmTestA.asm
79 tstDisasm_LIBS = \
80 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB) \
81 $(LIB_RUNTIME)
82
83 PROGRAMS += tstDisasmCore
84 tstDisasmCore_TEMPLATE = VBOXR3TSTEXE
85 tstDisasmCore_DEFS = IN_DIS DIS_CORE_ONLY
86 tstDisasmCore_SOURCES = DisasmTestCore.cpp
87 tstDisasmCore_LIBS = \
88 $(PATH_LIB)/DisasmCoreR3$(VBOX_SUFF_LIB) \
89 $(LIB_RUNTIME)
90endif # VBOX_WITH_TESTCASES
91
92include $(KBUILD_PATH)/subfooter.kmk
93
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