VirtualBox

source: vbox/trunk/src/VBox/Debugger/Makefile.kmk@ 63700

Last change on this file since 63700 was 62480, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1# $Id: Makefile.kmk 62480 2016-07-22 18:29:41Z vboxsync $
2## @file
3# Makefile for the VBox debugger.
4#
5
6#
7# Copyright (C) 2006-2016 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#
22# The targets.
23#
24ifdef VBOX_WITH_DEBUGGER
25 LIBRARIES += Debugger
26 ifdef VBOX_WITH_TESTCASES
27 PROGRAMS += tstDBGCParser
28 endif
29endif # VBOX_WITH_DEBUGGER
30
31
32#
33# Debugger library - linked into VBoxVMM.
34#
35Debugger_TEMPLATE = VBOXR3
36Debugger_DEFS = IN_VMM_R3 IN_DBG_R3 IN_DIS
37ifneq ($(KBUILD_TYPE),release)
38 Debugger_DEFS += VBOX_WITH_DEBUGGER_TCP_BY_DEFAULT
39endif
40Debugger_SOURCES = \
41 DBGConsole.cpp \
42 DBGCEval.cpp \
43 DBGCBuiltInSymbols.cpp \
44 DBGCCmdHlp.cpp \
45 DBGCCmdWorkers.cpp \
46 DBGCCommands.cpp \
47 DBGCFunctions.cpp \
48 DBGCEmulateCodeView.cpp \
49 DBGCOps.cpp \
50 DBGCGdbRemoteStub.cpp \
51 DBGCTcp.cpp
52
53#
54# The diggers plug-in.
55#
56DLLS += DbgPlugInDiggers
57DbgPlugInDiggers_TEMPLATE = VBOXR3
58DbgPlugInDiggers_DEFS = IN_DIS
59DbgPlugInDiggers_SOURCES = \
60 DBGPlugInDiggers.cpp \
61 DBGPlugInDarwin.cpp \
62 DBGPlugInLinux.cpp \
63 DBGPlugInSolaris.cpp \
64 DBGPlugInWinNt.cpp \
65 DBGPlugInOS2.cpp \
66 DBGPlugInCommonELF.cpp
67DbgPlugInDiggers_LIBS = \
68 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB) \
69 $(if-expr "$(LIB_VMM)" == "$(VBOX_LIB_VMM_LAZY)",$(LIB_REM),) \
70 $(VBOX_LIB_VMM_LAZY) \
71 $(LIB_RUNTIME)
72$(call VBOX_SET_VER_INFO_DLL,DbgPlugInDiggers,VirtualBox Debugger Guest OS Digger Plug-in)
73
74
75#
76# The DBGC parser testcase.
77# This stubs all the VBoxVMM APIs.
78#
79tstDBGCParser_TEMPLATE = VBOXR3TSTEXE
80tstDBGCParser_DEFS = IN_VMM_R3
81tstDBGCParser_CXXFLAGS = $(VBOX_C_CXX_FLAGS_NO_UNUSED_PARAMETERS)
82tstDBGCParser_SOURCES = \
83 testcase/tstDBGCParser.cpp \
84 testcase/tstDBGCStubs.cpp
85tstDBGCParser_LIBS = \
86 $(Debugger_1_TARGET) \
87 $(LIB_RUNTIME)
88
89
90if defined(VBOX_WITH_QTGUI) && defined(VBOX_WITH_DEBUGGER_GUI)
91#
92# Debugger GUI component (Qt4).
93#
94ifndef VBOX_WITH_QTGUI_V5
95 USES += qt4
96else # VBOX_WITH_QTGUI_V5
97 USES += qt5
98endif # VBOX_WITH_QTGUI_V5
99DLLS += VBoxDbg
100VBoxDbg_TEMPLATE = VBOXQTGUI
101VBoxDbg_DEFS = IN_DBG_R3 VBOXDBG_USE_QT4
102VBoxDbg_INCS = .
103VBoxDbg_QT_MODULES = Core Gui
104ifdef VBOX_WITH_QTGUI_V5
105 # Qt5 requires additional modules:
106 VBoxDbg_QT_MODULES += Widgets
107endif # VBOX_WITH_QTGUI_V5
108VBoxDbg_QT_MOCHDRS = \
109 VBoxDbgGui.h \
110 VBoxDbgConsole.h \
111 VBoxDbgStatsQt4.h
112VBoxDbg_SOURCES = \
113 VBoxDbg.cpp \
114 VBoxDbgGui.cpp \
115 VBoxDbgBase.cpp \
116 VBoxDbgConsole.cpp \
117 VBoxDbgStatsQt4.cpp
118VBoxDbg_LIBS = \
119 $(VBOX_LIB_VMM_LAZY)
120VBoxDbg_LDFLAGS.darwin = \
121 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxDbg.dylib
122$(call VBOX_SET_VER_INFO_DLL,VBoxDbg,VirtualBox Debugger GUI)
123
124 ifdef VBOX_WITH_TESTCASES
125#
126# The VBoxDbg testcase (Qt4).
127#
128PROGRAMS += tstVBoxDbg
129tstVBoxDbg_TEMPLATE = VBOXQTGUIEXE
130ifndef VBOX_WITH_QTGUI_V5
131 tstVBoxDbg_USES = qt4
132 tstVBoxDbg_QTTOOL = QT4
133else # VBOX_WITH_QTGUI_V5
134 tstVBoxDbg_USES = qt5
135 tstVBoxDbg_QTTOOL = QT5
136endif # VBOX_WITH_QTGUI_V5
137tstVBoxDbg_QT_MODULES = Core Gui
138ifdef VBOX_WITH_QTGUI_V5
139 # Qt5 requires additional modules:
140 tstVBoxDbg_QT_MODULES += Widgets
141 tstVBoxDbg_LIBS.linux += xcb
142 tstVBoxDbg_LIBS.solaris += xcb
143 tstVBoxDbg_LIBS.freebsd += xcb
144endif # VBOX_WITH_QTGUI_V5
145tstVBoxDbg_SOURCES = testcase/tstVBoxDbg.cpp
146tstVBoxDbg_LIBS = \
147 $(LIB_VMM) \
148 $(LIB_REM) \
149 $(LIB_RUNTIME)
150 ifeq ($(KBUILD_TARGET),win)
151tstVBoxDbg_LIBS += \
152 $(PATH_STAGE_LIB)/VBoxDbg.lib
153 else
154tstVBoxDbg_LIBS += \
155 $(PATH_STAGE_BIN)/VBoxDbg$(VBOX_SUFF_DLL)
156 endif
157 endif # TESTCASES
158endif # Qt4
159
160
161include $(FILE_KBUILD_SUB_FOOTER)
162
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